MAIDR Documentation - v4.4.0
    Preparing search index...

    Interface ChartJsParsedValue

    What Chart.js parsed one dataset value into.

    Every field is optional because the controllers disagree about which they produce: a plain bar parses to {x, y}, while the boxplot plugin adds the five-number summary and a violin adds coords on top of it.

    min/max are the data extremes and whiskerMin/whiskerMax the ends the chart draws its whiskers to; on a sample with an outlier the two differ, and it is the whiskers a box plot shows (#1049).

    interface ChartJsParsedValue {
        x?: number;
        y?: number;
        min?: number;
        max?: number;
        q1?: number;
        median?: number;
        q3?: number;
        mean?: number;
        whiskerMin?: number;
        whiskerMax?: number;
        outliers?: number[];
        items?: number[];
        coords?: ChartJsKdeCoord[];
    }
    Index

    Properties

    x?: number
    y?: number
    min?: number
    max?: number
    q1?: number
    median?: number
    q3?: number
    mean?: number
    whiskerMin?: number
    whiskerMax?: number
    outliers?: number[]
    items?: number[]
    coords?: ChartJsKdeCoord[]

    A violin's density curve; absent on a boxplot.