Cascade

This property is not intended for use in a normal graphing environment. It is strictly designed for a programmer to determine how setting a method or property may affect other properties and methods.

Syntax:

setCascade(boolean);
boolean = getCascade();

where:

boolean

Can be one of the following:

true enables cascade mode. The normal relationship between properties and methods is observed. This value is the default.

false disables cascade mode. Setting graph characteristics with a method or property will not affect settings by other properties and methods. When Cascade is set to false, properties or methods will never call other properties or methods.

Example:

With Cascade(true), setBorderColor() will change the border color of series 3 and override the transparent setting.

setDepthAngle(0);
setDepthRadius(0);
   setCascade(true);
setTransparentBorderColor(getSeries(3),true);
setBorderColor(getSeries(3),new Color(255,0,0));

bar graph

With Cascade(false), setBorderColor() will not change the border color of series 3 because the border has been set to transparent.

setDepthAngle(0);
setDepthRadius(0);
   setCascade(false);
setTransparentBorderColor(getSeries(3),true);
setBorderColor(getSeries(3),new Color(255,0,0));

bar graph


WebFOCUS