ParetoDetailGroup: {
    costPerUnit: number;
    dpm?: number;
    key:
        | number
        | number
        | string
        | boolean
        | Date;
    percentNCUOfSampleSize: number;
    percentOfAllDefects?: number;
    percentOfDefectCost?: number;
    percentOfSampleSize: number;
    percentOfTotalCost?: number;
    ppm?: number;
    sigma: number;
    sumDefectCost: number;
    sumDefects: number;
    sumNCU: number;
}

Type declaration

  • costPerUnit: number

    Bar's average cost per unit

  • Optionaldpm?: number

    Bar's defects per million units

  • key:
        | number
        | number
        | string
        | boolean
        | Date

    Bar's display name, or internal ID of the entity for that bar

  • percentNCUOfSampleSize: number

    Bar's percent of non-conforming units to the total non-conforming units. Used to draw the summary line on a Pareto graph.

  • OptionalpercentOfAllDefects?: number

    Bar's percent of defects to the total sum of defects. Used to draw the summary line on a Pareto graph.

  • OptionalpercentOfDefectCost?: number

    Bar's percent of defect cost to the total defect cost. Used to draw the summary line on a Pareto graph.

  • percentOfSampleSize: number

    Bar's percent of defects to the total sample size. Used to draw the summary line on a Pareto graph.

  • OptionalpercentOfTotalCost?: number

    Bar's percent of defect cost to the total cost of the data set (i.e. if 100% of the sample size were defects). Used to draw the summary line on a Pareto graph.

  • Optionalppm?: number

    Bar's non-conforming units per million

  • sigma: number

    Bar's sigma value

  • sumDefectCost: number

    Bar's total defect cost

  • sumDefects: number

    Bar's total defects

  • sumNCU: number

    Bar's total non-conforming units