Unplanned
Last Updated: 26 Jun 2024 07:38 by Emily
Created by: Emily
Comments: 0
Category: Chart
Type: Feature Request
0
Provide a way to invert the axis range in a similar way as in WPF ChartView: https://docs.telerik.com/devtools/wpf/controls/radchartview/axes/inversed-axis
Unplanned
Last Updated: 15 May 2024 08:23 by Jude
I would like to enumerate the legend into a table with 2 columns as in WPF Legend: https://docs.telerik.com/devtools/wpf/controls/radlegend/itemspanel
Unplanned
Last Updated: 16 Apr 2024 07:54 by Erik Damgaard
Created by: Erik Damgaard
Comments: 0
Category: Chart
Type: Feature Request
1
In Telerik WPF Chart there is an option to select a data point from a series https://docs.telerik.com/devtools/wpf/controls/radchartview/features/behaviors/selection#programmatic-selection Provide such option for the Telerik MAUI Chart.
Unplanned
Last Updated: 14 Mar 2024 09:20 by Rodrigo

Provide a way to invoke the tooltip for a concrete data point programmatically

Unplanned
Last Updated: 17 Jan 2024 08:45 by Vivek
Created by: Vivek
Comments: 0
Category: Chart
Type: Feature Request
0

The data points should allow setting shape and color to each one individually.

Unplanned
Last Updated: 15 Nov 2023 13:35 by Dustin
LineSeries Stroke and StrokeThickness are not applied when Palette is set

Unplanned
Last Updated: 07 Nov 2023 07:57 by Pavani
Created by: Pavani
Comments: 0
Category: Chart
Type: Feature Request
0
Provide the option to display text on arbitrary position - on the axis, on the data point, etc. similar to the Kendo Web chart "Notes" option.
Unplanned
Last Updated: 23 Oct 2023 10:17 by Pavani
Created by: Pavani
Comments: 0
Category: Chart
Type: Feature Request
0
Let's say having more legend data that cannot fit on the screen, provide an option to scroll through the legend items. 

or if the legend is auto wrap when overflow.
Unplanned
Last Updated: 11 Oct 2023 12:03 by Tinus
It will be also useful to create image file from chart.
Unplanned
Last Updated: 09 Aug 2023 14:36 by Steve
Created by: Steve
Comments: 0
Category: Chart
Type: Feature Request
1

The VisibleRange property can hold the actual visible minimum and maximum of the axis while the chart is being zoomed and panned.

Let's say I set the number of labels to 4 on that axis (see attached pic).  It would then be up to the axis to auto generate the labels depending on the data and zoom.  There would always be four labels shown on the axis regardless of zoom so the user could always have context regardless of the zoom.  The labels would just change to reflect what is currently being viewed at the current zoom level.

 

Unplanned
Last Updated: 03 Aug 2023 15:54 by VuSitu
Created by: VuSitu
Comments: 1
Category: Chart
Type: Feature Request
1
Could have some property on a tooltip like "isEnabled" that I could change to allow the tapping behavior to take effect. Or another property of TriggerMode that is "None"
Unplanned
Last Updated: 31 Jul 2023 06:13 by Alex
Created by: Alex
Comments: 0
Category: Chart
Type: Feature Request
1
Add option to display minor ticks per axis.
Minor ticks are available for Telerik WPF chart: https://docs.telerik.com/devtools/wpf/controls/radchartview/features/minor-ticks-and-stripes 
Unplanned
Last Updated: 19 Jul 2023 18:45 by Clint
Created by: Clint
Comments: 0
Category: Chart
Type: Feature Request
0
Allow the RadLegend to dynamically show/hide the chart series through checkboxes in the legend items.
Unplanned
Last Updated: 19 Apr 2023 11:48 by Anne
Created by: Anne
Comments: 0
Category: Chart
Type: Feature Request
1
I want to set textcolor to the text inside the trackball and apply background color to it. 
Unplanned
Last Updated: 02 Mar 2023 15:10 by Daniel
Add support for reordering the series in the PieChart.
Unplanned
Last Updated: 02 Mar 2023 15:06 by Daniel
PieChart should provide customization properties for its Series Labels like FontSize, FontAttributes, property for LabelPosition, FontFamily, TextColor, etc.
Unplanned
Last Updated: 02 Mar 2023 15:02 by Daniel
Created by: Daniel
Comments: 0
Category: Chart
Type: Feature Request
2
Add support for selecting a slice of the PieChart from the code - behind.
Unplanned
Last Updated: 20 Jan 2023 16:05 by John
Created by: John
Comments: 0
Category: Chart
Type: Feature Request
1

Hi team,

Currently, I can only set LegendItemFontColor and LegendItemFontSize. I would like to be able to set LegendItemFontFamily

Thank you,

John

Unplanned
Last Updated: 20 Jan 2023 16:00 by John
Created by: John
Comments: 0
Category: Chart
Type: Feature Request
1

Hi Team,

I would like to be able to set different cap styles on the bars, like the RadGauge allows you to do on Indicators. For example, I want rounded corners.

Thank you,

John

Unplanned
Last Updated: 02 Jan 2023 09:44 by Sebastian

On some chart series like, bar, line, scatter line, etc, the y axis line is hidden. make it visible, as it is on Android and Windows. 

Current solution is to use the chart handler changed and set YAxis.Style.LineHidden to false.

public partial class MainPage : ContentPage
{
    public MainPage()
    {
        InitializeComponent();

        this.chart.HandlerChanged += this.Chart_HandlerChanged;
    }

    private void Chart_HandlerChanged(object sender, EventArgs e)
    {
        this.UpdateChart();
    }

    private void UpdateChart()
    {
        var platformView = this.chart.Handler.PlatformView;
#if IOS || MACCATALYST
        var platformChart = (Telerik.Maui.Controls.Compatibility.ChartRenderer.iOS.TKExtendedChart)platformView;
platformChart.YAxis.Style.LineHidden = false;
#endif
    }
}

1 2