Histogram.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 or density of data in a bin.

Example
height = T({ 58 59 60 52 54 56 59 64 57 58 63 62 59 61 59 58 54 58 53 56 });
declare DataObject dobj;
dobj = DataObject.Create( "Student Height", "Height", height );
declare Histogram plot = Histogram.Create( dobj, "Height" );
plot.ShowBarLabels();
See Also

Histogram.ShowDensity
Histogram.ShowPercentage