Hi,
When the user picks a zoom rectangle, I'd like to be able to exclude an axis from the subsequent zoom operation in order to preserve carefully arranged extents, increment and labelling. Is this possible?
Thanks!
Excluding axis from zoom
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Re: Excluding axis from zoom
Hi toreba,
You can set which directions will be zoomed: horizontal, vertical or both, for example:
Is this what you are looking for?
You can set which directions will be zoomed: horizontal, vertical or both, for example:
Code: Select all
Chart1.Zoom.Direction:=tzdVertical;
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 |
Re: Excluding axis from zoom
Yes, perfect! Thanks very much!