mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-12-05 04:21:40 +00:00
16 lines
437 B
JavaScript
16 lines
437 B
JavaScript
/* globals google, startDate ,reportURL, endDate , reportType ,accountIds , picker:true, minDate, year, month, columnChart, lineChart, stackedColumnChart */
|
|
|
|
|
|
$(function () {
|
|
"use strict";
|
|
drawChart();
|
|
});
|
|
|
|
|
|
function drawChart() {
|
|
"use strict";
|
|
|
|
// month view:
|
|
// draw account chart
|
|
lineChart('chart/account/report/' + reportType + '/' + startDate + '/' + endDate + '/' + accountIds, 'account-balances-chart');
|
|
} |