AddContourGridMap Method
The AddContourGridMap method adds a 3D contour grid map to an existing 3D graph, equivaÂlent to Graph | Add to Graph | Plot. Returns an AutoContourGridMap object.
Syntax
object.AddContourGridMap( gridfile, xAxis, yAxis, zAxis, id )
| Parameter | Type | Description |
| gridfile | String | required, data's full path and file name |
| bXZ | Variant | >optional, default = false, true for XZ Map |
| xAxis | Variant | optional, ID of X axis to use for plot (default = uses first X axis in graph) |
| yAxis | Variant | optional, ID of Y axis to use for plot (default = uses first Y axis in graph) |
| zAxis | Variant | optional, ID of Z axis to use for plot (default = uses first Z axis in graph) |
| id | Variant | optional, plot name |
Remarks
3D graphs can only be added to other 3D graphs.
Example
This example shows how to add a contour grid map.
Graph.AddContourGridMap(GrapherApp.Path + "\samples\helens2.grd")
Used by: AutoGraph object