The Progress Bar color change ?.

Hello @alexrock12379 ,

You should use a simple if statement against the value you want to check and update the color accordingly.

Here’s a simple example:

if (value >= 50 && value <= 70) {
    color = 'yellow'
}

if (value >= 80 && value <= 100) {
    color = 'green'
}

You can use the link @AmandaM gave you to read the component’s API and how to change its style.