[C#] | public BarLayer addBarLayer3(double[] data [, int[] colors [, string[] names [, int depth ]]]); |
[VB] | Public Function addBarLayer3(data As Double() [, colors As Integer() [, names As String() [, depth As Integer ]]]) As BarLayer |
ChartDirector 7.1 (.NET Edition)
XYChart.
Usage
[C#] | public BarLayer addBarLayer3(double[] data [, int[] colors [, string[] names [, int depth ]]]); |
[VB] | Public Function addBarLayer3(data As Double() [, colors As Integer() [, names As String() [, depth As Integer ]]]) As BarLayer |
Description
Arguments
Argument | Default | Description |
---|---|---|
data | (Mandatory) | An array of numbers representing the data set. |
colors | [Empty_Array] | An array of colors to draw the bars. An empty array means the colors are automatically selected from the palette. |
names | [Empty_Array] | An array of text strings as the names of the bars. The names will be used in the legend box, if one is available. An empty array means that bars have no name. |
depth | 0 | The 3D depth of the bar layer. |
Return Value