Highcharts Demo
by gkohen
HTML
<div id="container" style="height: 300px"></div>
<script src="https://code.highcharts.com/highcharts.js"></script>
JavaScript
$(function() {
Highcharts.setOptions({
lang: {
numericSymbols: [null, "MMM", "GGGG", "TTT", "PPP", "EEEE"]
}
});
$('#container').highcharts({
xAxis: {
categories: ['Jan', 'Feb', 'Mar']
},
yAxis: {
labels: {
formatter: function() {
return this.value / 1000000 + 'MMM';
}
}
},
series: [{
data: [2500000, 2600000, 3100000]
}]
});
});