Hello,
I recently purchased the TeeChart Business Package for WPF and have implemented a custom zoom mechanism using the MouseWheel event.
Now, I would like to disable the default zoom behavior (holding the left mouse button to zoom). Could you please advise on how to achieve this?
Thank you for your assistance!
Best regards,
Tom
Disabling Default Mouse Zoom in TeeChart for WPF
Re: Disabling Default Mouse Zoom in TeeChart for WPF
Hello Tom,
For example:
If this setting collides with your custom zoom mechanism, please let me know so I can offer further help.
Best regards,
Edu
To disable the default zoom behavior you can do it by setting the Zoom.Direction value to ZoomDirections.NoneNow, I would like to disable the default zoom behavior (holding the left mouse button to zoom). Could you please advise on how to achieve this?
For example:
Code: Select all
tChart1.Zoom.Direction = ZoomDirections.None;
Best regards,
Edu
Edu
Steema Support
Steema Support
Re: Disabling Default Mouse Zoom in TeeChart for WPF
perfect! thank you for the fast replay