Click or drag to resize
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
Members
  Member nameValueDescription
None0 No intercations are available.
VerticalMove1 Vertical moving is available.
HorizontalMove2 Horizontal moving is available.
VerticalRotate4 Rotation by vertical moving is available.
HorizontalRotate8 Rotation by horizontal moving is available.
VerticalZoom16 Vertical zoom is available.
HorizontalZoom32 Horizontal zoom is available.
ProportionalZoom64 Proportional zoom is available.
Tap128 Tap is available.
All255 All intercations are available.
See Also