Javascript examples for highcharts:Bar Chart
render each category on a separate axis in bar chart
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <script type="text/javascript" src="https://code.jquery.com/jquery-1.11.0.js"></script> <script type="text/javascript"> $(window).load(function(){//from w w w .j av a2 s . c om $(function () { $('#container').highcharts({ chart: { type: 'bar' }, title: { text: 'Stacked bar chart' }, xAxis: { categories: ['Apples', 'Oranges', 'Pears', 'Grapes', 'Bananas'] }, yAxis: { min: 0, title: { text: 'Total fruit consumption' } }, legend: { backgroundColor: '#FFFFFF', reversed: true }, plotOptions: { }, series: [{ name: 'John', data: [125, 3, 4, 7, 2] }, { name: 'Jane', data: [90, 2, 3, 2, 1] }, { name: 'Joe', data: [100, 4, 4, 2, 5] }] }); }); }); </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>