AddXYZVectorPlotGraph Method
The AddXYZVectorPlotGraph method creates a new 3D XYZ vector plot. Returns an AutoGraph object.
Syntax
object.AddXYZPlotGraph( worksheet, xCol, yCol, zCol, x2Col, y2Col, z2Col, Type, id )
| Parameter | Type | Description |
| worksheet | String | required, data's full path and file name |
| xCol | Variant | optional, default = 1 (column A) |
| yCol | Variant | optional, default = 2 (column B) |
| zCol | Variant | optional, default = 3 (column C) |
| x2Col | Variant | optional, X2 or dx column, default = 4 (column D) |
| y2Col | Variant | optional, Y2 or dy column, default = 5 (column E) |
| z2Col | Variant | optional, Z2 or dz column, default = 6 (column F) |
| type | Variant | optional, grfVectorType, default = grfVectorXYZXYZ |
| id | Variant | optional, graph name |
Example
This example shows how to create a 3D XYZ vector plot graph.
Shapes.AddXYZVectorPlotGraph(GrapherApp.Path + "\samples\box plot.dat")
Used by: AutoShapes collection