double GetAxisTickAnchor( int nAxisID )
The return value is the reference tick to which the major tick increment is applied.
int nAxisID
A predefined constant identifying the axis. The valid values are XAXIS, YAXIS, and ZAXIS. The axis must represent interval data.
This method returns the anchor for the tick marks. The major tick marks are generated by starting at the anchor tick and stepping in both directions by the tick increment.
x = { 1 2 3 4 5 6 7 8 }; y = { 2 1 4 5 6 5 6 9 }; declare ScatterPlot plot = ScatterPlot.Create( "Sample Data", x, y ); a = plot.GetAxisTickAnchor( XAXIS ); print a;