Trend_BL
author(s):
by grant
HTML
<script src="http://code.highcharts.com/highcharts.js"></script>
<script src="http://code.highcharts.com/modules/exporting.js"></script>
<div id="trend_bl" style="min-width: 400px; height: 400px; margin: 0 auto"></div>
JavaScript
var JSON = [
{"name":"grant","data":
[250291,7410,2013,2013,524,201]},
{"name":"jim","data":
[1776995,758630,25633,4120054,24521,2045],"quail":[10]}];
//Draw chart
Highcharts.chart('trend_bl', {
title: {
text: 'Trend by Business Lines'
},
yAxis: {
title: {
text: ' Resource Allocation'
}
},
xAxis: {
type: 'datetime',
tickInterval: 1,
pointStart: '2016'
},
legend: {
layout: 'vertical',
align: 'right',
floating: 'true',
verticalAlign: 'middle'
},
series: JSON
});