AddText

AddText function add textbox to chart.

 public void AddText(
               string ObjectName,
               string Description,
               CoordinateUnits CoordinateUnit,
               dynamic X1,
               double? Y1,
               Color? Foregound = null,
               double? FontSize = null,
               FontWeights? FontWeight = null
               ); 

Parameters

ObjectName string

Name of object.

Description string

Description of object.

CoordinateUnit CoordinateUnits

Coordinate unit of object.

X1 dynamic

X1 can be double or DateTime depending on ObjectType.

Y1 dynamic

Y1 can be double or Price value depending on ObjectType.

Foregound = null Color

Foreground color of object.

FontSize = null double

Font size of text.

FontWeight = null FontWeights

Font weight of object.

Remarks

AddText function add textbox to chart.

Example

 ChartObjects.AddObject("NameObject", "Description", CoordinateUnits.Pixel, 50, 60);