SeriesDefaultBorderColor

This property sets the default color to use for riser edges when the UseSeriesBorderDefaults property is enabled. This property is only used when UseSeriesBorderDefaults is enabled. When UseSeriesBorderDefaults is disabled, this property is ignored.

Syntax:

setSeriesDefaultBorderColor(new Color(newValue));
newValue = setSeriesDefaultBorderColor();

where:

newValue

Is the default color value in one of the following formats:

r, g, b is the desired intensity of red, green, and blue, respectively. The values are on a scale of 0 to 255, where 0 is the least intense and 255 is the most intense.

#hexcolor is the hexadecimal color code, preceded by a pound sign (#).

Example:

setUseSeriesBorderDefaults(true);  setSeriesDefaultBorderColor(new Color(128,255,255));

or, using a hexadecimal color code:

setUseSeriesBorderDefaults(true);  setSeriesDefaultBorderColor(new Color(#80FFFF));

3D bar graph

setUseSeriesBorderDefaults(true);  setSeriesDefaultBorderColor(new Color(192,192,192));

or, using a hexadecimal color code:

setUseSeriesBorderDefaults(true);  setSeriesDefaultBorderColor(new Color(#C0C0C0));

3D bar graph

See SeriesDefaultTransparentBorderColor, UseSeriesBorderDefaults.


WebFOCUS