mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-08-29 09:16:15 +00:00
Line chart
This commit is contained in:
@@ -8,11 +8,15 @@
|
||||
* See the LICENSE file for details.
|
||||
*/
|
||||
|
||||
/** global: budgetChartUri */
|
||||
/** global: budgetChartUri,budgetLimitID */
|
||||
|
||||
$(function () {
|
||||
"use strict";
|
||||
|
||||
columnChart(budgetChartUri, 'budgetOverview');
|
||||
if (budgetLimitID > 0) {
|
||||
lineChart(budgetChartUri, 'budgetOverview');
|
||||
}
|
||||
if (budgetLimitID == 0) {
|
||||
columnChart(budgetChartUri, 'budgetOverview');
|
||||
}
|
||||
|
||||
});
|
||||
|
Reference in New Issue
Block a user