that part of code presents in HandleZoomFinish
using (Graphics g = this.CreateGraphics())
{
// always AxisChange() the dragPane
_dragPane.AxisChange(g);
foreach (GraphPane pane in _masterPane._paneList)
{
if (pane != _dragPane && (_isSynchronizeXAxes || _isSynchronizeYAxes))
pane.AxisChange(g);
}
}
I want it in HandlePanDrag (or to be able to enable that part of code there)
thanx
P.S. that is for JapaneeseCandles... I want to pan by mouse and have a correct value range on the fly...