|
|
|
|
grScatter3DAddData (Function) In french: grNuage3DAjouteDonnée Adds a new point to display in a 3D Scatter chart. // Adds a point with the color and shape of series grScatter3DAddData(CHART_Name3DScatter, 1, 10, 10, 10)
Syntax
grScatter3DAddData(<Chart name> , <Series number> , <X value> , <Y value> , <Z value> [, <Color> [, <Type>]])
<Chart name>: Control name or character string Name of the chart to be used. This name can correspond to:- the chart name defined through programming with grCreate.
- the name of the Chart control (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…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|