Javascript examples for highcharts:Stack Chart
line series setting with stacked bar combo chart
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <script type="text/javascript" src="https://code.jquery.com/jquery-1.9.1.js"></script> <script type="text/javascript"> $(function () {/*from w w w . j a v a 2 s.co m*/ $('#container').highcharts({ title: { text: 'Combination chart' }, xAxis: { categories: ['Apples', 'Oranges', 'Pears', 'Bananas', 'Plums'] }, labels: { items: [{ html: 'Total fruit consumption', style: { left: '50px', top: '18px', color: (Highcharts.theme && Highcharts.theme.textColor) || 'black' } }] }, plotOptions: { series: { stacking: 'normal' } }, series: [{ type: 'column', name: 'Jane', data: [3, 2, 1, 3, 4], stack: 0 }, { type: 'column', name: 'John', data: [2, 3, 5, 7, 6], stack: 0 }, { type: 'column', name: 'Joe', data: [4, 3, 3, 9, 0], stack: 0 }, { type: 'line', name: 'Average', data: [3, 2.67, 3, 6.33, 3.33], marker: { lineWidth: 2, lineColor: Highcharts.getOptions().colors[3], fillColor: 'white' } }, { type: 'line', name: 'Total consumption', data: [3, 2.67, 3, 6.33, 3.33], center: [100, 80], size: 100, showInLegend: false, dataLabels: { enabled: false } }] }); }); </script> </head> <body> <script src="https://code.highcharts.com/highcharts.js"></script> <script src="https://code.highcharts.com/modules/exporting.js"></script> <div id="container" style="min-width: 310px; height: 400px; margin: 0 auto"></div> </body> </html>