Zooming when scrolling custom axes
Zooming when scrolling custom axes
Hello, some tome ago i posted http://www.teechart.net/support/viewtop ... =4&t=14471 this topic, about zooming chart when AxisScroll is used and zooming direction set to horizontal. Now ia have quiet same looking problem but with vertical custom axes. When i'm trying to scroll axis(vertical) and move mouse up and down promptly on the axis, everythig works fine, but as soon as i become not so accurate, and the movemnt turns to be diagonal, it appears zooming. What should i do to avoid this?
-
- Guru
- Posts: 1603
- Joined: Fri Nov 15, 2002 12:00 am
Re: Zooming when scrolling custom axes
Hello,
As you can see in our public bug tracking system, the bug you reported in your last message has now been fixed.
I have run a test using similar code but with a vertical axis:
this code now also works well in the code we have. This fix will be incorporated into the next maintenance release, due out at the beginning of next year.
As you can see in our public bug tracking system, the bug you reported in your last message has now been fixed.
I have run a test using similar code but with a vertical axis:
Code: Select all
private void InitializeChart()
{
tChart1.Aspect.View3D = false;
Steema.TeeChart.Styles.Line line1 = new Line(tChart1.Chart);
line1.FillSampleValues();
Steema.TeeChart.Tools.AxisScroll scroll = new AxisScroll(tChart1.Chart);
scroll.Axis = tChart1.Axes.Left;
tChart1.Zoom.Direction = ZoomDirections.Vertical;
}
Best Regards,
Christopher Ireland / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |