SetBetweenFillPlotOne Method
The SetBetweenFillPlotOne method assigns the first plot to be used in a between fill.
Syntax
object.SetBetweenFillPlotOne( index, plot )
Parameter | Type | Description |
Index | Short | required, index of between fill |
Plot | Object | required, plot object to be assigned to fill |
Example
The following example defines LinePlot1 and sets it to the between fill plot one.
'Define LinePlot1
Set LinePlot1 = Graph1.Plots.Item(1)
'Specify LinePlot1 object as between fill plot one
Graph1.SetBetweenFillPlotOne(1,LinePlot1)
Used by: AutoGraph object