ClipMode

StockSharp.Xaml.Charting

Defines constants for behavior of the ZoomPanModifier. - ClipMode.None means you can pan right off the edge of the data into uncharted space. - ClipMode.StretchAtExtents causes a zooming (stretch) action when you reach the edge of the data. - ClipAtExtents forces the panning operation to stop suddenly at the extents of the data - ClipAtMin forces the panning operation to stop suddenly at the minimum of the data, but expand at the maximum

Fields

ClipAtExtents
public const ClipMode ClipAtExtents
value = ClipMode.ClipAtExtents

ClipAtExtents forces the panning operation to stop suddenly at the extents of the data

ClipAtMax
public const ClipMode ClipAtMax
value = ClipMode.ClipAtMax

ClipAtMax forces the panning operation to stop suddenly at the maximum of the data, but expand at the minimum

ClipAtMin
public const ClipMode ClipAtMin
value = ClipMode.ClipAtMin

ClipAtMin forces the panning operation to stop suddenly at the minimum of the data, but expand at the maximum

None
public const ClipMode None
value = ClipMode.None

ClipMode.None means you can pan right off the edge of the data into uncharted space.

StretchAtExtents
public const ClipMode StretchAtExtents
value = ClipMode.StretchAtExtents

ClipMode.StretchAtExtents causes a zooming (stretch) action when you reach the edge of the data.