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. 
Completed
Last Updated: 18 Aug 2023 09:43 by ADMIN
Release 6.1.0
I would like the legend to be in the upper right of the chart. Tried the "HorizontalOptions="End", but that didn't change the position. I also tried HorizontalOptions="Center" and that didn't move the legend either.
Unplanned
Last Updated: 02 Aug 2023 12:29 by ADMIN

Hi Team,

Only on iOS, an app will crash if the CartesianGridLineAnnotation's Value is not set. On Windows and Android, this does not occur.

Example:

<telerik:RadCartesianChart x:Name="chart">
    <telerik:RadCartesianChart.Annotations>
        <!-- PROBLEM: Crashes on iOS due to not have a default value-->
        <telerik:CartesianGridLineAnnotation x:Name="marker" Axis="{x:Reference xAxis}"/>
        
        <!-- WORKAROUND: Set a default Value -->
        <telerik:CartesianGridLineAnnotation x:Name="marker" Axis="{x:Reference xAxis}" Value="0"/>
    </telerik:RadCartesianChart.Annotations>
</telerik:RadCartesianChart>

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: 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: 19 Nov 2023 15:06 by ADMIN
If you access the native chart control and made some customization on handler changed, the customizations are reset when series are updated. 
Unplanned
Last Updated: 23 Oct 2024 21:01 by ADMIN
If the Chart control is nested inside a ScrollView, it is not sized properly on Android - it seems it occupies the available space, but the chart itself ( the axes and the series) are shrunk in size.
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: 11 Oct 2024 20:36 by Todor
In WPF ChartView there is a TickOrigin property, provide such in MAUI Chart control.
Completed
Last Updated: 13 Jul 2022 10:34 by ADMIN
Release Release 2.1.0

Legend is not fully visualized, the square color is missing, only the text is displayed.
on iOS it seems the issue happens only on simulator, on iPhone device SE 2022 the legend is  fully displayed

Completed
Last Updated: 13 Jul 2022 10:35 by ADMIN
Release Release 2.1.0

Series labels are not properly rotated with LabelFitMode set to "Rotate".

On iOS it seems the issue happens only on simulator, on iPhone device the labels are aligned (rotated) as expected.

Completed
Last Updated: 13 Jul 2022 10:35 by ADMIN
Release Release 2.1.0
Trackball and Tooltip throw 

Android.Views.WindowManagerBadTokenException: 'Unable to add window -- token null is not valid; is your activity running?'

Exception
Completed
Last Updated: 13 Jul 2022 10:37 by ADMIN
Release Release 2.1.0
On iOS, when using the TrackBall behavior, if the graph is zoomed at all when trying to move side to side it scrolls the graph rather than moving the line/info box.
Completed
Last Updated: 15 Mar 2023 11:31 by ADMIN
Release 5.1.0

When adding a plot band annotation to the date time axis, it is not applied on MacCatalyst and iOS. In addition if using binding, an exception is thrown.  

System.ArgumentNullException: Value cannot be null.
Parameter name: minimum
  at TelerikUI.TKRange..ctor (Foundation.NSObject minimum, Foundation.NSObject maximum) 

 

It works on Android and WinUI

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

Completed
Last Updated: 15 Mar 2023 11:30 by ADMIN
Release 5.1.0

An exception is thrown when setting the ChartPallete FillColor property. The issue is reproduced on all platforms.

Workaround:

Also set the StrokeColor property.

<telerik:ChartPalette>
    <telerik:ChartPalette.Entries>
        <telerik:PaletteEntry FillColor="Red" StrokeColor ="Yellow"/>
        <telerik:PaletteEntry FillColor="Gray" StrokeColor ="Yellow" />
        <telerik:PaletteEntry FillColor="Blue" StrokeColor ="Yellow"/>
    </telerik:ChartPalette.Entries>
</telerik:ChartPalette>

 

Completed
Last Updated: 15 Mar 2023 11:30 by ADMIN
Release 5.1.0
When using DateTimeAxis and the chart data points use milliseconds, the axis does not display the milliseconds correctly. 
Unplanned
Last Updated: 30 Jun 2023 07:46 by Steve

when using the flowing setup: 

<telerik:RadCartesianChart.ChartBehaviors>
                    <telerik:ChartSelectionBehavior x:Name="selection"
                                                    SeriesSelectionMode="None"
                                                    DataPointSelectionMode="Single"
                                                SelectionChanged="selection_SelectionChanged"/>
</telerik:RadCartesianChart.ChartBehaviors>

the selection behavior on data point does not fire on WInUI on Cartesian series. It works for PieSeries. 

Unplanned
Last Updated: 30 Jun 2023 09:54 by Steve
When setting the Stroke of the ScatterLineSeries to something other than the default, the RadLegend icon color does does not sync to match.