[C#] | public AreaLayer addAreaLayer(double[] data [, int color [, string name [, int depth ]]]); |
[VB] | Public Function addAreaLayer(data As Double() [, color As Integer [, name As String [, depth As Integer ]]]) As AreaLayer |
ChartDirector 7.1 (.NET Edition)
XYChart.
Usage
[C#] | public AreaLayer addAreaLayer(double[] data [, int color [, string name [, int depth ]]]); |
[VB] | Public Function addAreaLayer(data As Double() [, color As Integer [, name As String [, depth As Integer ]]]) As AreaLayer |
Description
Arguments
Argument | Default | Description |
---|---|---|
data | (Mandatory) | An array of numbers representing the data set. |
color | -1 | The color to draw the area. -1 means that the color is automatically selected from the color palette. |
name | "" | The name of the data set. The name will be used in the legend box, if one is available. An empty string means the data set has no name. |
depth | 0 | The 3D depth of the area layer. |
Return Value