CHART - Bar - Change Bar Dimensions
by bizamajig
HTML
<script src="http://code.highcharts.com/highcharts.js"></script>
<script src="http://code.highcharts.com/modules/exporting.js"></script>
<div id="container" style="min-width: 400px; height: 400px; margin: 0 auto"></div>
JavaScript
$(function () {
var chart;
$(document).ready(function() {
chart = new Highcharts.Chart({
chart: {
renderTo: 'container',
type: 'bar'
},
xAxis: {
categories: ['Cat A', 'Cat B']
},
yAxis: {
min: 0,
max: 120,
gridLineWidth: 0,
labels: {
enabled: false
}
},
title: null,
legend: {
backgroundColor: '#FFFFFF',
reversed: true
},
plotOptions: {
series: {
stacking: 'normal'
}
},
series: [{
name: 'John',
data: [0, 13.5],
pointWidth: 50
},{
name: 'Jane',
color: '#B60F2B',
data: [0, 100],
pointWidth: 50
},{
name: 'Jane',
color: '#B60F2B',
data: [33.333, 0],
pointWidth: 100,
showInLegend: false
}]
});
});
});