void ShowAxesLabels( <boolean bShow> )
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.
This method shows or hides the labels for all axes.
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 );