This is a confirmed bug. Fortunately there is an easy work around.
- Go to Solution Explorer and expand down the AdvancedHMIControls project
- Under that project, open the GraphicIndicator.vb file
- Scroll all the way to the bottom and paste the following code just one line above "End Class"
Protected Overrides Sub OnForeColorChanged(e As System.EventArgs)
MyBase.OnForeColorChanged(e)
If TextBrush Is Nothing Then
TextBrush = New SolidBrush(MyBase.ForeColor)
Else
TextBrush.Color = MyBase.ForeColor
End If
Me.Invalidate()
End Sub