firefly-iii/public/js/ff/reports/default/month.js

16 lines
437 B
JavaScript
Raw Normal View History

2016-10-25 11:53:54 -05:00
/* globals google, startDate ,reportURL, endDate , reportType ,accountIds , picker:true, minDate, year, month, columnChart, lineChart, stackedColumnChart */
$(function () {
"use strict";
drawChart();
});
2015-05-08 10:13:49 -05:00
function drawChart() {
2015-05-24 13:41:14 -05:00
"use strict";
2015-12-14 13:37:38 -06:00
// month view:
// draw account chart
lineChart('chart/account/report/' + reportType + '/' + startDate + '/' + endDate + '/' + accountIds, 'account-balances-chart');
}