SPCChartBeforeDrawEventData: ChartBeforeDrawEventData & {
    data?: SPCDataDetail[];
    stats?: StatsGridRetrievalData["spc"];
}

Type declaration

  • Optionaldata?: SPCDataDetail[]

    An array of data details. Each item in this array corresponds to one graph on the chart.

     

    This array will only be populated by calling this chart's .updateProperties({ includeData: true })

     

    The Split By property of this chart determines how data is split into groups. Each unique combination of values for all selected Split By fields will generate one item in this array.

  • Optionalstats?: StatsGridRetrievalData["spc"]

    An array of statistic details. Each item in this array corresponds to one graph on the chart.

     

    Which statistics are calculated is determined by calling this chart's .updateProperties({ includeStats: [...] })

     

    The Split By property of this chart determines how data is split into groups when calculating statistics. Each unique combination of values for all selected Split By fields will generate one item in this array.