Histogram.FillBars

Prototypes

void FillBars( <boolean bFill> )

Parameters

boolean bFill
If bFill is true, the bars are filled. If bFill is false, the bars are not filled. Calling this method without a parameter is equivalent to calling it with bFill equal to true.

Remarks

This method controls whether the bars are filled.

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.FillBars( false );