NChartUserInteraction Enumeration |
The NChartUserInteraction enum provides constants to control available user intercation. You can use them to build
the mask of intercations availability by concatenating the needed ones with bitwise OR.
Namespace:
NChart3D_UWP
Assembly:
NChart3D_UWP (in NChart3D_UWP.dll)
Syntax public enum NChartUserInteraction
Public Enumeration NChartUserInteraction
public enum class NChartUserInteraction
Members
| Member name | Value | Description |
---|
| None | 0 |
No intercations are available.
|
| VerticalMove | 1 |
Vertical moving is available.
|
| HorizontalMove | 2 |
Horizontal moving is available.
|
| VerticalRotate | 4 |
Rotation by vertical moving is available.
|
| HorizontalRotate | 8 |
Rotation by horizontal moving is available.
|
| VerticalZoom | 16 |
Vertical zoom is available.
|
| HorizontalZoom | 32 |
Horizontal zoom is available.
|
| ProportionalZoom | 64 |
Proportional zoom is available.
|
| Tap | 128 |
Tap is available.
|
| All | 255 |
All intercations are available.
|
See Also