TextStyleOZ: IScene3DTextStyle;
The TextStyleOZ property sets style for texts along the OZ axis.
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.TextStyleOZ.Color := New GxColor.CreateARGB(255,0,0,255);
End Sub Chart3D;
Executing this example changes the color of texts along the OZ axis to blue.
See also: