Enum StepType
Enumeration type that defines how a curve is drawn. Curves can be drawn as ordinary lines by connecting the points directly, or in a stair-step fashion as a series of discrete, constant values. In a stair step plot, all lines segments are either horizontal or vertical. In a non-step (line) plot, the lines can be any angle.
Namespace: ZedGraph
Assembly: ZedGraph.dll
Syntax
public enum StepType
Fields
Name | Description |
---|---|
ForwardSegment | Draw the CurveItem as a segment in which each point defines the beginning (left side) of a new "stair." This implies the points are defined at the beginning of an "event." Note that ForwardSegment is different from ForwardStep in that it does not draw the vertical portion of the step. |
ForwardStep | Draw the CurveItem as a stair-step in which each point defines the beginning (left side) of a new stair. This implies the points are defined at the beginning of an "event." |
NonStep | Draw the CurveItem as an ordinary line, in which the points are connected directly by line segments. |
RearwardSegment | Draw the CurveItem as a segment in which each point defines the end (right side) of a new "stair." This implies the points are defined at the end of an "event." Note that RearwardSegment is different from RearwardStep in that it does not draw the vertical portion of the step. |
RearwardStep | Draw the CurveItem as a stair-step in which each point defines the end (right side) of a new stair. This implies the points are defined at the end of an "event." |