void ShowAxes( <boolean bShow> )
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.
This method shows or hides the axes.
declare DataObject dobj;
dobj = DataObject.CreateFromFile( "states48" );
declare PolygonPlot plot;
plot = PolygonPlot.Create( dobj, "Lon", "Lat", {"STATE", "SEGMENT"} );
plot.ShowAxes( false );