axis.noNull

For Date/Time and Categorical axes, set to true to suppress the display of null dimension values. When false (default), null values are represented without labels. The xAxis, yAxis, and y2Axis properties can be used as a shortcut.

Type

Boolean

Example

Chart1.axis['Year(Date)'].noNull = true;

Either syntax below can be used in component script:

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

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