ZedGraph LogoZedGraph Class Library Documentation
AddJapaneseCandleStick Method (label, points)
NamespacesZedGraphGraphPaneAddJapaneseCandleStick(String, IPointList)
Add a japanesecandlestick graph (JapaneseCandleStickItem object) to the plot with the given data points (IPointList) and properties.
Declaration Syntax
C#Visual BasicVisual C++
public JapaneseCandleStickItem AddJapaneseCandleStick(
	string label,
	IPointList points
)
Public Function AddJapaneseCandleStick ( _
	label As String, _
	points As IPointList _
) As JapaneseCandleStickItem
public:
JapaneseCandleStickItem^ AddJapaneseCandleStick (
	String^ label, 
	IPointList^ points
)
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 pairs that define the X and Y values for this curve
Return Value
A CurveItem 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 AddJapaneseCandleStick(String, IPointList) method.
Remarks
This is simplified way to add curves without knowledge of the CurveList class. An alternative is to use the CurveList Add() method. Note that the IPointList should contain StockPt objects instead of PointPair objects in order to contain all the data values required for this curve type.

Assembly: ZedGraph (Module: ZedGraph) Version: 5.1.0.621