Highcharts footer
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: 300px; height: 400px; margin: 1em"></div>
JavaScript
$('#container').highcharts({
chart: {
renderTo: 'container',
spacingTop: 20,
spacingBottom: 20,
type: 'column',
events: {
load: function () {
var label = this.renderer.image('http://highcharts.com/demo/gfx/sun.png', 0, 0, 40, 40)
.add();
var footer = this.renderer.text('This is the footer text. limited It has text space based on chart width', 100, 540)
.add();
}
}
},
xAxis: {
categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun',
'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
},
legend: {
align: 'center',
verticalAlign: 'bottom',
y: -65
},
series: [{
data: [29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4]
}],
credits: {
enabled: false
}
});