Add a "High-Low" bar type curve (HiLowBarItem object) to the plot with
the given data points (double arrays) and properties.
This is simplified way to add curves without knowledge of the
CurveList class. An alternative is to use
the CurveList Add() method.
- label (String)
- The text label (string) for the curve that will be used as a Legend entry.
- x (array<Double>[]())
- An array of double precision X values (the independent values) that define the curve.
- y (array<Double>[]())
- An array of double precision Y values (the dependent values) that define the curve.
- baseVal (array<Double>[]())
- An array of double precision values that define the base value (the bottom) of the bars for this curve.
- color (Color)
- The color to used for the bars
A HiLowBarItem class for the newly created bar curve.
This can then be used to access all of the curve properties that
are not defined as arguments to the
AddHiLowBar(String, array<Double>[](), array<Double>[](), array<Double>[](), Color) method.
