CPlotView:Plotting a Least Squares Fit CPlotView:Remove

CPlotView:GetDescription


The GetDescription method returns the text description associated with a plot series. The series description is simply additional text stored in the plot series but not displayed in the plot window.

Syntax

sText = CPlotView:GetDescription( nSeries* )

Example

The following script returns the text description from plot series 1. Series 1 would be the first (or only) series in the CPlotView window:

 

P = CPlotView:new()

-- create a new CPlotView

 

-- build up the plot series

Printf("%s\n", P:GetDescription(2) )

-- displays the description of series 2

Related Topics

CPlotView, SetDescription, GetCaption