Creates a string 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,
	string s,
	double x,
	double y
)
Visual Basic (Declaration)
Public Sub New ( _
	parent As ChartNode, _
	s As String, _
	x As Double, _
	y As Double _
)
Visual C++
public:
Annotation(
	ChartNode^ parent, 
	String^ s, 
	double x, 
	double y
)

Parameters

parent
Type: Imsl.Chart2D..::.ChartNode
The ChartNode parent of this data node, usually an Axis object.
s
Type: System..::.String
The string 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