ChartDrawings CLASS

Add (Drawing drawing) METHOD (Return: void)
Adds an drawing object to the Chart SYNTAX public void Add (Drawing drawing) PARAMETERS drawing — Drawing RETURN void
Sun, May 6, 2018 at 7:05 PM
FindById (string drawingId) METHOD (Return: Drawing)
Searches for a drawing element by id SYNTAX public Drawing FindById (string drawingId) PARAMETERS drawingId — string RETURN Drawing
Sun, May 6, 2018 at 7:06 PM
GetAll () METHOD (Return: List)
Returns the items as a single list of Drawings objects SYNTAX public List<Drawing> GetAll () RETURN List
Sun, May 6, 2018 at 7:07 PM
Remove (string drawingId) METHOD (Return: void)
Removes an drawing object from the Chart by id. SYNTAX public void Remove (string drawingId) PARAMETERS drawingId — string RETURN void ...
Sun, May 6, 2018 at 7:08 PM
Remove (Drawing drawing) METHOD (Return: void)
Removes the specified drawing element from the Chart SYNTAX public void Remove (Drawing drawing) PARAMETERS drawing — Drawing RETURN vo...
Sun, May 6, 2018 at 7:09 PM
RemoveAll (DrawingRemoveContext context) METHOD (Return: void)
Removes all the drawing elements from the Chart by the specified context SYNTAX public void RemoveAll (DrawingRemoveContext context) PARAMETERS ...
Sun, May 6, 2018 at 7:10 PM
Added EVENT
Occurs when a new drawing object is added to the Chart. SYNTAX public event Action<DrawingEventArgs> Added
Sun, May 6, 2018 at 7:11 PM
Moved EVENT
Occurs when the drawing object's location is changed. SYNTAX public event Action<DrawingMoveEventArgs> Moved
Sun, May 6, 2018 at 7:12 PM
Removed EVENT
Occurs when a drawing object is removed from the Chart. SYNTAX public event Action<DrawingEventArgs> Removed
Sun, May 6, 2018 at 7:12 PM
SelectionChanged EVENT
Occurs when the selection of drawing object changes. SYNTAX public event Action<DrawingSelectionEventArgs> SelectionChanged
Sun, May 6, 2018 at 7:13 PM