Completed
Last Updated: 07 Dec 2020 16:09 by ADMIN
Release 2020.3.1207 (R3 2020 minor release)
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: 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: 26 Feb 2018 10:49 by ADMIN
ADMIN
Created by: Nikolay
Comments: 0
Category: Chart
Type: Bug Report
3
Put several Pie charts in a StackPanel and set the WidthRequest and HeightRequest to let's say 60. You will notice that the circular pie itlsef appears much smaller than the expected 60. In Android and Windows Phone it appears as expected.
Unplanned
Last Updated: 29 Mar 2018 11:49 by ADMIN
ADMIN
Created by: Ves
Comments: 2
Category: Chart
Type: Feature Request
3
Expose API for series items label formatting in the chart.
Completed
Last Updated: 24 Oct 2018 08:23 by ADMIN
NSRangeException is thrown when second series has more items than the first one on iOS.

Available in the R3 2018 SP release.
Unplanned
Last Updated: 03 Jan 2018 09:46 by ADMIN
ADMIN
Created by: Tsvyatko
Comments: 0
Category: Chart
Type: Feature Request
3
Add a title for the horizontal and vertical axis.
Unplanned
Last Updated: 15 Mar 2019 17:39 by ADMIN
Completed
Last Updated: 24 Feb 2021 13:04 by ADMIN
Release R1 2021 SP1
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.
Unplanned
Last Updated: 28 Mar 2023 08:27 by James

When having the following code on a button click 

private void Button_Clicked(object sender, System.EventArgs e)
{
       this.chart.Zoom = new Size();
}

The chart zoom is reset first time, but when zooming again and pressing the button, the zoom level does not reset. You have to pan the chart, then zoom reset works. 

This code resets the zoom:

private void OnResetZoomClicked(object sender, EventArgs e)
{
	this.chart.Zoom = new Size(1, 1); // This line is added as a workaround to reset the Zoom level
	this.chart.Zoom = new Size();
}

 

 

Unplanned
Last Updated: 29 Mar 2018 11:49 by ADMIN
ADMIN
Created by: Nikolay
Comments: 0
Category: Chart
Type: Feature Request
2
The Chart should be able to display callout annotations.
Unplanned
Last Updated: 29 Mar 2018 11:49 by ADMIN
ADMIN
Created by: Nikolay
Comments: 0
Category: Chart
Type: Feature Request
2
When the chart has a lot of data, you may not necessarily want to show it all when the chart initially appears, but you may want to show the chart in a semi-zoomed state. Therefore, there should be properties which govern the ranges by which the chart should appear zoomed initially. So, the end-user should be able to zoom in/out starting from this state and then return to the same state if necessary (avoiding getting the whole data if he zooms out too much).
Unplanned
Last Updated: 18 Sep 2017 14:24 by ADMIN
ADMIN
Created by: Lance | Senior Manager Technical Support
Comments: 0
Category: Chart
Type: Feature Request
2
Request for ranged series types.

Here's an example of such a series type from UI for WPF http://docs.telerik.com/devtools/wpf/controls/radchartview/series/cartesianchart-series/bar-series/rangebarseries 
Unplanned
Last Updated: 18 Jan 2019 09:55 by ADMIN
ADMIN
Created by: Lance | Senior Manager Technical Support
Comments: 2
Category: Chart
Type: Feature Request
2
Request for polar axis series types:

- Radar Series
- Phasor
- Polar
Unplanned
Last Updated: 26 Jun 2017 12:46 by ADMIN
If series' ItemsSource is a collection of objects implementing INotifyPropertyChanged, the chart should be automatically updated when an item is updated.
Completed
Last Updated: 18 Oct 2018 11:45 by ADMIN
Available in the R3 2018 SP release.
Completed
Last Updated: 05 Apr 2018 11:36 by ADMIN
When you declare a specific CalendarAppointmentsStyle and assign it to the AppointmentsStyle property of the RadCalendar - it is not respected. However, if you try to set it in the NativeControlLoaded event, the changes are correctly applied. 

Available in minor release 2018.1.405. It will also be available in the R2 2018 release.