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

29 lines
695 B
JavaScript
Raw Normal View History

/*
* year.js
* Copyright (C) 2016 thegrumpydictator@gmail.com
*
* This software may be modified and distributed under the terms of the
* Creative Commons Attribution-ShareAlike 4.0 International License.
*
* See the LICENSE file for details.
*/
$(function () {
"use strict";
drawChart();
2016-11-19 07:27:54 +01:00
loadAjaxPartial('budgetPeriodReport', budgetPeriodReportUri);
loadAjaxPartial('categoryExpense', categoryExpenseUri);
loadAjaxPartial('categoryIncome', categoryIncomeUri);
});
2015-05-08 17:13:49 +02:00
function drawChart() {
2015-05-24 20:41:14 +02:00
"use strict";
2016-12-06 08:15:53 +01:00
lineChart(netWorthUri, 'net-worth');
columnChart(opChartUri, 'income-expenses-chart');
columnChart(sumChartUri, '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
}