[C#] | public BoxWhiskerLayer addBoxLayer(double[] boxTop, double[] boxBottom [, int color [, string name ]]); |
[VB] | Public Function addBoxLayer(boxTop As Double(), boxBottom As Double() [, color As Integer [, name As String ]]) As BoxWhiskerLayer |
ChartDirector 7.1 (.NET Edition)
XYChart.
Usage
[C#] | public BoxWhiskerLayer addBoxLayer(double[] boxTop, double[] boxBottom [, int color [, string name ]]); |
[VB] | Public Function addBoxLayer(boxTop As Double(), boxBottom As Double() [, color As Integer [, name As String ]]) As BoxWhiskerLayer |
Description
Arguments
Argument | Default | Description |
---|---|---|
boxTop | (Mandatory) | An array of numbers representing the top edge of the box. |
boxBottom | (Mandatory) | An array of numbers representing the bottom edge of the box. |
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. |
Return Value