IScene3DCoordinateTextStyles.PrecisionOZ

Syntax

PrecisionOZ: Integer;

Description

The PrecisionOZ property determines precision of values on the OZ axis.

Example

This example assumes that there is the S object of the IScene3D type.

Sub Chart3D;

Var

S : IScene3D;

Style : IScene3DCoordinateTextStyles;

Begin

Style := s.DisplayedObjects.CoordinatePlanes.TextStyles;

Style.PrecisionOZ := 3;

End Sub Chart3D;

Executing the example displays values with three decimal digits on the OZ axis.

See also:

IScene3DCoordinateTextStyles