ZoomPercentage

This property specifies the percentage or amount of data zooming that will done when the doZoomIn() and/or doZoomOut() methods are used. The ZoomDirection property specifies the direction (X-axis, Y-axis, or both) in which data zooming is performed.

Syntax:

setZoomPercentage(value);
value = getZoomPercentage();

where:

value

Is any real value. This value is a Java double-precision number. 50.0 is the default value.

Example:

setGraphType(61);  setZoomPercentage(10.0);
doZoomIn();

scatter graph

clearZoomList();  setZoomPercentage(20.0);
doZoomIn();

scatter graph

Note: This property is not currently supported in 3D graph types.

See ZoomDirection.


WebFOCUS