axis.reversed

Reverses the direction of the axis scale so that higher numbers appear at the bottom or left. The xAxis, yAxis, and y2Axis properties can be used as a shortcut.

Type

Boolean

Example

Chart1.axis['Sum(Total)'].reversed = true;

measureReversed

Either syntax below can be used in component script:

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

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