CimGraphControl.X (property)

Gets and sets a collection of X axes.
Syntax: Set CimAxes = object.X
object.X = CimAxes
Description: CimGraphControl.X is a collection of all the X axes on the control.

The value of this property defaults to having one X axis.

Example

The following CimView script excerpt adds a new X axis to the control and changes its title:
Dim XAxis As CimAxis
Set XAxis = cimOleObj.X.Add("X Axis")
XAxis.Title = "X Axis"