AutoTernaryBubblePlot Object
The AutoTernaryBubblePlot object containsternary bubble plot options.
Derived from: AutoTernaryPlot object (All methods and properties of AutoTernaryPlot apply to this object.)
Properties
Example
This example shows how to use the AutoTernaryBubblePlot object.
'Declares GrapherApp as an object
Dim GrapherApp As Object
'Creates an instance of the Grapher Application
'object and assigns it to the variable named "GrapherApp"
Set GrapherApp = CreateObject("Grapher.Application")
'Makes Grapher visible
GrapherApp.Visible = True
'Declares Plot as an object
Dim Plot As Object
'Creates a plot document in Grapher and
'assigns it to the variable named "Plot"
Set Plot = GrapherApp.Documents.Add(grfPlotDoc)
'Declares Graph1 as an Object
Dim Graph1 As Object
'Creates a ternary bubble plot graph and assigns it
'to the variable named "Graph1"
Set Graph1 = Plot.Shapes.AddTernaryBubbleGraph(GrapherApp.Path+"\Samples\ternary bubble.dat",1,2,3,4)
'Declares TernaryBubble as Object
Dim TernaryBubble as Object
'Assigns the plot toe variable named "TernaryBubble"
Set TernaryBubble = Graph1.Plots(1)
End Sub