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: 18 Sep 2018 07:47 by ADMIN
ADMIN
Created by: Stefan Nenchev
Comments: 2
Category: Chart
Type: Feature Request
8

			
Unplanned
Last Updated: 26 Feb 2018 09:38 by ADMIN
ADMIN
Created by: Nikolay
Comments: 0
Category: Chart
Type: Feature Request
8

			
Unplanned
Last Updated: 04 Apr 2019 06:38 by ADMIN
ADMIN
Created by: Stefan Nenchev
Comments: 2
Category: Chart
Type: Feature Request
8

			
Unplanned
Last Updated: 18 Sep 2018 07:41 by ADMIN
ADMIN
Created by: Nikolay
Comments: 2
Category: Chart
Type: Feature Request
7
The data points should allow setting shape and color to each one individually.
Unplanned
Last Updated: 09 Nov 2018 09:26 by Michel
ADMIN
Created by: Stefan Nenchev
Comments: 1
Category: Chart
Type: Feature Request
7
In some cases, a redundant extra tick is drawn when using a DateTimeContinuousAxis. 
Unplanned
Last Updated: 13 Aug 2018 12:55 by ADMIN
ADMIN
Created by: Yana
Comments: 0
Category: Chart
Type: Feature Request
7
Currently the only way to apply different colors to the bars is through the ChartPalette. Provide an option to set the color according to the bound data item.  
Unplanned
Last Updated: 29 Mar 2018 11:49 by Pari
ADMIN
Created by: Tsvyatko
Comments: 2
Category: Chart
Type: Feature Request
7
Add support for dynamic series through ChartSeriesProvider API
Unplanned
Last Updated: 20 Sep 2021 15:34 by ADMIN
If a tooltip is already displayed in portrait orientation, rotating to landscape causes the tooltip to end up in a very wrong location.
Unplanned
Last Updated: 24 Jul 2020 15:53 by ADMIN
Allow easy exporting of a chart to a Xamarin.Forms image object. This will allow the images to be shared using social media.
Unplanned
Last Updated: 29 Mar 2018 11:49 by Valued User
ADMIN
Created by: Tsvyatko
Comments: 1
Category: Chart
Type: Feature Request
4
Provide ability to chart series to appear with animation
Unplanned
Last Updated: 27 Aug 2018 07:52 by ADMIN
ADMIN
Created by: Stefan Nenchev
Comments: 2
Category: Chart
Type: Feature Request
4

			
Unplanned
Last Updated: 27 Feb 2018 10:48 by ADMIN
ADMIN
Created by: Petar Marchev
Comments: 0
Category: Chart
Type: Feature Request
4
The VisibleRange property can hold the actual visible minimum and maximum of the axis while the chart is being zoomed and panned.
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: 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. 
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.
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: 15 Mar 2019 17:39 by ADMIN
1 2 3 4 5 6