Enumeration type for the various axis types that are available
| C# | Visual Basic | Visual C++ |
public enum AxisType
Public Enumeration AxisType
public enum class AxisType
| Member | Description |
|---|---|
| Linear | An ordinary, cartesian axis |
| Log | A base 10 log axis |
| Date | A cartesian axis with calendar dates or times |
| Text | An ordinal axis with user-defined text labels. An ordinal axis means that
all data points are evenly spaced at integral values, and the actual coordinate values
for points corresponding to that axis are ignored. That is, if the X axis is an
ordinal type, then all X values associated with the curves are ignored. |
| Ordinal | An ordinal axis with regular numeric labels. An ordinal axis means that
all data points are evenly spaced at integral values, and the actual coordinate values
for points corresponding to that axis are ignored. That is, if the X axis is an
ordinal type, then all X values associated with the curves are ignored. |
| DateAsOrdinal | An ordinal axis that will have labels formatted with ordinal values corresponding
to the number of values in each CurveItem.
|
| LinearAsOrdinal | An ordinal axis that will have labels formatted with values from the actual data
values of the first CurveItem in the CurveList.
|
| Exponent | An exponential axis |
