Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
485
Polar Chart : Get Chart coordinates on mouse move.
posted

I am doing the following:

 

In FillsceneGraph event ..

xAxis = (

IAdvanceAxis)e.Grid["X"];

yAxis = (

IAdvanceAxis)e.Grid["Y"];

And in Mouse event ..

 

string xVal = xAxis.MapInverse(e.X).ToString();

 

string yVal = yAxis.MapInverse(e.Y).ToString();

The xVal is much higher than the maximum (360) , greater than 50000 in my case .

The yVal falls within the range (0 -90). But not accurate.

Like composite chart, do I need to do something different for Polar Chart?

Thanks

Anil