Auto3DXYZFloatingBarChart Object
The Auto3DXYZFloatingBarChart object controls 3D XYZ floating bar chart settings.
Derived from: Auto3DXYZBarChart object
Properties
Methods
Example
The following script demonstrates how the Auto3DXYZFloatingBarChart 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.Add3DXYZFloatingBarChartGraph(GrapherApp.Path +”\Samples\Floating.dat",2,3,4,4)
End Sub