yaxis margin2
by kzoon
HTML
<div id="container" style="height: 400px"></div>
<script src="http://code.highcharts.com/highcharts.js"></script>
JavaScript
$(function() {
var chart = new Highcharts.Chart({
"chart": {
renderTo: 'container',
"type": "column",
"animation": false,
"inverted": true,
"spacingTop": 10,
"spacingRight": 10,
"spacingBottom": 10,
"spacingLeft": 10,
"scAnimateChanges": false
},
"plotOptions": {
"column": {
"animation": false,
"shadow": false,
"stickyTracking": false,
"zIndex": 1,
"stacking": "",
"borderWidth": 0,
"borderColorIE": "rgb(0,0,0)",
"borderColor": "rgba(0,0,0,1)",
"borderRadius": 0,
"groupPadding": 0,
"pointPadding": 0
}
},
"xAxis": [{
"tickWidth": 0,
"gridLineWidth": 0,
"labels": {
"enabled": false
}}
],
"yAxis": [{
"title": {
"text": ""
},
}
],
"series": [{
"data": [100385],
"showInLegend": false}
]
});
});