EBFill Property
The EBFill property returns an AutoFill object for the plot error bars. This is a read-only property.
Syntax
object.EBFill
object.EBFill =EBFill
Example
This example shows how to reference the AutoFill object for 3D error bars.
'Creates a New 3D graph And assigns it To the variable Name "Graph"
Set Graph = Plot.Shapes.Add3DLinePlotGraph(GrapherApp.Path + "\Samples\bar chart orientations.dat")
'Sets the 3D plot to LinePlot
Set LinePlot = Graph.Plots.Item(1)
'Reference the error bars fill for the 3D plot
Set ErrorBarFill = LinePlot.EBFill
Used by: Auto3DBarChart object, Auto3DLinePlot object