axis.lineVisible

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

Type

Boolean

Example

Chart1.axis['Company'].lineVisible = false;

dimensionLineVisible

Either syntax below can be used in component script:

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

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