ChartLabel default constructor.

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

Syntax

C#
public ChartLabel(
	ChartPoint point,
	string text,
	Color textColor,
	Color backgroundColor
)
Visual Basic (Declaration)
Public Sub New ( _
	point As ChartPoint, _
	text As String, _
	textColor As Color, _
	backgroundColor As Color _
)
Visual C++
public:
ChartLabel(
	ChartPoint point, 
	String^ text, 
	Color textColor, 
	Color backgroundColor
)

Parameters

point
Type: RightEdge.Common..::.ChartPoint
A non-empty, valid ChartPoint object that represents the start of the label.
text
Type: System..::.String
String of text to display in the label.
textColor
Type: System.Drawing..::.Color
Sets the color of the label.
backgroundColor
Type: System.Drawing..::.Color
Sets the background color of the label text.

See Also