BarChart.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
animals = { "Cat", "Dog", "Cat", "Cat", "Iguana", "Dog", "Bird" };
declare DataObject dobj = DataObject.Create( "Pets", "Animal", animals );
declare BarChart plot = BarChart.Create( dobj, "Animal" );
plot.FillBars( false );