Unplanned
Last Updated: 25 Jun 2024 10:42 by Martin Ivanov
Martin Ivanov
Created on: 25 Jun 2024 10:42
Category: ChartView
Type: Feature Request
0
ChartView: Add setting to handle the MouseWheel event of the canvas adorner when zooming

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;
 }

0 comments