GaugeRelativeInnerRadius

When the GraphType property is set to 110 (gauge graph), this property defines the inner radius of the gauge bands and labels relative to the gauge's outer background. Smaller numbers place the inner radius closer to the center of the gauge.

Syntax:

setGaugeRelativeInnerRadius(value);
value = getGaugeRelativeInnerRadius()

where:

value

Is a value between 0.0 and 0.9. Is a Java double-precision number. Default value is 0.6.

Example:

setGraphType(110);
setGaugeBackgroundStyle(6);
setDisplay(getFrame(), false);  setGaugeRelativeInnerRadius(0.4);

gauge graph

setGaugeBackgroundStyle(6);
setDisplay(getFrame(), false);  setGaugeRelativeInnerRadius(0.9);

gauge graph


WebFOCUS