문제

How do you set up a stacked column chart so that the bottom series represents the data values, and the top series is only there to fill in the empty space?

See attached image for reference:

enter image description here

도움이 되었습니까?

해결책

so basically you need 2 graphs

  1. percentage stacked column

    plotOptions: { column: { stacking: 'percent' } }

here is a worked out example http://jsfiddle.net/kolliparavamsikrishna/8xGA2/ 2. combination of percentage stacked column and error bar. here is a worked out example http://jsfiddle.net/kolliparavamsikrishna/TfG5P/

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top