Defines how a range shape is outlined.
Definition
Namespace:Telerik.Charting
Assembly:Telerik.Windows.Controls.Chart.dll
Syntax:
C#
[Flags]
public enum RangeSeriesStrokeMode
Fields
The path segment will have a stroke along the High values.
C#
HighPoints = 2
The path segment will have a stroke along the Low and High values.
C#
LowAndHighPoints = LowPoints | HighPoints
The path segment will have a stroke along the Low values.
C#
LowPoints = 1
No outlining.
C#
None = 0