ZedGraph LogoZedGraph Class Library Documentation
AddHiLowBar Method (label, points, color)
NamespacesZedGraphGraphPaneAddHiLowBar(String, IPointList, Color)
Add a hi-low bar type curve (CurveItem 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 HiLowBarItem AddHiLowBar(
	string label,
	IPointList points,
	Color color
)
Public Function AddHiLowBar ( _
	label As String, _
	points As IPointList, _
	color As Color _
) As HiLowBarItem
public:
HiLowBarItem^ AddHiLowBar (
	String^ label, 
	IPointList^ points, 
	Color color
)
Parameters
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 Trio's that define the X, Y, and lower dependent values for this curve
color (Color)
The color to used to fill the bars
Return Value
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, IPointList, Color) method.

Assembly: ZedGraph (Module: ZedGraph) Version: 5.1.0.621