Last label on the x axis is clipped, when the y axis is right positioned and x axis plot mode is on ticks.
when rendering thousands of data, provide fast line chart. This type of series can be used for system performance monitoring or with chart than need to display thousands data points.
WinForms has fast line chart: https://docs.telerik.com/devtools/winforms/controls/chartview/series-types/fastline
NullReferenceException when Chart is added inside Microsoft MAUI CollectionView and navigating back to a page.
Workaround:
When using the Telerik MAUI CollectionView no exception.
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>
Provide a way to invoke the tooltip for a concrete data point programmatically
Labels in bar series are cut, when setting the labels VerticalAligment to Top:
The data points should allow setting shape and color to each one individually.
On WinUI: Two PieSeries are displayed.
On Android: Crash occurs
On iOS: negative value is displayed in chart