mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-10 23:45:48 -06:00
Update chart [skip ci]
This commit is contained in:
parent
369695ab32
commit
1ff99346aa
@ -178,8 +178,10 @@ class GoogleChartController extends Controller
|
||||
$left = $entry[1] - $entry[2];
|
||||
if ($left > 0) {
|
||||
$chart->addRow($entry[0], $left, null);
|
||||
} else if($left < 0) {
|
||||
$chart->addRow($entry[0], null, $left);
|
||||
} else {
|
||||
if ($left < 0) {
|
||||
$chart->addRow($entry[0], null, $left);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user