axis.rotation

Sets the rotation of the dimension or measure axis labels. The xAxis, yAxis, and y2Axis properties can be used as a shortcut.

Type

Number (degrees)

Example

Chart1.axis['Company'].rotation = 30;

dimensionRotation

Either syntax below can be used in component script:

axis['...'].rotation             // unqualified
Chart1.axis['...'].rotation      // qualified

For onInit/onRefresh scripts, and for component and property scripts on other components, the second (qualified) form is required.