TitleString

This property is used to define the title text that is drawn in a graph when the TitleDisplay property is set to true. When a title string is defined with this property, the TitleDisplay property is automatically set to true.

Syntax:

setTitleString("string");
string = getTitleString();

where:

string

Represents any printable characters. "Chart Title" is the default value.

Example:

setDepthRadius(0);
setAxisAssignment(getSeries(0), 1);
setAxisAssignment(getSeries(1), 2);
setAxisAssignment(getSeries(2), 3);
setAxisAssignment(getSeries(3), 4);
setGraphType(105);  setTitleString("This is a 5Y-Axis Chart");

5Y-Axis graph

See TitleDisplay.


WebFOCUS