ChartDirector 6.0 (ColdFusion Edition)

Layer.setBorderColor


Usage

setBorderColor(color [, lightingEffect ])

Description

Sets the default border color and lighting effect for the data representation.

The border color only applies to data representation that has a border, such as a bar, an area or a 3D line. It does not apply to data representation that does not have a border, such as a 2D line. The border color affect all data sets in the layer. To set the border color of one particular data set, use DataSet.setDataColor.

Only certain layer types support lighting effects. They are described in the following table.

Layer TypeLighting Effects
BarLayerSetting lightingEffect to an integer within +/- 4000 will create a bevel border around the bar. The border will appear as raised for a positive number, and depressed for a negative number. The border width will be the magnitude of the number in pixels.

Setting lightingEffect to the return value of ChartDirector.CFChart.flatBorder will result in a flat border of the specified width.

Setting lightingEffect to the return value of ChartDirector.CFChart.glassEffect, ChartDirector.CFChart.softLighting, ChartDirector.CFChart.cylinderEffect or ChartDirector.CFChart.barLighting will enable the respective effect on the bar.
BoxWhiskerLayerSupports the same lighting effect as the BarLayer.
LineLayerFor a 3D line layer, ChartDirector.CFChart.phongLighting can be used to shade the 3D line surface.
SplineLayerSupports the same lighting effect as the LineLayer.

Arguments

ArgumentDefaultDescription
color(Mandatory)The border color.
lightingEffect0Specifies the 3D bevel or border width, flat border effect, or other special shading effects as described in the above table.

Return Value

None