PrimitiveAntialiasing

This property enables or disables smoother drawing of graph objects using Java 2D. Your development environment must include JRE 1.2 (or later) in order to use this property.

Syntax:

setPrimitiveAntialiasing(boolean);
boolean = getPrimitiveAntialiasing();

where:

boolean

Can be one of the following:

Example:

setGraphType(1)true;
setAutoshading(false);  setPrimitiveAntialiasing(true);

3D pyramid graph

setGraphType(1)true;
setAutoshading(false);  setPrimitiveAntialiasing(false);

3D pyramid graph

See TextAntialiasing for information about improving the quality of text objects.


WebFOCUS