Bubble Chart Properties

DataTextTemplateBubble

This is a global string property that can be used to define a MACRO-based format for data text labels in a bubble chart. 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 be displayed in the graph.

DATA TYPE:

string

RANGE:

Any printable characters which may or may not include this macro:

SIZE_VALUE_MACRO = "[SIZE]"

DEFAULT:

[SIZE]

SYNTAX:

void setDataTextTemplateBubble (String newValue);
String getDataTextTemplateBubble();

EXAMPLE:

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

setDataTextTemplateBubble("Size=[SIZE]");

ALSO SEE:

DataTextDisplay

QuadrantLineCountX

This property sets the number of vertical quadrant lines on the X-axis in a bubble chart.

DATA TYPE:

integer

RANGE:

Any integer value

DEFAULT:

1

SYNTAX:

void setQuadrantLineCountX(int newValue);
int getQuadrantLineCountX();

EXAMPLE:

setGraphType(89);
setQuadrantLineCountX(10);

setQuadrantLineCountX(6);

NOTE:

This property is only applicable to bubble charts. It will be ignored if any other chart type is selected.

ALSO SEE:

QuadrantLineCountY

QuadrantLineCountY

This property sets the number of horizontal quadrant lines in a bubble chart.

DATA TYPE:

integer

RANGE:

Any integer value

DEFAULT:

1

SYNTAX:

void setQuadrantLineCountY(int newValue);
int getQuadrantLineCountY();

EXAMPLE:

setGraphType(89);
setQuadrantLineCountY(2);

setQuadrantLineCountY(6);

NOTE:

This property is only applicable to bubble charts. It will be ignored if any other chart type is selected.

ALSO SEE:

QuadrantLineCountX

UseDefaultBubbleMarker

This property controls the use of the default marker (circle) in bubble charts. When enabled (true), markers in a bubble chart can use different marker shapes. When disabled (false), all markers in the chart are circles.

DATA TYPE:

boolean

RANGE:

true / false; true = Draw different shapes for markers, false = Draw all circles for markers in a bubble chart

DEFAULT:

true

SYNTAX:

void setUseDefaultBubbleMarker(boolean newValue);
boolean getUseDefaultBubbleMarker();

EXAMPLE:

setGraphType(89);
setDepthRadius(0);
setUseDefaultBubbleMarker(false);
setMarkerSizeDefault(75);

setGraphType(89);
setDepthRadius(0);
setMarkerSizeDefault(75);
setUseDefaultBubbleMarker(true);