Unplanned
Last Updated: 13 Jul 2023 11:48 by ADMIN
Created by: Marion
Comments: 1
Category: Chart
Type: Bug Report
0

Hi Team,

If you create a ScatterPointSeries, the RadLegend does not pick up the series DisplayName value. A replication project is attached, but here's a screenshot to quickly illustrate the behavior:

Thank you,

Marion

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.
 
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: 14 Feb 2024 06:09 by ADMIN

Labels in bar series are cut, when setting the labels VerticalAligment to Top:

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

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

Unplanned
Last Updated: 01 Sep 2023 10:11 by Steve

Improve performance when adding many series and data points are constantly added and increased
For example chart slows the performance when 4th series with many data points are added. 

For the test, I have used ScatterLine series.

1 2 3