AddBetweenFill Method
The AddBetweenFill method is used to add a between fill (a fill between two plots) to the graph. The plots can two line/scatter plots, step plots, function plots, fit plots, or summation plots on 2D graphs.
Syntax
object.AddBetweenFill( plot1, plot2 )
Parameter | Type | Description |
plot1 | Object | required, first plot object to fill between |
plot2 | Object | required, second plot object to fill between |
Remarks
This method has no effect on 3D plots.
Example
This example shows how to add a between fill.
Graph.AddBetweenFill(LinePlot1,LinePlot2)
Used by: AutoGraph object