IScene3DCoordinateTextStyles.PrecisionOX

Syntax

PrecisionOX: Integer;

Description

The PrecisionOX property determines precision of values on the OX axis.

Example

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

Sub Chart3D;

Var

S : IScene3D;

Style : IScene3DCoordinateTextStyles;

Begin

Style := s.DisplayedObjects.CoordinatePlanes.TextStyles;

Style.PrecisionOX := 3;

End Sub Chart3D;

Executing the example displays values with three decimal points on the OX axis.

See also:

IScene3DCoordinateTextStyles