I'd like to change the text of the basic indicator depending on the which of the three color states is active. I tried the following code, but it isn't working quite right. Hoping to use some event from the indicator to set the text.
Private Sub BasicIndicator2_ValueSelectColor1Changed(sender As Object, e As EventArgs) Handles BasicIndicator2.ValueSelectColor1Changed
If BasicIndicator2.SelectColor2 Then
BasicIndicator2.Text = "Stopped"
ElseIf BasicIndicator2.SelectColor3 Then
BasicIndicator2.Text = "Running"
Else : BasicIndicator2.Text = "Complete"
End If
End Sub