axis.truncate

When true (default), abbreviates or ellipsizes long labels to prevent overlap with other labels (using ellipses “…​” to indicate omitted text). When false, hides long labels to prevent overlap with other labels. The xAxis, yAxis, and y2Axis properties can be used as a shortcut.

Type

Boolean

Example

Chart1.axis['Name'].truncate = false;

lableTruncate

Either syntax below can be used in component script:

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

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