Draws an error bar.

Namespace: Imsl.Chart2D
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.0.0

Syntax

C#
public override void DrawErrorBar(
	int x0,
	int y0,
	int x1,
	int y1,
	int flag
)
Visual Basic (Declaration)
Public Overrides Sub DrawErrorBar ( _
	x0 As Integer, _
	y0 As Integer, _
	x1 As Integer, _
	y1 As Integer, _
	flag As Integer _
)
Visual C++
public:
virtual void DrawErrorBar(
	int x0, 
	int y0, 
	int x1, 
	int y1, 
	int flag
) override

Parameters

x0
Type: System..::.Int32
An int which specifies the x-coordinate of the beginning reference point.
y0
Type: System..::.Int32
An int which specifies the y-coordinate of the beginning reference point.
x1
Type: System..::.Int32
An int which specifies the x-coordinate of the ending reference point.
y1
Type: System..::.Int32
An int which specifies the y-coordinate of the ending reference point.
flag
Type: System..::.Int32
An int that indicates which caps to draw.

Remarks

Legal values: 0=none, 1=bottom, 2=top, 3=both

See Also