Jugal | Disabling metric notation on axis values | Highchart & Highstock
http://stackoverflow.com/questions/14378181/highcharts-replacing-the-thousands-k-abbreviation
Jugal Thakkar
http://jugal.me/
HTML
<script type="text/javascript" src="http://code.jquery.com/jquery-1.7.2.js" ></script>
<script type="text/javascript" src="http://code.jugal.me/js/jugalsLib.js" ></script>
<script type="text/javascript" src="http://code.highcharts.com/stock/highstock.src.js" ></script>
<script type="text/javascript" src="http://code.highcharts.com/stock/modules/exporting.src.js" ></script>
<div id="container"></div>
CSS
#container{
min-width:500px;
}
JavaScript
Highcharts.setOptions({
lang: {
numericSymbols: null //otherwise by default ['k', 'M', 'G', 'T', 'P', 'E']
}
});
var chartingOptions = {
};
chartingOptions = $.extend({}, jugalsLib.getBasicChartOptions(2,{minValue:50000,maxValue:100000}), chartingOptions);
var chart = new Highcharts.StockChart(chartingOptions);