Unplanned
Last Updated: 24 Oct 2024 05:59 by ADMIN
Created by: Sebastian
Comments: 3
Category: Chart
Type: Feature Request
4
I would like to visualize a secondary vertical Axis for the series. 
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: 21 Oct 2024 11:15 by Todor
Created by: Clint
Comments: 1
Category: Chart
Type: Feature Request
1

Add an option to define chart title. 

 Currently we can achieve this by adding a label on the top/bottom of the chart.

Example:

<Grid RowDefinitions="Auto,*">
    <Label Grid.Row="0" Text="Chart title"/>
    <telerik:RadCartesianChart x:Name="chart" Grid.Row="1" AutomationId="chart">
        <telerik:RadCartesianChart.BindingContext>
            <local:ViewModel />
        </telerik:RadCartesianChart.BindingContext>
        <telerik:RadCartesianChart.HorizontalAxis>
            <telerik:CategoricalAxis />
        </telerik:RadCartesianChart.HorizontalAxis>
        <telerik:RadCartesianChart.VerticalAxis>
            <telerik:NumericalAxis />
        </telerik:RadCartesianChart.VerticalAxis>
        <telerik:RadCartesianChart.Series>
            <telerik:BarSeries CategoryBinding="Category"
                                ValueBinding="Value"
                                ItemsSource="{Binding Data}" />
        </telerik:RadCartesianChart.Series>
    </telerik:RadCartesianChart>
</Grid>

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: 07 Aug 2024 08:00 by ADMIN
Release 7.1.0 (2024 Q3)
Putting the Path or MultiPath inside of a ScrollView with a VerticalStack leads to an exception.
Unplanned
Last Updated: 26 Jun 2024 07:38 by Emily
Created by: Emily
Comments: 0
Category: Chart
Type: Feature Request
2
Provide a way to invert the axis range in a similar way as in WPF ChartView: https://docs.telerik.com/devtools/wpf/controls/radchartview/axes/inversed-axis
Unplanned
Last Updated: 15 May 2024 08:23 by Jude
I would like to enumerate the legend into a table with 2 columns as in WPF Legend: https://docs.telerik.com/devtools/wpf/controls/radlegend/itemspanel
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: 14 Mar 2024 09:20 by Rodrigo

Provide a way to invoke the tooltip for a concrete data point programmatically

Unplanned
Last Updated: 14 Feb 2024 06:09 by ADMIN

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

Unplanned
Last Updated: 17 Jan 2024 08:45 by Vivek
Created by: Vivek
Comments: 0
Category: Chart
Type: Feature Request
0

The data points should allow setting shape and color to each one individually.

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: 15 Nov 2023 13:35 by Dustin
LineSeries Stroke and StrokeThickness are not applied when Palette is set

Unplanned
Last Updated: 10 Nov 2023 12:46 by Component

On WinUI: Two PieSeries are displayed. 

On Android: Crash occurs

On iOS: negative value is displayed in chart

Unplanned
Last Updated: 07 Nov 2023 07:57 by Pavani
Created by: Pavani
Comments: 0
Category: Chart
Type: Feature Request
0
Provide the option to display text on arbitrary position - on the axis, on the data point, etc. similar to the Kendo Web chart "Notes" option.
Unplanned
Last Updated: 23 Oct 2023 10:17 by Pavani
Created by: Pavani
Comments: 0
Category: Chart
Type: Feature Request
0
Let's say having more legend data that cannot fit on the screen, provide an option to scroll through the legend items. 

or if the legend is auto wrap when overflow.
Unplanned
Last Updated: 18 Oct 2023 14:26 by ADMIN

Hi

I have the following chart

      <telerik:RadPieChart Grid.Row="1">
        <telerik:RadPieChart.Series>
          <telerik:DonutSeries ItemsSource="{Binding CurrencyAllocation}" x:Name="CurrSeries"
                               LabelBinding="Item1"
                               ValueBinding="Item2"
                               ShowLabels="True"
                               AllowSelect="True"
                               SelectedPointOffset="0.1"/>
        </telerik:RadPieChart.Series>
        <telerik:RadPieChart.ChartBehaviors>
          <telerik:ChartSelectionBehavior DataPointSelectionMode="Single"
                                          SeriesSelectionMode="None"
                                          SelectionChanged="Chart_SelectionChanged" />
        </telerik:RadPieChart.ChartBehaviors>
      </telerik:RadPieChart>

As soon as I set the SelectedDataPointOffset to a lowish value, no matter whether it's 0.5, 0.1, 0.01, 0.001 or even 0.0000001, the offset when selecting the data point is always the same and it's so large that it's unusable, as you can see in the following screenshot.

 

As an additional issue, if i set the offset to 0.9, i get an exception

'RelativeOffsetFromCenter is not valid! The possible values are in the [0, 1] interval.'

as soon as I select a segment. 0.9 obviously is in the [0, 1] interval.

 

 

Unplanned
Last Updated: 11 Oct 2023 12:03 by Tinus
It will be also useful to create image file from chart.
Completed
Last Updated: 11 Oct 2023 08:02 by ADMIN
Release 6.3.0
Dynamic change of the Stroke property of the ScatterSplineSeries has no effect in Android, the stroke is not changed.

 

Workaround:

Change the Palette.

ChartPalette chartPalette = new ChartPalette();
chartPalette.Entries.Add(new PaletteEntry { FillColor = Colors.LightBlue, StrokeColor = Colors.LightGreen });
this.chart.Palette = chartPalette;

 

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