FrameAutoShade

This property controls auto-shading of Side and Bottom Frames in a 2.5D graph. When enabled, the side and bottom frames are automatically colored and shaded based on the color applied to the graph frame. When auto-shading is disabled, side and bottom frames are not filled with color automatically.

Syntax:

setFrameAutoShade (boolean);

where:

boolean

Can be one of the following:

true enables side and bottom frame auto-shading.

false disables side and bottom frame auto-shading. This value is the default.

Example:

setFrameAutoShade(true);
setFillColor(getFrame(),new Color(0,255,255));

3D bar graph

setFrameAutoShade(false);
setFillColor(getFrame(),new Color(0,255,255));
setFillColor(getFrameSide(),new Color(0,255,0));
setFillColor(getFrameBottom(),new Color(255,0,0));

3D bar graph

See setFillColor(), getFrame(), getFrameSide(), getFrameBottom().


WebFOCUS