AddTernaryBubbleGraph Method
The AddTernaryBubbleGraph method creates a 2D ternary bubble diagram. Returns an AutoGraph object.
Syntax
object.AddTernaryBubbleGraph( 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, graph name |
Example
This example shows how to create a ternary bubble diagram.
Shapes.AddTernaryBubbleGraph(GrapherApp.Path + "\samples\ternary bubble.dat",1,2,3,4)
Used by: AutoShapes collection