AutoBubblePlot Object
The AutoBubblePlot object contains the 2D bubble plot properties.
Derived from: AutoPlot object (All methods and properties of AutoPlot apply to this object.)
Properties
Methods
Example
The following script demonstrates how the AutoBubblePlot object is used.
Sub Main
'Create GrapherApp as an Object
Dim GrapherApp As Object
'Start GrapherApp
Set GrapherApp = CreateObject("Grapher.Application")
GrapherApp.Visible = True
'Create a new document window
Set Plot = GrapherApp.Documents.Add(grfPlotDoc)
'Create bubble plot graph
Set Graph = Plot.Shapes.AddBubblePlotGraph(GrapherApp.Path + "\Samples\bubble.dat",1,2,3)
‘Set the bubble plot to the BubblePlot1 object
Set BubblePlot1 = Graph.Plots.Item(1)
End Sub