Unplanned
Last Updated: 06 Sep 2021 08:37 by ADMIN
Fill color is not working in AreaSeries when negative values are given on iOS 12.
Unplanned
Last Updated: 02 Jul 2021 08:26 by ADMIN
The Chart loses all the UI customizations made in the iOS platform renderer when the Series are updated, for example, if you show/hide certain Series or updated their ItemsSource.
Unplanned
Last Updated: 14 Jun 2021 04:48 by ADMIN

Annotation (Grid line ) for the DateTimeContinuousAxis is not visualized on iOS. It works as expected on Android.

Add grid line annotation for the datetime axes. the grid lines are not visualized on iOS. 

<telerikChart:RadCartesianChart x:Name="chart">
    <telerikChart:RadCartesianChart.BindingContext>
        <local:ViewModel />
    </telerikChart:RadCartesianChart.BindingContext>
    <telerikChart:RadCartesianChart.HorizontalAxis>
        <telerikChart:DateTimeContinuousAxis LabelFitMode="Rotate" 
                                                x:Name="horizontal"/>
    </telerikChart:RadCartesianChart.HorizontalAxis>
    <telerikChart:RadCartesianChart.VerticalAxis>
        <telerikChart:NumericalAxis />
    </telerikChart:RadCartesianChart.VerticalAxis>
    <telerikChart:RadCartesianChart.Series>            
        <telerikChart:SplineSeries ValueBinding="Value"
                                    CategoryBinding="Date"
                                    ItemsSource="{Binding Data}"
                                    ShowLabels="True"
                                    />
    </telerikChart:RadCartesianChart.Series>
    <telerikChart:RadCartesianChart.Annotations>
        <telerikChart:CartesianGridLineAnnotation Stroke="#0E72F6" 
                                                StrokeThickness="2"
                                                Value="{Binding Threshold}"
                                                Axis="{x:Reference horizontal}">
            <telerikChart:CartesianGridLineAnnotation.DashArray>
                <x:Array Type="{x:Type x:Double}">
                    <x:Double>4.0</x:Double>
                    <x:Double>2.0</x:Double>
                </x:Array>
            </telerikChart:CartesianGridLineAnnotation.DashArray>
        </telerikChart:CartesianGridLineAnnotation>
    </telerikChart:RadCartesianChart.Annotations>
</telerikChart:RadCartesianChart>  


Workaround: 
Use CategoricalAxis.

Unplanned
Last Updated: 04 Jun 2021 14:34 by ADMIN
Currently on iOS the PanOffset is reset when the underlying data is updated, while the same behavior is not observed on Android.
Unplanned
Last Updated: 06 May 2021 12:57 by ADMIN
When the tooltip is displayed at a certain data point and the data is updated from code-behind, the tooltip stays with wrong data. The expected behavior is the tooltip to be hidden in such case.
Unplanned
Last Updated: 07 Apr 2021 06:37 by Stefan
Applying ChartTrackBallBehavior to a CartesianChart with ScatterLine/ScatterPoint series does not take any effect.
Unplanned
Last Updated: 03 Mar 2021 09:27 by ADMIN
Support the ability to apply palette (separate color) per point for a line series.
Completed
Last Updated: 24 Feb 2021 13:38 by ADMIN
Release R1 2021 SP1
When you set RadLegend`s VerticalOptions or HorizontalOptions to Center - the control disappears. This can be easily observed when the Orientation of the legend is horizontal, but can be reproduced in vertical mode too by setting the HorizontalOptions to Center.
Completed
Last Updated: 24 Feb 2021 13:04 by ADMIN
Release R1 2021 SP1
Completed
Last Updated: 24 Feb 2021 13:03 by ADMIN
Release R1 2021 SP1

An exception is thrown on Android when this code is executed


            this.chart1.VerticalAxis = new NumericalAxis { Minimum = 300, Maximum = 400 };
            this.chart1.VerticalAxis = new NumericalAxis { Minimum = 100, Maximum = 200 };

Unplanned
Last Updated: 19 Feb 2021 18:04 by RAMAKANT
Created by: RAMAKANT
Comments: 6
Category: Chart
Type: Bug Report
1

Hi Team,

If you set the PanOffset in XAML, it is not applied. 

Does not work:

<telerikChart:RadCartesianChart x:Name="MyChart"  Zoom="2, 1"  PanOffset="-400,0" >

I would expect that the RadChartView renderer would be responsible for handling this after the control is loaded and the series/axis is rendered (see workaround).

Workaround

If I subscribe to the ChartView's NativeControlLoaded event and wait approx 100ms before calling PanOffset, it will work.

e.g.

<telerikChart:RadCartesianChart x:Name="MyChart"  Zoom="2, 1" 
                                                     NativeControlLoaded="MyChart_OnNativeControlLoaded">

private async void MyChart_OnNativeControlLoaded(object sender, EventArgs e)
{
    await Task.Delay(100);
    
    MyChart.PanOffset = new Point(-400, 0);
}

Takeaway and Action Requested

The takeaway, and basis of this Bug Report, is that the control should internally perform this delay check and set the PanOffset.

This will enable MVVM scenarios because (I originally wanted to bind the PanOffset value from my view model).

Thank you,

Ramakant

Unplanned
Last Updated: 17 Feb 2021 11:27 by ADMIN
ADMIN
Created by: Nikolay
Comments: 14
Category: Chart
Type: Feature Request
12
A common scenario for the Chart is to have several Y-Axis, where some could be on the left, others could be on the right side of the Chart.
Unplanned
Last Updated: 17 Feb 2021 10:24 by ADMIN
Created by: Milos
Comments: 0
Category: Chart
Type: Feature Request
0
Provide an option to drag and drop chart annotations.
Unplanned
Last Updated: 17 Feb 2021 10:16 by ADMIN
Created by: Milos
Comments: 0
Category: Chart
Type: Feature Request
0
Provide an option to move (drag and drop) data points in chart control. 
Unplanned
Last Updated: 27 Jan 2021 16:18 by ADMIN
ADMIN
Created by: Stefan Nenchev
Comments: 4
Category: Chart
Type: Feature Request
4
Currently RadChart provides only a ScatterPointSeries which does not support categorical axes and you can only use a numerical one. 
Duplicated
Last Updated: 21 Jan 2021 12:54 by ADMIN
ADMIN
Created by: Stefan Nenchev
Comments: 0
Category: Chart
Type: Feature Request
0

			
Completed
Last Updated: 20 Jan 2021 11:16 by ADMIN
Release R1 2021
When RadChart is placed inside a ScrollViewer and there is tooltip displayed, scrolling the content with a slide gesture does not hide the tooltip.
Unplanned
Last Updated: 13 Jan 2021 15:12 by ADMIN
In the case of stacked column chart (Chart with BarSeries with Stack CombineMode), and if the data contains negative values, series labels are displayed at the correct position.
Completed
Last Updated: 07 Dec 2020 16:09 by ADMIN
Release 2020.3.1207 (R3 2020 minor release)
Completed
Last Updated: 07 Dec 2020 16:03 by ADMIN
Release 2020.3.1207 (R3 2020 minor release)
When you update the data in the chart so that the vertical axis values are changed - the annotation does not properly update and stays at the same location.