Javascript examples for highcharts:Column Chart
maxPointWidth for bar within each x point in basic Column chart
<html> <head> <title>Highcharts Demo</title> <meta name="viewport" content="width=device-width, initial-scale=1"> </head> <body> <script src="https://code.highcharts.com/highcharts.js"></script> <script src="https://code.highcharts.com/modules/exporting.js"></script> <script src="https://code.highcharts.com/modules/export-data.js"></script> <div id="container" style="min-width: 310px; height: 400px; margin: 0 auto"></div> <script type="text/javascript"> Highcharts.chart('container', { chart: {//from w w w . j av a 2 s . co m type: 'column' }, title: { text: 'Grouped column chart' }, xAxis: { categories: ['Apples', 'Bananas'] }, yAxis: { min: 0, title: { text: 'Total fruit consumption' } }, plotOptions: { series: { pointPadding: 0, maxPointWidth: 10 } }, series: [{ name: 'John', data: [5, 3] }, { name: 'Jane', data: [2, 2] }, { name: 'Joe', data: [3, 4] }] }); </script> </body> </html>