Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
charts
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
charts
Merge requests
!146
Issue
#3403196
by bluegeek9, andileco, emircan erkul, jaymehls: PHP 8.2 error on chart type
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Issue
#3403196
by bluegeek9, andileco, emircan erkul, jaymehls: PHP 8.2 error on chart type
issue/charts-3403196:3403196-other-libraries
into
8.x-3.x
Overview
0
Commits
3
Pipelines
3
Changes
5
Merged
Steven Ayers
requested to merge
issue/charts-3403196:3403196-other-libraries
into
8.x-3.x
2 weeks ago
Overview
0
Commits
3
Pipelines
3
Changes
5
Expand
Closes
#3403196
0
0
Merge request reports
Compare
8.x-3.x
version 3
381aac9e
2 weeks ago
version 2
96dcb499
2 weeks ago
version 1
f77f14c6
2 weeks ago
8.x-3.x (base)
and
latest version
latest version
381aac9e
3 commits,
2 weeks ago
version 3
381aac9e
3 commits,
2 weeks ago
version 2
96dcb499
2 commits,
2 weeks ago
version 1
f77f14c6
1 commit,
2 weeks ago
5 files
+
8
−
5
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
5
Search (e.g. *.vue) (Ctrl+P)
modules/charts_billboard/src/Plugin/chart/Billboard.php
+
1
−
1
Options
@@ -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