Struct Line.Default
A simple struct that defines the default property values for the Line class.
Inherited Members
Namespace: ZedGraph
Assembly: ZedGraph.dll
Syntax
public struct Default
Fields
| Improve this Doc View SourceColor
The default color for curves (line segments connecting the points). This is the default value for the Color property.
Declaration
public static Color Color
Field Value
Type | Description |
---|---|
Color |
FillBrush
The default custom brush for filling in the area under the curve (Brush property).
Declaration
public static Brush FillBrush
Field Value
Type | Description |
---|---|
Brush |
FillColor
The default color for filling in the area under the curve (Color property).
Declaration
public static Color FillColor
Field Value
Type | Description |
---|---|
Color |
FillType
The default fill mode for the curve (Type property).
Declaration
public static FillType FillType
Field Value
Type | Description |
---|---|
FillType |
IsOptimizedDraw
The default value for the IsOptimizedDraw property.
Declaration
public static bool IsOptimizedDraw
Field Value
Type | Description |
---|---|
Boolean |
IsSmooth
The default value for the IsSmooth property.
Declaration
public static bool IsSmooth
Field Value
Type | Description |
---|---|
Boolean |
SmoothTension
The default value for the SmoothTension property.
Declaration
public static float SmoothTension
Field Value
Type | Description |
---|---|
Single |
StepType
Default value for the curve type property (StepType). This determines if the curve will be drawn by directly connecting the points from the Points data collection, or if the curve will be a "stair-step" in which the points are connected by a series of horizontal and vertical lines that represent discrete, staticant values. Note that the values can be forward oriented
ForwardStep
(StepType) or
rearward oriented RearwardStep
.
That is, the points are defined at the beginning or end
of the staticant value for which they apply, respectively.
Declaration
public static StepType StepType
Field Value
Type | Description |
---|---|
StepType | StepType enum value |