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

22 lines
671 B
JavaScript
Raw Normal View History

/* globals google, accountIds, budgetYearOverviewUri */
2016-06-27 16:11:49 +02:00
var chartDrawn;
var budgetChart;
$(function () {
"use strict";
2016-06-27 16:11:49 +02:00
chartDrawn = false;
drawChart();
loadAjaxPartial('budgetOverview',budgetYearOverviewUri);
});
2015-05-08 17:13:49 +02:00
function drawChart() {
2015-05-24 20:41:14 +02:00
"use strict";
2016-02-18 10:04:53 +01:00
lineChart('chart/report/net-worth/' + reportType + '/' + startDate + '/' + endDate + '/' + accountIds, 'net-worth');
2015-12-14 20:37:38 +01:00
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');
2016-04-24 20:00:20 +02:00
2016-10-30 18:29:26 +01:00
2015-03-10 17:26:31 +01:00
}