ChartDirector 7.1 (.NET Edition)

ThreeDChart.setWallColor


Usage

[C#]public void setWallColor(int xyColor [, int yzColor [, int zxColor [, int borderColor ]]]);
[VB]Public Sub setWallColor(xyColor As Integer [, yzColor As Integer [, zxColor As Integer [, borderColor As Integer ]]])

Description

Sets the color of the plot region walls.

By default, the plot region walls are light grey (eeeeee) in color, with a grey (888888) border . This method can be used to modify the colors.

Arguments

ArgumentDefaultDescription
xyColor(Mandatory)The color of the xy wall.
yzColor-1The color of the yz wall. -1 means it is the same as xyColor.
zxColor-1The color of the zx wall. -1 means it is the same as xyColor.
borderColor-1The color of the wall border. -1 means to keep the existing value unchanged.

Return Value

None