Plot.ShowAxisLabel

Prototypes

void ShowAxisLabel( int nAxisID <, boolean bShow> )

Parameters

int nAxisID
A predefined constant specifying the axis. The valid values are XAXIS, YAXIS, and ZAXIS.

boolean bShow
If bShow is true, the specified axis label is displayed. If bShow is false, the specified axis label is hidden. Calling this method without specifying the bShow parameter is equivalent to calling it with bShow equal to true.

Remarks

This method shows or hides the label for an axis.

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.ShowAxisLabel( XAXIS, false );
See Also

Plot.ShowAxes
Plot.ShowAxesLabels
Plot.ShowAxis