AddTernaryBubblePlot Method
The AddTernaryBubblePlot method adds a new ternary bubble plot to an existing ternary diagram, equivalent to Graph | Add to Graph | Plot. Returns an AutoTernaryBubblePlot object.
Syntax
object.AddTernaryPlot( worksheet, xCol, yCol, zCol, sizeCol, 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) |
| sizeCol | Variant | optional, default = 4 (column D) |
| id | Variant | optional, plot name |
Example
This example shows how to add a ternary bubble plot.
Graph3.AddTernaryBubblePlot(GrapherApp.Path + "\samples\ternary bubble.dat",1,2,3,4)
Used by: AutoGraph object