Constructs a grouped bar chart using supplied x and y data.

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

Syntax

C#
public Bar(
	AxisXY axis,
	double[][] y
)
Visual Basic (Declaration)
Public Sub New ( _
	axis As AxisXY, _
	y As Double()() _
)
Visual C++
public:
Bar(
	AxisXY^ axis, 
	array<array<double>^>^ y
)

Parameters

axis
Type: Imsl.Chart2D..::.AxisXY
A AxisXY which is the parent of this node.
y
Type: array< array< System..::.Double >[]()[] >[]()[]
A double[] which contains the y data for the grouped bar chart. The first index refers to the group and the second refers to the x position.

See Also