CaptionOpposite Property

3D Graph Control

CaptionOpposite Property

Syntax

CWAxis3D.CaptionOpposite

Data Type

Boolean

Purpose

Draws the axis caption at the opposite position when set to True.

Remarks

You can set an axis caption to appear at two different positions. CaptionNormal draws the caption beside the specified axis label. CaptionOpposite draws the caption above the grid that is opposite the labeled axis.

These properties are independent of each other, and you can enable one or both properties for an axis.

Example

'Sets the caption for the first axis
CWGraph3D1.Axes.Item(1).Caption = "Temperature"
CWGraph3D1.Axes.Item(1).CaptionColor = vbBlue
CWGraph3D1.Axes.Item(1).CaptionFont = "Arial"
CWGraph3D1.Axes.Item(1).CaptionOpposite = True

See Also

Caption

CaptionColor

CaptionFont

CaptionNormal