-
Notifications
You must be signed in to change notification settings - Fork 110
Open
Labels
Description
Hi, I was able to change the colour of the progress bar, but not the text itself. Is there any way to do that?
I'm using this setup:
ProgressBarBuilder pbb = ProgressBar.builder()
.setStyle(ProgressBarStyle.builder()
.colorCode((byte) 32) // the ANSI color code
.block('█')
.rightBracket("]")
.leftBracket("[")
.space(' ')
.build()
).showSpeed(new DecimalFormat("#.##"))
.setInitialMax(max)
.setTaskName(name)
.continuousUpdate()
.setUnit("req", 1);
this.progressBar = pbb.build();
Thanks in advance!