CaptionNormal Property

3D Graph Control

CaptionNormal Property

Syntax

CWAxis3D.CaptionNormal

Data Type

Boolean

Purpose

Draws the axis caption at the normal 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).CaptionNormal = True

See Also

Caption

CaptionColor

CaptionFont

CaptionOpposite