Constructs a Pareto chart showing only the most important bars.

Namespace: Imsl.Chart2D.QC
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.0.0

Syntax

C#
public ParetoChart(
	AxisXY axisBar,
	string[] labels,
	int[] numberDefects,
	double maximumFractionCategoriesPlotted,
	string otherLabel
)
Visual Basic (Declaration)
Public Sub New ( _
	axisBar As AxisXY, _
	labels As String(), _
	numberDefects As Integer(), _
	maximumFractionCategoriesPlotted As Double, _
	otherLabel As String _
)
Visual C++
public:
ParetoChart(
	AxisXY^ axisBar, 
	array<String^>^ labels, 
	array<int>^ numberDefects, 
	double maximumFractionCategoriesPlotted, 
	String^ otherLabel
)

Parameters

axisBar
Type: Imsl.Chart2D..::.AxisXY
The AxisXY parent of this node. Its formatting is changed to integer formatting.
labels
Type: array< System..::.String >[]()[]
A String array which contains the labels for the data values.
numberDefects
Type: array< System..::.Int32 >[]()[]
An int array which contains the number of defects. These data values must be in the same order as the values in labels, but they do not need to be sorted.
maximumFractionCategoriesPlotted
Type: System..::.Double
The maximum cumulative fraction to be represented in separate categories. The remaining categories are consolidated into a single bar. A typical value for this argument is 0.80. This must be at least 0 and no more than 1.
otherLabel
Type: System..::.String
The label of the bar holding total defect count of the categories not plotted.

Exceptions

ExceptionCondition
System..::.ArgumentExceptionis thrown if the length of the labels and numberDefects arrays are unequal or if any element of numberDefects is negative.

See Also