DisplayBarAsPictograph

This property enables or disables the display of bars as pictographs in a flat 2D graph.

Syntax:

setDisplayBarAsPictograph(boolean);
boolean = getDisplayBarAsPictograph();

where:

boolean

Can be one of the following:

true displays bars as pictographs. The picture (.GIF image) identified by the setTextureURL() method is applied to the bar. The setTextureURL() method must be used to identify a valid .GIF image. If a texture has not been identified with setTextureURL(), this property may cause jagged lines to display on the bars. The setFillType() method should also be set to identify textures (for example, setFillType (3);) as the fill type.

false does not display bars as pictographs. This value is the default.

Example:

setFillType(getSeries(3),3);
setFillType(getSeries(4),3);
setTextureDisplayMode(0);
setTextureURL(getSeries(3),"/images/tdg/Azul_Granite.gif");
setTextureURL(getSeries(4),"/images/tdg/Azul_Granite.gif");  setDisplayBarAsPictograph(true);

bar graph


WebFOCUS