How can I change the color of the text, this is not working
DrawingTools.Text textDrawing = Draw.Text(this, "Stop" + CurrentBar, "⚫", 0, Close[0]);
textDrawing.TextBrush = Brushes.Yellow; // this is not working
textDrawing.AreaBrush = Brushes.Transparent;
textDrawing.Font = new SimpleFont("Arial", 7);

Comment