FusionCharts - thousand, lakhs, crores
Created using FusionCharts Suite XT - www.fusioncharts.com
HTML
<script src="http://static.fusioncharts.com/code/latest/fusioncharts.js"></script>
<script src="http://static.fusioncharts.com/code/latest/fusioncharts.charts.js"></script>
<script src="http://static.fusioncharts.com/code/latest/themes/fusioncharts.theme.fint.js"></script>
<!-- Configuring background color in Column2D chart using: Attribute: # bgColor - Set to #DDDDDD # bgAlpha - Set to 50 Deviation from theme: # canvasBgAlpha - Set to 0 as the purpose of the chart to show background cosmetics. -->
<div id="chart-container">FusionCharts will render here</div>
CSS
body {
padding: 10px;
}
JavaScript
FusionCharts.ready(function () {
var revenueChart = new FusionCharts({
type: 'column2d',
renderAt: 'chart-container',
width: '500',
height: '300',
dataFormat: 'json',
dataSource: {
"chart": {
"caption": "Monthly Revenue",
"subCaption": "Last year",
"xAxisName": "Month",
"yAxisName": "Amount (In USD)",
"numberPrefix": "$",
"numberScaleValue": "100,10,10",
"numberScaleUnit": ",L,m",
},
"data": [{
"label": "Jan",
"value": "99000000000000000"
}, {
"label": "Feb",
"value": "99000000000000000"
}, {
"label": "Mar",
"value": "1200000000000000"
}]
}
});
revenueChart.render();
});