1

is there anyone have tried to use highcharts jquery with stacked bar like this one http://highcharts.com/demo/bar-stacked

in that example, the data series was from an array, now i want it to get the data from html table like this http://highcharts.com/demo/column-parsed

as for that example, i have tried it for a normal bar and column, it was a success, but for the stacked bar, i don't know what should i do :( i'am still new for this highcharts, so maybe anyone can help me?? o.O thx..

Xinez
  • 331
  • 3
  • 6
  • 17

1 Answers1

0

Just add stacking parameter to series in plotOptions:

plotOptions: {
    series: {
        stacking: 'normal'
    }
}

Demo here: http://jsfiddle.net/7Mmee/10676/

Igor Dymov
  • 16,230
  • 5
  • 50
  • 56