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

ApplyColorColToSymLine

BubbleLegend

BubbleMax

BubbleMin

ColorCol

ColorScale

Fill

Labels

Line

RadiusRange

RadiusRangeMax

RadiusRangeMin

RepeatColors

ShowBubbleLegend

ShowColorScale

Symbol

SymbolAngle

SymbolCol

SymbolFillColorCol

SymbolFormat

SymbolFreq

UseColorTable

UseSymbols

XCol

YCol

ZCol

Methods

LoadColorTable

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