I receive both negative and positive values from an api, which I feed into my column chart.
http://jsfiddle.net/jn7Lvoz4/3/
The problem is that I don't want my negative values to be displayed below the x-axis, but above, just like the positive values. I still want to keep the values negative though, so that I can color them red and pass them into a function when the values are hovered. (I am just outputting them with a console.log
in my fiddle, but I think you get the idea.)
I found a solution to this problem right here, but they solve it by using H.seriesTypes.column
. Hightcharts.seriesTypes
doesn't seem to exist in angular-highcharts so this sadly didn't really help me.
Does anybody know how I could achieve this?