mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-28 18:51:55 +00:00
55 lines
1.3 KiB
JavaScript
55 lines
1.3 KiB
JavaScript
/*
|
|
* month.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();
|
|
|
|
$('#budgets-out-pie-chart-checked').on('change', function () {
|
|
redrawPieChart('budgets-out-pie-chart', budgetExpenseUri);
|
|
});
|
|
|
|
$('#accounts-out-pie-chart-checked').on('change', function () {
|
|
redrawPieChart('accounts-out-pie-chart', accountExpenseUri);
|
|
});
|
|
|
|
});
|
|
|
|
|
|
function drawChart() {
|
|
"use strict";
|
|
|
|
// month view:
|
|
stackedColumnChart(mainUri, 'in-out-chart');
|
|
|
|
// draw pie chart of income, depending on "show other transactions too":
|
|
redrawPieChart('budgets-out-pie-chart', budgetExpenseUri);
|
|
redrawPieChart('accounts-out-pie-chart', accountExpenseUri);
|
|
|
|
|
|
}
|
|
|
|
function redrawPieChart(container, uri) {
|
|
"use strict";
|
|
var checkbox = $('#' + container + '-checked');
|
|
|
|
var others = '0';
|
|
// check if box is checked:
|
|
if (checkbox.prop('checked')) {
|
|
others = '1';
|
|
}
|
|
uri = uri.replace('OTHERS', others);
|
|
console.log('URI for ' + container + ' is ' + uri);
|
|
|
|
pieChart(uri, container);
|
|
|
|
}
|