Plot.ShowAxesLabels

Prototypes

void ShowAxesLabels( <boolean bShow> )

Parameters

boolean bShow
If bShow is true, the labels for all axes are displayed. If bShow is false, the labels for all 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 labels for all axes.

Example
animals = { "Cat", "Dog", "Cat", "Cat", "Iguana", "Dog", "Bird" };
declare DataObject dobj;
dobj = DataObject.Create( "Pets", "Animal", animals );
declare BarChart plot;
plot = BarChart.Create( dobj, "Animal" );
plot.ShowBarLabels();
plot.ShowAxesLabels( false );
See Also

Plot.ShowAxes
Plot.ShowAxis
Plot.ShowAxisLabel