BarChart.ShowBarLabels

Prototypes

void ShowBarLabels( <boolean bShow> )

Parameters

boolean bShow
If bShow is true, the bar labels are displayed. If bShow is false, the bar labels 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 bar labels. A bar label indicates the count (frequency) of data in a bin.

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

BarChart.ShowPercentage