Files
firefly-iii/public/js/ff/reports/default/year.js

19 lines
562 B
JavaScript
Raw Normal View History

2016-11-19 07:27:54 +01:00
/* globals google, accountIds, budgetPeriodReportUri */
$(function () {
"use strict";
drawChart();
2016-11-19 07:27:54 +01:00
loadAjaxPartial('budgetPeriodReport', budgetPeriodReportUri);
});
2015-05-08 17:13:49 +02:00
function drawChart() {
2015-05-24 20:41:14 +02:00
"use strict";
2016-11-19 07:27:54 +01:00
lineChart('chart/report/net-worth/' + startDate + '/' + endDate + '/' + accountIds, 'net-worth');
2016-11-12 19:22:03 +01:00
columnChart('chart/report/in-out/' + startDate + '/' + endDate + '/' + accountIds, 'income-expenses-chart');
columnChart('chart/report/in-out-sum/' + startDate + '/' + endDate + '/' + accountIds, 'income-expenses-sum-chart');
2016-04-24 20:00:20 +02:00
2016-10-30 18:29:26 +01:00
2015-03-10 17:26:31 +01:00
}