mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-22 12:04:00 +00:00
10 lines
311 B
JavaScript
10 lines
311 B
JavaScript
google.setOnLoadCallback(drawChart);
|
|
|
|
|
|
function drawChart() {
|
|
googleLineChart('chart/home/account', 'accounts-chart');
|
|
googleBarChart('chart/home/budgets','budgets-chart');
|
|
googleColumnChart('chart/home/categories','categories-chart');
|
|
googlePieChart('chart/home/recurring','recurring-chart')
|
|
}
|