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:

true enables smoother drawing of graph objects.

false disables smoother drawing of graph objects. This value is the default.

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