Auto3DXYZBarChart Object

The Auto3DXYZBarChart object controls 3D XYZ bar chart settings.

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

Properties

AngledLabels

BarOverlap

BarSlices

BarStacks

BarStyle

BarWidth

BaseMode

BaseValue

EnableSubBaseFill

Fill

Labels

Line

Orientation

RepeatColors

Stacked

SubBaseFill

UseColorTable

XCol

YCol

ZCol

Methods

LoadColorTable

Example

The following script demonstrates how the Auto3DXYZBarChart 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

 

'Declares Plot as an object

Dim Plot As Object

 

'Creates a new document window named “Plot”

Set Plot = GrapherApp.Documents.Add(grfPlotDoc)

 

'Add a new 3D XYZ bar chart

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

End Sub