stackMeasures

For a stacked chart (press ‘Select Chart Style’ button Select Chart Style and select the ‘Stack’ option) in single-graph display (press the ‘Switch to Single Graph’ button Switch to Single Graph), this displays multiple measures in “stacked” format rather than side-by-side.

Type

Boolean

Examples

Chart1.stackMeasures = false;

stacked chart showing multiple measures displayed side by side

Chart1.stackMeasures = true;

stacked chart showing multiple measures stacked in single graph

Either syntax below can be used in component script:

stackMeasures          // unqualified
Chart1.stackMeasures   // qualified

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