DataTextTemplateBubble

This is a global string property that can be used to define a macro-based format for data text labels in a bubble graph. This property can be used to customize the data text labels and insert macros for the actual data any place in a defined string. The DataTextDisplay property must be set to true in order for the data text labels to appear in the graph.

Syntax:

setDataTextTemplateBubble("string");
string = getDataTextTemplateBubble();

where:

string

Can be any printable characters which may or may not include this macro:

X_VALUE_MACRO = "[X]";
Y_VALUE_MACRO = "[Y]";
X_Y_VALUE_MACRO = "[X], [Y]";
LABEL_SERIES_MACRO = "[SL]";
SIZE_VALUE_MACRO = "[SIZE]"

[SIZE] is the default value.

Example:

setDataTextDisplay(true);
setGraphType(89);  setDataTextTemplateBubble("Temp=[SIZE]");

bubble graph

setDataTextTemplateBubble("Size=[SIZE]");

bubble graph

See DataTextDisplay.


WebFOCUS