Plot.SetFootnoteText

Prototypes

void SetFootnoteText( String sFootnote )

Parameters

String sFootnote
The new text for the plot's footnote.

Remarks

This method sets the text of the plot's footnote.

Example
height = T({ 58 59 60 52 54 56 59 64 57 58 63 62 59 61 59 58 54 58 53 56 });
declare DataObject dobj;
dobj = DataObject.Create( "Student Height", "Height", height );
declare Histogram plot = Histogram.Create( dobj, "Height" );
plot.SetFootnoteText( "April 2000" );
plot.ShowFootnote();
See Also

Plot.ShowFootnote