Can I do something like this?
I have 2 categories here. (First 5 are relevant and last 2 or not, that is why last 2 are in gray color.)
In First category, If the value is below say 6, it should be one color, if it between 6 and 8, it should have other color and greater than 8, it should have 2 colors, up to 8 one color, and >8 another color. I like to know whether we can provide stripes as well?
I have used Highcharts and Amcharts before, even I built a small library around it also. But did not able to achieve this functionality. Any help is appreciated in either of these libraries
While not doable out-of-the-box, it can be implemented using amCharts with a little custom code.
The complete working code is below, but the general idea is this.
When the chart loads (using
addInitHandler
)we do these steps:negativeBase
andnegativeFillColors
properties, so that the chart itself could handle coloring of columns above or below certain value threshold;The last two column colors are handled by setting their colors in data and using
fillColorsField
to auto-color them accordingly.Here's the complete working code:
Or the same code on Codepen.