Skip to content
Snippets Groups Projects

Issue #3403196 by bluegeek9, andileco, emircan erkul, jaymehls: PHP 8.2 error on chart type

Merged Issue #3403196 by bluegeek9, andileco, emircan erkul, jaymehls: PHP 8.2 error on chart type
Merged Steven Ayers requested to merge issue/charts-3403196:3403196-other-libraries into 8.x-3.x
Files
5
@@ -209,7 +209,7 @@ class Billboard extends AbstractChart {
}
// Determines if chart is stacked.
if (!empty($options['grouping'] && $options['grouping'] == TRUE)) {
if (!empty($options['grouping']) && $options['grouping'] == TRUE) {
$seriesNames = [];
for ($i = 0; $i < $seriesCount; $i++) {
array_push($seriesNames, $seriesData[$i]['name']);
Loading