AddBubblePlot Method
The AddBubblePlot method adds a 2D bubble plot to an existing 2D graph, equivalent to Graph | Add to Graph | Plot. Returns an AutoBubblePlot object.
Syntax
object.AddBubblePlot( worksheet, xCol, yCol, zCol, xAxis, yAxis, id )
Parameter | Type | Description |
worksheet | String | required, full path and file name of the data |
xCol | Variant | optional, default = 1 (column A) |
yCol | Variant | optional, default = 2 (column B) |
zCol | Variant | optional, default = 3 (column C) |
id | Variant | optional, plot name |
Remarks
2D graphs can only be added to other 2D graphs.
Example
This example shows how to add a 2D bubble plot.
Graph1.AddBubblePlot(GrapherApp.Path + "\samples\bar chart orientations.dat")
Used by: AutoGraph object