Skip to content
Snippets Groups Projects
Commit faa47131 authored by almador's avatar almador Committed by Daniel Cothran
Browse files

Issue #3499637 by almador, andileco, maxilein: Undefined array key "connect_nulls"

parent 11847eb8
No related branches found
No related tags found
3 merge requests!130Update ChartsPluginStyleChart.php to solve Warning: Undefined array key "connect_nulls",!113fixed the issue,!75Resolve #3391197 "Enable support for"
Pipeline #396989 passed with warnings
......@@ -333,7 +333,7 @@ class ChartsPluginStyleChart extends StylePluginBase implements ContainerFactory
'#tooltips' => $chart_settings['display']['tooltips'],
'#data_labels' => $chart_settings['display']['data_labels'],
'#data_markers' => $chart_settings['display']['data_markers'],
'#connect_nulls' => $chart_settings['display']['connect_nulls'],
'#connect_nulls' => !empty($chart_settings['display']['connect_nulls']),
// Colors only used if a grouped view or using a type such as a pie chart.
'#colors' => $chart_settings['display']['colors'] ?? [],
'#background' => $chart_settings['display']['background'] ?? 'transparent',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment