Bar Constructor (AxisXY, Double, Double) |
Constructs a simple bar chart using supplied x and
y data.
Namespace: Imsl.Chart2DAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax public Bar(
AxisXY axis,
double[] x,
double[] y
)
Public Sub New (
axis As AxisXY,
x As Double(),
y As Double()
)
public:
Bar(
AxisXY^ axis,
array<double>^ x,
array<double>^ y
)
new :
axis : AxisXY *
x : float[] *
y : float[] -> Bar
Parameters
- axis
- Type: Imsl.Chart2DAxisXY
A AxisXY which is the parent of this node.
- x
- Type: SystemDouble
A double[] which contains the x data for
the simple bar chart.
- y
- Type: SystemDouble
A double[] which contains the y data for
the simple bar chart.
See Also