In my
mouseDown( object sender, System.Windows.Input.MouseEventArgs e)
To get the mouse-click coords, In one case I'm trying:
Point pA = e.GetPosition(this as IInputElement );
Point p = mouse.chartControl.MouseDownPoint;
I'm obviously missing something. Can someone help me figure out what I seem to be missing?

Comment