Enum CoordType
Enumeration type for the user-defined coordinate types available. These coordinate types are used the ArrowObj objects and TextObj objects only.
Namespace: ZedGraph
Assembly: ZedGraph.dll
Syntax
public enum CoordType
Fields
Name | Description |
---|---|
AxisXY2Scale | Coordinates are specified according to the user axis scales for the XAxis and Y2Axis. |
AxisXYScale | Coordinates are specified according to the user axis scales for the XAxis and YAxis. |
ChartFraction | Coordinates are specified as a fraction of the Rect. That is, for the X coordinate, 0.0 is at the left edge of the ChartRect and 1.0 is at the right edge of the ChartRect. A value less than zero is left of the ChartRect and a value greater than 1.0 is right of the ChartRect. For the Y coordinate, 0.0 is the top and 1.0 is the bottom. |
PaneFraction | Coordinates are specified as a fraction of the Rect. That is, for the X coordinate, 0.0 is at the left edge of the Rect and 1.0 is at the right edge of the Rect. A value less than zero is left of the Rect and a value greater than 1.0 is right of the Rect. For the Y coordinate, 0.0 is the top and 1.0 is the bottom. Note that any value less than zero or greater than 1.0 will be outside the Rect, and therefore clipped. |
XChartFractionY2Scale | The X coordinate is specified as a fraction of the Rect and the Y coordinate is specified as a Y2 scale value. |
XChartFractionYPaneFraction | The X coordinate is specified as a fraction of the Rect, and the Y coordinate is specified as a fraction of the Rect. |
XChartFractionYScale | The X coordinate is specified as a fraction of the Rect and the Y coordinate is specified as a Y scale value. |
XPaneFractionYChartFraction | The X coordinate is specified as a fraction of the Rect, and the Y coordinate is specified as a fraction of the Rect. |
XScaleYChartFraction | The X coordinate is specified as an X Scale value, and the Y coordinate is specified as a fraction of the Rect. |