Enumeration type for the user-defined coordinate types available.
These coordinate types are used the ArrowObj objects
and TextObj objects only.
| C# | Visual Basic | Visual C++ |
public enum CoordType
Public Enumeration CoordType
public enum class CoordType
| Member | Description |
|---|---|
| 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.
|
| AxisXYScale | |
| AxisXY2Scale | |
| XChartFractionYPaneFraction |
The X coordinate is specified as a fraction of the Rect,
and the Y coordinate is specified as a fraction of the Rect.
|
| 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.
|
| XChartFractionYScale |
The X coordinate is specified as a fraction of the
Rect and the Y coordinate is specified as
a Y scale value.
|
| XChartFractionY2Scale |
The X coordinate is specified as a fraction of the
Rect and the Y coordinate is specified as
a Y2 scale value.
|
