Appearance
@shbernal/ts-pptx / index / ChartExStatistics
Interface: ChartExStatistics
Defined in: src/types/chart.ts:626
Statistics configuration for a boxWhisker (box-and-whisker) chart. Each value series is summarized into a box (quartiles + median) with whiskers; these flags mirror the toggles PowerPoint exposes in the Format Data Series pane. All fields are optional and default to PowerPoint's own defaults (inclusive of the outlier points and the mean marker).
Properties
meanLine?
optionalmeanLine?:boolean
Defined in: src/types/chart.ts:633
Draw a line connecting the mean of each box across categories. Default false.
meanMarker?
optionalmeanMarker?:boolean
Defined in: src/types/chart.ts:635
Mark the mean of each box with a marker. Default true.
nonoutliers?
optionalnonoutliers?:boolean
Defined in: src/types/chart.ts:639
Plot every non-outlier point alongside the box, not just the box itself. Default false.
outliers?
optionaloutliers?:boolean
Defined in: src/types/chart.ts:637
Plot outlier points (values beyond the whiskers) individually. Default true.
quartileMethod?
optionalquartileMethod?:"exclusive"|"inclusive"
Defined in: src/types/chart.ts:631
How the first/third quartiles are computed: 'exclusive' (PowerPoint's default — the median is excluded when splitting the halves) or 'inclusive'.