shapeLegends.noNull

For Charts with multiple Date/Time or Categorical shape legends, set to true to suppress the display of null dimension values in the legend. When false (default), null values are represented without a label in the legend.

Type

Boolean

Examples

Chart1.shapeLegends['Order Date'].noNull = true;
Chart1.shapeLegends['Product:Name'].noNull = false;

Either syntax below can be used in component script:

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

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