AutoBoxPlot Object

 

The AutoBoxPlot object controls the 2D box-whisker plot properties.

Derived from: AutoPlot object (All methods and properties of AutoPlot apply to this object.)

Properties

AutoFactor

AutoNotchFactor

BoxConfidenLevel

BoxEdgeMethod

BoxLowerPercentile

BoxStdVarCount

BoxUpperPercentile

BoxWidthPercent

CapLength

CategoryCol

CenterLineMethod

ColorCol

ColorMethod

DataInGroups

DisplayNotches

DisplayMax

DisplayMedian

DisplayMin

DisplayOutliers

DisplayQuartiles25

DisplayQuartiles75

DisplaySamples

DisplayWhiskersLower

DisplayWhiskersUpper

Fill

FixedWidth

FirstCol

GroupByCategory

Labels

LastCol

Line

MaxAngle

MaxFont

MaxFormat

MaxHAlign
MaxVAlign

MaxXOffset

MaxYOffset

MedianAngle

MedianFont

MedianFormat

MedianHAlign
MedianVAlign

MedianXOffset

MedianYOffset

MinAngle

MinFont

MinFormat

MinHAlign
MinVAlign

MinXOffset

MinYOffset

Notched

NotchesAngle

NotchesFont

NotchesFormat

NotchesHAlign

NotchesVAlign

NotchesXOffset

NotchesYOffset

NotchFactor

OutlierFactor

Outliers

OutliersAngle

OutliersFont

OutliersFormat

OutliersHAlign
OutliersVAlign

OutliersXOffset

OutliersYOffset

Quartiles25Angle

Quartiles25Font

Quartiles25Format

Quartiles25HAlign
Quartiles25VAlign

Quartiles25XOffset

Quartiles25YOffset

Quartiles75Angle

Quartiles75Font

Quartiles75Format

Quartiles75HAlign
Quartiles75VAlign

Quartiles75XOffset

Quartiles75YOffset

RepeatColors

SamplesAngle

SamplesFont

SamplesFormat

SamplesHAlign
SamplesVAlign

SamplesXOffset

SamplesYOffset

Step

Symbol

UseColorTable

WhiskersLowerAngle

WhiskersLowerFont

WhiskersLowerFormat

WhiskersLowerHAlign

WhiskersLowerPercentile

WhiskersLowerVAlign

WhiskersLowerXOffset

WhiskersLowerYOffset

WhiskersStdVarCount

WhiskersType

WhiskersUpperAngle

WhiskersUpperFont

WhiskersUpperFormat

WhiskersUpperHAlign

WhiskersUpperPercentile

WhiskersUpperVAlign

WhiskersUpperXOffset

WhiskersUpperYOffset

WidthType

Methods

LoadColorTable

Example

The following script demonstrates how the AutoBoxPlot object is used.

Sub Main

 '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

 

 'Creates a plot document in Grapher and assigns

 'it to the variable named "Plot"

  Set Plot = GrapherApp.Documents.Add(grfPlotDoc)

 

 'Declares Graph as an object

  Dim Graph As Object

 

 'Creates a graph and assigns it to the variable

 'named "Graph"

  Set Graph = Plot.Shapes.AddBoxWhiskerGraph(GrapherApp.Path +"\Samples\Box.dat",1,2)

 

'Declare Box1 as an object

Dim Box1 As Object

'Set the box-whisker plot to the Box1 object

Set Box1 = Graph.Plots.Item(1)

End Sub