New to Telerik UI for WinFormsStart a free 30-day trial

Defines how an AreaSeries shape is outlined.

Definition

Namespace:Telerik.WinControls.UI

Assembly:Telerik.WinControls.dll

Syntax:

C#
[Flags]
public enum AreaSeriesStrokeMode

Fields

All enum members are defined and the area is fully outlined.

C#
All = AllButPlotLine | PlotLine

All members except the PlotLine are specified.

C#
AllButPlotLine = LeftLine | RightAndPoints

Left line and points are outlined.

C#
LeftAndPoints = LeftLine | Points

The left line (from plotline to the first point) is outlined.

C#
LeftLine = 1

No outlining.

C#
None = 0

The plotline is outlines.

C#
PlotLine = 8

The line that connects all points is outlined. This is the default mode.

C#
Points = 2

Right line and points are outlined.

C#
RightAndPoints = Points | RightLine

The right line (from plotline to the last point) is outlined.

C#
RightLine = 4