Plot.ShowAxes

Prototypes

void ShowAxes( <boolean bShow> )

Parameters

boolean bShow
If bShow is true, the axes are displayed. If bShow is false, the axes are hidden. Calling this method without a parameter is equivalent to calling it with bShow equal to true.

Remarks

This method shows or hides the axes.

Example
declare DataObject dobj;
dobj = DataObject.CreateFromFile( "states48" );
declare PolygonPlot plot;
plot = PolygonPlot.Create( dobj, "Lon", "Lat", {"STATE", "SEGMENT"} );
plot.ShowAxes( false );
See Also

Plot.ShowAxesLabels
Plot.ShowAxis
Plot.ShowAxisLabel