IScene3DCoordinatePlanes.TextStyles

Syntax

TextStyles: IScene3DCoordinateTextStyles;

Description

The TextStyles property determines parameters of coordinate axis labels. Use the IScene3DCoordinateTextStyles interface to work with available parameters.

Example

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

Sub Chart3D;
Var
    S : IScene3D;
    Plane : IScene3DCoordinatePlanes;
Begin
    Plane := s.DisplayedObjects.CoordinatePlanes;
    Plane.TextStyles.TextStyleOX.Color := New GxColor.CreateARGB(255,0,0,255);
End Sub Chart3D;

Executing the example changes the color of labels along the OX axis to blue.

See also:

IScene3DCoordinatePlanes