SetBetweenFillPlotTwo Method

The SetBetweenFillPlotTwo method assigns the second plot to be used in a between fill.

Syntax

object.SecondBetweenFillPlotTwo( index, plot )

 

 
ParameterTypeDescription
Indexshortrequired, index of between fill
Plotobjectrequired, plot object to be assigned to fill

 

Example

The following example defines LinePlot2 and sets it to the between fill plot two.

'Define LinePlot2

Set LinePlot2 = Graph1.Plots.Item(1)

 

'Specify LinePlot2 object as plot two

Graph1.SetBetweenFillPlotTwo(1,LinePlot2)

 

Used by: AutoGraph object