mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-25 06:51:08 +00:00
Update chart [skip ci]
This commit is contained in:
@@ -178,9 +178,11 @@ class GoogleChartController extends Controller
|
|||||||
$left = $entry[1] - $entry[2];
|
$left = $entry[1] - $entry[2];
|
||||||
if ($left > 0) {
|
if ($left > 0) {
|
||||||
$chart->addRow($entry[0], $left, null);
|
$chart->addRow($entry[0], $left, null);
|
||||||
} else if($left < 0) {
|
} else {
|
||||||
|
if ($left < 0) {
|
||||||
$chart->addRow($entry[0], null, $left);
|
$chart->addRow($entry[0], null, $left);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user