Constructs a box plot chart node with specified x values.

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

Syntax

C#
public BoxPlot(
	AxisXY axis,
	double[] x,
	BoxPlot..::.Statistics[] statistics
)
Visual Basic (Declaration)
Public Sub New ( _
	axis As AxisXY, _
	x As Double(), _
	statistics As BoxPlot..::.Statistics() _
)
Visual C++
public:
BoxPlot(
	AxisXY^ axis, 
	array<double>^ x, 
	array<BoxPlot..::.Statistics^>^ statistics
)

Parameters

axis
Type: Imsl.Chart2D..::.AxisXY
An AxisXY which is the parent of this node.
x
Type: array< System..::.Double >[]()[]
a double[] which contains the x values.
statistics
Type: array< Imsl.Chart2D..::.BoxPlot..::.Statistics >[]()[]
A BoxPlot.Statistics[] containing the statistics for each element in x.

Remarks

The number of BoxPlot.Statistics[] must equal x.Length.

See Also