Unplanned
Last Updated: 25 Jun 2024 10:42 by Martin Ivanov

Currently the MouseWheel event used to zoom is not handled which means that the event will bubble to the parent elements which can lead to scrolling issues. Add an option to handle the MouseWheel event when the chart zooming is enabled.

To get the desired result, you can handle the MouseWheel event of the chart manually.

 private void RadCartesianChart_MouseWheel(object sender, MouseWheelEventArgs e)
 {
     e.Handled = true;
 }

Unplanned
Last Updated: 24 Oct 2024 14:14 by Stenly
Currently, there isn't a possibility to cancel the creation of labels for certain data points, as it is on the level of the series via the ShowLabels property. We could introduce an option to control this on the level of the data points.
Unplanned
Last Updated: 09 Apr 2025 08:20 by Stenly
Created by: Stenly
Comments: 0
Category: ChartView
Type: Feature Request
0
Currently, the RadChartView component does not have a waterfall series similar to the one that is provided by the Telerik UI for WinForms. We could add support for this type of series.
Unplanned
Last Updated: 11 Apr 2025 08:26 by Martin Ivanov
Add a mechanism to customize the touch gestures/events of the behaviors in RadChartView. Currently, the behaviors handle the TouchManager's events internally and the behavior cannot be properly customized without recreating the entire touch logic.