3

Default color of the com.gluonhq.charm.glisten.control.ProgressIndicator/ProgressBar is material design blue.

How to change the color?

I tried different JavaFX CSS properties, but it doesn't work.

ItachiUchiha
  • 36,135
  • 10
  • 122
  • 176

1 Answers1

5

You can change the color by using a new css style -fx-color.

progressIndicator.setStyle("-fx-color: red;");

enter image description here

ItachiUchiha
  • 36,135
  • 10
  • 122
  • 176