IScene3DDisplayedObjects.CoordinatePlane

Syntax

CoordinatePlanes: IScene3DCoordinatePlanes;

Description

The CoordinatePlanes property determines parameters of coordinate planes. Use the IScene3DCoordinatePlanes interface to work with available parameters.

Planes are displayed by default.

Example

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

Sub Chart3D;

Var

S : IScene3D;

Begin

S.BeginUpdate;

S.DisplayedObjects.CoordinatePlanes.TextStyles.TextStyleOX.Color := New GxColor.CreateARGB(255,0,0,255);

S.EndUpdate;

End Sub Chart3D;

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

See also:

IScene3DDisplayedObjects