BasePlot Property

Measurement Studio User Interface

BasePlot Property

Syntax

Set CWPlot.BasePlot

Data Type

CWPlot

Purpose

Specifies a plot to use for Y values when either the FillToBase or LineToBase property is enabled.

Remarks

Points in the plot are paired with points in the base plot. Filling or drawing lines between plots works best when the X coordinates for each pair are the same.

Example

'Fills the space between the first and second plot on the graph with red
CWGraph1.Plots.Item(1).FillToBase = True
Set CWGraph1.Plots.Item(1).BasePlot = CWGraph1.Plots.Item(2)
CWGraph1.Plots.Item(1).FillColor = vbRed

See Also

BaseValue

FillToBase

LineToBase