Plot.SetTitleText

Prototypes

void SetTitleText( String sTitle <, boolean bShow> )

Parameters

String sTitle
The new text for the plot's title.

boolean bShow
If bShow is true, the title is displayed. If bShow is false, the title is hidden. If the bShow parameter is not specified, the visibility of the title is not changed.

Remarks

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

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.SetTitleText( "Student Height", true );
See Also

Plot.ShowTitle