Limit on the zoom depth and limits on the x and y axes #468
-
Hello. Great thanks for the nice product. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
This is not supported at the moment, but depending on your requirements shouldn't be too hard to implement. There are multiple ways to influence the axes ranges:
For the first one, you would have to extend the Zoomer plugin and check the zoom range against your limits. The second one is probably not relevant. For limiting auto-ranging you would have to extend the DefaultNumericAxis to add properties to clamp the auto ranging. You could use these axis properties of your "LimitedNumericAxis" in your "LimitiedZoomer". But as a start I would recommend to start with the simplest extension of the Zoomer plugin and add other functionality later on. |
Beta Was this translation helpful? Give feedback.
This is not supported at the moment, but depending on your requirements shouldn't be too hard to implement.
There are multiple ways to influence the axes ranges:
For the first one, you would have to extend the Zoomer plugin and check the zoom range against your limits. The second one is probably not relevant. For limiting auto-ranging you would have to extend the DefaultNumericAxis to add properties to clamp the auto ranging. You could use these axis properties of your "LimitedNumericAxis" in your "LimitiedZoomer". But as a …