HistogramDetail: BaseSPCDetail & {
    barCounts: number[];
    barWidth: number;
    curve?: CurvePoint[];
    distribution: SPCDistributionType;
    end: number;
    start: number;
}

Type declaration

  • barCounts: number[]

    Array of counts for each bar in the graph, starting from .start and ending with .end

  • barWidth: number

    The width of each bar in the graph

  • Optionalcurve?: CurvePoint[]

    Points describing the curve fitted to the histogram. See .distribution for the distribution of this curve

  • distribution: SPCDistributionType

    Calculated distribution of the data

  • end: number

    Greatest X value of the graph

  • start: number

    Lowest X value of the graph