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: 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: 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
    }
}

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: 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: 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: 15 Nov 2023 13:35 by Dustin
LineSeries Stroke and StrokeThickness are not applied when Palette is set

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 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: 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
1 2