Completed
Last Updated: 08 Dec 2014 13:01 by ADMIN
ADMIN
Ivan Petrov
Created on: 02 Dec 2014 17:17
Category: ChartView
Type: Bug Report
0
FIX. RadChartView - If you run a form with a chart view with a zoom controller on it you cannot start to zoom in and out until you click on the chart.
Steps to reproduce:

1. Add a RadChartView to a form.

2. Add a LassoZoomController to the chart 

3. Run the project and start scrolling the mouse wheel. 

You will see that the chart is not zoomed in our out. If you click on the chart the mouse wheel zooms as expected.



WORKAROUND:

Set the focus to the chart element:

this.radChartView1.Behavior.ItemCapture = this.radChartView1.ChartElement;
this.radChartView1.ChartElement.Focus();
0 comments