ChartObjects
ChartObjects is a collection of all objects drawn on chart.
public ObjectsCollection ChartObjects
Type
ObjectsCollection is type of collection which holds all objects drawn on chart.
Remarks
IndicatorBuffer is a class definition for indicator buffer. Create an intance of IndicatorBuffer using above constructor and add it to Buffers collection.
Example
ChartObjects.AddObject("NameObject", "Description", 50, 60, 70, 80);
Methods
AddObject(string, string, ObjectTypes, CoordinateUnits, dynamic, double?, dynamic, double?, System.Drawing.Color?, System.Drawing.Color?, StrokeThickness) | Add New Object To Chart. |
AddText(string, string, CoordinateUnits, dynamic, double?, System.Drawing.Color?, double?, FontWeights?) | Add New TextBox To Chart. |
Remove(string) | Remove Object From Chart. |
RemoveAt(int) | Remove Object From Chart By Index. |
Clear() | Clear All Objects From Chart. |
ToList() | Return list of objects. |
Properties
Count | Buffer values count. |