Skip to content

@shbernal/ts-pptx


@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?

optional meanLine?: boolean

Defined in: src/types/chart.ts:633

Draw a line connecting the mean of each box across categories. Default false.


meanMarker?

optional meanMarker?: boolean

Defined in: src/types/chart.ts:635

Mark the mean of each box with a marker. Default true.


nonoutliers?

optional nonoutliers?: boolean

Defined in: src/types/chart.ts:639

Plot every non-outlier point alongside the box, not just the box itself. Default false.


outliers?

optional outliers?: boolean

Defined in: src/types/chart.ts:637

Plot outlier points (values beyond the whiskers) individually. Default true.


quartileMethod?

optional quartileMethod?: "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'.