Included first multi-year chart.

This commit is contained in:
James Cole
2015-12-14 21:12:10 +01:00
parent 006d68e279
commit af994e4dae
3 changed files with 34 additions and 28 deletions

View File

@@ -12,4 +12,15 @@ $(function () {
function drawChart() {
"use strict";
// income and expense over multi year:
columnChart('chart/report/in-out/' + reportType + '/' + startDate + '/' + endDate + '/' + accountIds, 'income-expenses-chart');
columnChart('chart/report/in-out-sum/' + reportType + '/' + startDate + '/' + endDate + '/' + accountIds, 'income-expenses-sum-chart');
$.each($('.account-chart'), function(i,v) {
var holder = $(v);
console.log(holder.data('id'));
});
}