mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-01-05 21:53:08 -06:00
9 lines
385 B
JavaScript
9 lines
385 B
JavaScript
if (typeof(google) != 'undefined') {
|
|
google.setOnLoadCallback(drawChart);
|
|
function drawChart() {
|
|
googleColumnChart('chart/reports/income-expenses/' + year, 'income-expenses-chart');
|
|
googleColumnChart('chart/reports/income-expenses-sum/' + year, 'income-expenses-sum-chart')
|
|
|
|
googleStackedColumnChart('chart/budgets/spending/' + year, 'budgets');
|
|
}
|
|
} |