Add3DBubblePlot Method

The Add3DBubblePlot method adds a 3D XYZ bubble plot to an existing 3D graph, equivalent to Graph | Add to Graph | Plot. Returns an Auto3DBubblePlot Object.

Syntax

object.Add3DBubblePlot( worksheet, xCol, yCol, zCol, sizeCol, xAxis, yAxis, zAxis, 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)
sizeCol Variant optional, default = 4 (column D)
id Variant optional, plot name

 

Remarks

3D XYZ graphs can only be added to other 3D XYZ graphs.

Example

This example shows how to add a 3D XYZ bubble plot.

Graph1.AddBubblePlot(GrapherApp.Path + "\samples\bar chart orientations.dat")

 

Used by: AutoGraph object

See Also

Add3DBubblePlotGraph