AddPlot Method (deprecated)

The AddPlot method is deprecated. Use AutoMathPlot object instead.

The AddPlot method adds a plot to the summation plot (must be a line or function plot).

Syntax

object.AddPlot( plot )

Parameter Type Description
plot object required, plot object to be added to plot

 

Example

This example shows how to add a curve to a graph and to the summation plot.

'Add a plot to the graph

Set LinePlot3 = Graph.AddLinePlot("C:\Program Files\Golden Software\Grapher \Samples\bar chart orientations.dat",1,4)

'Add a plot to the summation plot

SummationPlot.AddPlot (LinePlot3)

 

Used by: AutoSummationPlot object