RectangleZoomMode Enumeration |
LightningChart .NET Help
Rectangle zooming mode, which tells how axis ranges (Minimum and Maximum on X and Y axes) are updated by rectangle zooming operation.
Namespace:
Arction.Wpf.ChartingMVVM
Assembly:
Arction.Wpf.ChartingMVVM.LightningChart (in Arction.Wpf.ChartingMVVM.LightningChart.dll) Version: 10.3.1
Syntaxpublic enum RectangleZoomMode
Public Enumeration RectangleZoomMode
public enum class RectangleZoomMode
Members|
| Member name | Value | Description |
|---|
| Horizontal | 0 |
Zooms on X-axis range. Y-axis range remain as is.
|
| Vertical | 1 |
Zooms on Y-axis range. X-axis range remain as is.
|
| HorizontalAndVertical | 2 |
Zooms on X and Y-axis.
|
| AboutXAxisZoomOrigin | 3 |
Zooms on X-axis, around X-axis ZoomOrigin value. Y-axis range will be set by mouse start and end coordinates.
|
| AboutYAxisZoomOrigin | 4 |
Zooms on Y-axis, around Y-axis ZoomOrigin value. X-axis range will be set by mouse start and end coordinates.
|
| AboutXYZoomOrigin | 5 |
Zooms on both X and Y-axis about axes ZoomOrigin values.
|
See Also