I'm trying to put a chart similar to this one here: http://jsfiddle.net/gh/get/jquery/1.9.1/highslide-software/highcharts.com/tree/master/samples/highcharts/demo/bar-stacked/
When the page loads, the chart comes empty. I tried the solution here:
https://github.com/highslide-software/highcharts.com/issues/2091
by adding the code part to plotOptions:
column: {
borderWidth: 0
}
I also tried:
barChart = new Highcharts.Chart(barOptions);
barChart.series[0].hide();
barChart.series[0].show();
None of these solved it. I set chart type to column, everything is ok, then I change it to bar and it stops working. Any workarounds?