ChartArrowLine constructor that allows for a line color and width to be specified.

Namespace:  RightEdge.Common.ChartObjects
Assembly:  Common (in Common.dll) Version: 2010.1.0.0 (2010.1.0.0)

Syntax

C#
public ChartArrowLine(
	ChartPoint startPoint,
	ChartPoint endPoint,
	Color lineColor,
	int width
)
Visual Basic (Declaration)
Public Sub New ( _
	startPoint As ChartPoint, _
	endPoint As ChartPoint, _
	lineColor As Color, _
	width As Integer _
)
Visual C++
public:
ChartArrowLine(
	ChartPoint startPoint, 
	ChartPoint endPoint, 
	Color lineColor, 
	int width
)

Parameters

startPoint
Type: RightEdge.Common..::.ChartPoint
A non-empty, valid ChartPoint object that represents the start point of the arrow line.
endPoint
Type: RightEdge.Common..::.ChartPoint
A non-empty, valid ChartPoint object that represents the end point of the arrow line.
lineColor
Type: System.Drawing..::.Color
Color of the line.
width
Type: System..::.Int32
Width of the line.

See Also