Creates a Text object at the specific x,y location in chart coordinates.

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

Syntax

C#
public Annotation(
	ChartNode parent,
	Text text,
	double x,
	double y
)
Visual Basic (Declaration)
Public Sub New ( _
	parent As ChartNode, _
	text As Text, _
	x As Double, _
	y As Double _
)
Visual C++
public:
Annotation(
	ChartNode^ parent, 
	Text^ text, 
	double x, 
	double y
)

Parameters

parent
Type: Imsl.Chart2D..::.ChartNode
The ChartNode parent of this data node, usually an Axis object.
text
Type: Imsl.Chart2D..::.Text
The Text object to draw.
x
Type: System..::.Double
The x location in user coordinates.
y
Type: System..::.Double
The y location in user coordinates.

See Also