Chart.Zoom.ZoomRect() - What is the maximum height?
Chart.Zoom.ZoomRect() - What is the maximum height?
I am trying to customise the zoom so that the full height of the chart is always shown. I have a chart_Zoomed handler and I would like to modify the mouse selected zoom by setting the zoom rectangle y value to 0 and the height to the height of the chart. How can I obtain the correct height value for this?
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hello Martin,
I may not understand what you are exactly trying to achieve but you may be interested in knowin about zoom Direction property:
If this doesn't help don't hesitate to let us know.
I may not understand what you are exactly trying to achieve but you may be interested in knowin about zoom Direction property:
Code: Select all
tChart1.Zoom.Direction = ZoomDirections.Horizontal;
Best Regards,
Narcís Calvet / 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 |
That does the trick!
Thank you, that does exactly what i want.