BoxPlot.FillBoxes

Prototypes

void FillBoxes( <boolean bFill> )

Parameters

boolean bFill
If bFill is true, the boxes are filled. If bFill is false, the boxes 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 boxes are filled.

Example
gender = { M  M  M  M  M  M  M  M  M  M  F  F  F  F  F  F  F  F  F  F };
height = { 58 59 60 52 54 56 59 64 57 58 63 62 59 61 59 58 54 58 53 56 };
declare DataObject dobj = DataObject.Create( "Student Height" );
dobj.AddVar( "Gender", "Gender", gender );
dobj.AddVar( "Height", "Height", height );
declare BoxPlot plot;
plot = BoxPlot.Create( dobj, "Gender", "Height" );
plot.FillBoxes( false );