PieBarLabelDisplay

When the GraphType property selects a Pie-Bar graph (setGraphType(93);), this property enables or disables the pie-bar label display.

Syntax:

PieBarLabelDisplay(boolean);
boolean = getPieBarLabelDisplay();

where:

boolean

Can be one of the following:

true displays Pie-Bar graph label. This value is the default.

false does not display Pie-Bar graph label.

Example:

setPieBarLabelDisplay(true);
setTextString(getPieBarLabel(), “PieBarLabel");
setGraphType(93);

pie-bar graph

setPieBarLabelDisplay(false);
setTextString(getPieBarLabel(), "PieBarLabel");
setGraphType(93);

pie-bar graph

See PieBarLabelString.


WebFOCUS