|
|
|
|
|
<Chart>.Scatter3DAddData (Function) In french: <Graphe>.Nuage3DAjouteDonnée Adds a new point to display in a 3D Scatter chart. // Adds a point with the color and shape of series CHART_NameScatter3D.Scatter3DAddData(1, 10, 10, 10)
Syntax
<Chart control>.Scatter3DAddData(<Series number> , <X value> , <Y value> , <Z value> [, <Color> [, <Type>]])
<Chart control>: Control name Name of the Chart control to use (in the window editor). <Series number>: Integer Number of the series into which a value will be added. If the specified series does not exist, the chart designer creates as many series as necessary in order to get a consistent matrix. All the created series are initialized to 0. <X value>: Real Horizontal coordinate (X-coordinate) of the point to add. <Y value>: Real Vertical coordinate (Y-coordinate) of the point to add. <Z value>: Real Coordinate in altitude of the point to add. <Color>: Integer or Integer constant Point color. This color can correspond to:- an RGB color (returned by RGB),
- an HSL color (returned by HSL),
- a preset color.
- the ColorUndefined constant (default) to apply the series color.
<Type>: Optional Integer constant Type of point: | | grPointCircle | Point shaped like a circle. | grPointCross | Point shaped like a cross. | grPointCube | Point shaped like a cube (3D). | grPointDiamond | Point shaped like a diamond. | grPointPyramid | Point shaped like a pyramid (3D). | grPointSphere | Point shaped like a sphere (3D). | grPointSquare | Point shaped like a square. | grPointTriangle | Point shaped like a triangle. |
If this parameter is not specified, the type of point corresponds to the type of point defined for the series. Remarks The point size is based on the minimum size of chart mark.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|