Category label Error
author(s): Koos Zoon
by kzoon
HTML
<script src="http://code.highcharts.com/highcharts.js"></script>
<div id="container" style="height: 300px; width: 500px" ></div>
JavaScript
$(function () {
var chart = new Highcharts.Chart({
chart: {
renderTo: 'container',
type:'bar',
borderWidth: 1,
//this works fine
//marginLeft: null
//this one doesn't
marginLeft: 130
},
xAxis: {
categories: ['Some long label with lots of spaces']
},
series: [{
data: [150]
}]
});
});