IScene3DCoordinateTextStyles.PrecisionOY

Syntax

PrecisionOY: Integer;

Description

The PrecisionOY property determines precision of values on the OY 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.PrecisionOY := 3;
End Sub Chart3D;

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

See also:

IScene3DCoordinateTextStyles