Measurement Studio for .NET Languages

cancel
Showing results for 
Search instead for 
Did you mean: 

Prevent zoom on shift press

Solved!
Go to solution

How can I prevent zoom on shift press on WPF graph? 

0 Kudos
Message 1 of 2
(2,730 Views)
Solution
Accepted by topic author hodaya273

The keyboard-assisted interactions available on the graph are controlled by the Interactions collection. By default, this includes the Zoom interaction (among others).

 

To remove Zoom, you can set the collection to an empty list in XAML with Interactions="", or to a different list of interactions like Interactions="Pan, ZoomIn".

~ Paul H
0 Kudos
Message 2 of 2
(2,715 Views)