Add an error bar set (ErrorBarItem object) to the plot with
the given data points (IPointList) and properties.
This is simplified way to add curves without knowledge of the
CurveList class. An alternative is to use
the CurveList Add() method.
| C# | Visual Basic | Visual C++ |
public ErrorBarItem AddErrorBar( string label, IPointList points, Color color )
Public Function AddErrorBar ( _ label As String, _ points As IPointList, _ color As Color _ ) As ErrorBarItem
public: ErrorBarItem^ AddErrorBar ( String^ label, IPointList^ points, Color color )
- label (String)
- The text label (string) for the curve that will be used as a Legend entry.
- points (IPointList)
- A IPointList of double precision value pairs that define the X and Y values for this curve
- color (Color)
- The color to used for the curve line, symbols, etc.
An ErrorBarItem class for the newly created curve.
This can then be used to access all of the curve properties that
are not defined as arguments to the
AddErrorBar(String, IPointList, Color) method.
