ZedGraph LogoZedGraph Class Library Documentation
AddErrorBar Method (label, x, y, baseValue, color)
NamespacesZedGraphGraphPaneAddErrorBar(String, array<Double>[](), array<Double>[](), array<Double>[](), Color)
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.
Declaration Syntax
C#Visual BasicVisual C++
public ErrorBarItem AddErrorBar(
	string label,
	double[] x,
	double[] y,
	double[] baseValue,
	Color color
)
Public Function AddErrorBar ( _
	label As String, _
	x As Double(), _
	y As Double(), _
	baseValue As Double(), _
	color As Color _
) As ErrorBarItem
public:
ErrorBarItem^ AddErrorBar (
	String^ label, 
	array<double>^ x, 
	array<double>^ y, 
	array<double>^ baseValue, 
	Color color
)
Parameters
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.
baseValue (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 curve line, symbols, etc.
Return Value
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.

Assembly: ZedGraph (Module: ZedGraph) Version: 5.1.0.621