CimAxis.Title (property)

Gets and sets the axis title.
Syntax: Set CimTitle = object.Title
object.Title = CimTitle
Description: CimAxis.Title gives you access to the axis's title object. The axis's title object is the textual heading that labels the axis visually. Its location depends on the kind of axis and the axis orientation:

On an X axis with top orientation, the title is centered horizontally accross the top of the axis.

On an X axis with top orientation, the title is centered horizontally accross the top of the axis.

On a Y axis with left orientation, the title is centered vertically accross the left side of the axis. Its text is also rotated (or angled) 90 degrees counter-clockwise.

On a Y axis with right orientation, the title is centered vertically accross the right of the axis. Its text is also rotated (or angled) 90 degrees counter-clockwise.

The value of this property defaults to X Axis on an X axis or Y Axis on a Y axis. It also defaults to using the ambient font.

Example

The following CimView script excerpt changes the title on the first X axis:
cimOleObj.X(0).Title.Value ="Temperature"