ParetoChart Constructor (AxisXY, String, Int32) |
Constructs a Pareto chart.
Namespace: Imsl.Chart2D.QCAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax public ParetoChart(
AxisXY axisBar,
string[] labels,
int[] numberDefects
)
Public Sub New (
axisBar As AxisXY,
labels As String(),
numberDefects As Integer()
)
public:
ParetoChart(
AxisXY^ axisBar,
array<String^>^ labels,
array<int>^ numberDefects
)
new :
axisBar : AxisXY *
labels : string[] *
numberDefects : int[] -> ParetoChart
Parameters
- axisBar
- Type: Imsl.Chart2DAxisXY
The AxisXY parent of this node.
Its formatting is changed to integer formatting.
- labels
- Type: SystemString
A String array which contains the labels for the data values.
- numberDefects
- Type: SystemInt32
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.
Exceptions Exception | Condition |
---|
ArgumentException | is thrown if the length
of the labels and numberDefects arrays are unequal or
if any element of numberDefects is negative.
|
See Also