[C#] | public void addSurfaceLine2(double[] x, double[] y, int color [, int lineWidth [, int side ]]); |
[VB] | Public Sub addSurfaceLine2(x As Double(), y As Double(), color As Integer [, lineWidth As Integer [, side As Integer ]]) |
ChartDirector 7.1 (.NET Edition)
SurfaceChart.
Usage
[C#] | public void addSurfaceLine2(double[] x, double[] y, int color [, int lineWidth [, int side ]]); |
[VB] | Public Sub addSurfaceLine2(x As Double(), y As Double(), color As Integer [, lineWidth As Integer [, side As Integer ]]) |
Description
Arguments
Argument | Default | Description |
---|---|---|
x | (Mandatory) | An array of containing the x coordinates of the data points that define the line. |
y | (Mandatory) | An array of containing the y coordinates of the data points that define the line. |
color | (Mandatory) | The color of the line. |
lineWidth | 1 | The line width (thickness). |
side | 0 | A value of 1 means the line is drawn on the front side of the surface. A value of -1 means the line is drawn on the back side of the surface. The default value of 0 means the line is drawn on both sides of the surface. |
Return Value