Playing around with Highcharts in this plunker has led me to wonder if it's possible to dynamically set the color of a bar based on its value. In my current setup, I have 5 bars that change values between 0 and 100 at intervals. I'd like the colors of these bars to indicate the range of numbers they represent, such as:
0 < x < 25
displaying a neutral color
25 < x < 50
showing up as yellow
50 < x < 75
appearing in orange
75 < x < 100
being colored red
While I've used series methods in the past with other APIs, changing bar colors doesn't seem straightforward with Highcharts. Although I've previously achieved this using Chart.js, I want to explore Highcharts further due to its popularity.