Skip to content
Snippets Groups Projects
Commit 706a1365 authored by andileco's avatar andileco Committed by Daniel Cothran
Browse files

Issue #2943952 by andileco: Enable stacking

parent 9f8abe6d
No related branches found
No related tags found
No related merge requests found
...@@ -283,6 +283,15 @@ function charts_settings_form($form, $defaults = [], $field_options = [], $paren ...@@ -283,6 +283,15 @@ function charts_settings_form($form, $defaults = [], $field_options = [], $paren
} }
} }
// Enable stacking.
$form['grouping'] = [
'#type' => 'checkbox',
'#title' => t('Stacking'),
'#description' => t('Enable stacking'),
'#default_value' => $options['grouping'],
'#weight' => '-19',
];
if ($field_options) { if ($field_options) {
$first_field = key($field_options); $first_field = key($field_options);
......
...@@ -110,6 +110,7 @@ class ChartsBlock extends BlockBase { ...@@ -110,6 +110,7 @@ class ChartsBlock extends BlockBase {
'#weight' => '-16', '#weight' => '-16',
]; ];
// Enable stacking. // Enable stacking.
unset($form['grouping']['#parents']);
$form['grouping'] = [ $form['grouping'] = [
'#type' => 'checkbox', '#type' => 'checkbox',
'#title' => $this->t('Stacking'), '#title' => $this->t('Stacking'),
......
...@@ -136,10 +136,20 @@ class C3 extends AbstractChart { ...@@ -136,10 +136,20 @@ class C3 extends AbstractChart {
} }
$chartData->types = $types; $chartData->types = $types;
if ($options['type'] != 'pie' && $options['type'] != 'donut') { if ($options['type'] != 'pie' && $options['type'] != 'donut') {
$c3->setAxis($chartAxis); $c3->setAxis($chartAxis);
} }
// Determines if chart is stacked.
if (!empty($options['grouping'] && $options['grouping'] == TRUE)) {
$seriesNames = [];
for ($i = 0; $i < count($seriesData); $i++) {
array_push($seriesNames, $seriesData[$i]['name']);
}
$chartData->setGroups([$seriesNames]);
}
$chartColor = new ChartColor(); $chartColor = new ChartColor();
$seriesColors = []; $seriesColors = [];
for ($i = 0; $i < count($seriesData); $i++) { for ($i = 0; $i < count($seriesData); $i++) {
......
...@@ -11,11 +11,12 @@ class ChartData implements \JsonSerializable { ...@@ -11,11 +11,12 @@ class ChartData implements \JsonSerializable {
private $type; private $type;
private $labels = TRUE; private $labels = TRUE;
private $x = 'x'; private $x = 'x';
private $groups = '';
/** /**
* Get X. * Get X.
* *
* @return array * @return mixed
* X. * X.
*/ */
public function getX() { public function getX() {
...@@ -92,6 +93,26 @@ class ChartData implements \JsonSerializable { ...@@ -92,6 +93,26 @@ class ChartData implements \JsonSerializable {
$this->labels = $labels; $this->labels = $labels;
} }
/**
* Get Stacking.
*
* @return array
* Stacking.
*/
public function getGroups() {
return $this->groups;
}
/**
* Set Stacking.
*
* @param array $groups
* Stacking.
*/
public function setGroups($groups) {
$this->groups = $groups;
}
/** /**
* Json Serialize. * Json Serialize.
* *
......
...@@ -269,6 +269,16 @@ class ChartsConfigForm extends ConfigFormBase { ...@@ -269,6 +269,16 @@ class ChartsConfigForm extends ConfigFormBase {
} }
} }
// Enable stacking.
$form['grouping'] = [
'#type' => 'checkbox',
'#title' => $this->t('Stacking'),
'#description' => $this->t('Enable stacking'),
'#default_value' => $options['grouping'],
'#weight' => '-15',
'#parents' => array_merge($parents, ['grouping']),
];
$form['display'] = [ $form['display'] = [
'#title' => $this->t('Display'), '#title' => $this->t('Display'),
'#type' => 'details', '#type' => 'details',
......
...@@ -66,7 +66,7 @@ class ChartsPluginStyleChart extends StylePluginBase { ...@@ -66,7 +66,7 @@ class ChartsPluginStyleChart extends StylePluginBase {
// Limit grouping options (we only support one grouping field). // Limit grouping options (we only support one grouping field).
if (isset($form['grouping'][0])) { if (isset($form['grouping'][0])) {
$form['grouping'][0]['field']['#title'] = t('Grouping field'); $form['grouping'][0]['field']['#title'] = t('Grouping field');
$form['grouping'][0]['field']['#description'] = t('If grouping by a particular field, that field will be used to determine stacking of the chart. Generally this will be the same field as what you select for the "Label field" below. If you do not have more than one "Provides data" field below, there will be nothing to stack. If you want to have another series displayed, use a "Chart attachment" display, and set it to attach to this display. Stacking is still a work in progress for C3 Charts.'); $form['grouping'][0]['field']['#description'] = t('If grouping by a particular field, that field will be used to determine stacking of the chart. Generally this will be the same field as what you select for the "Label field" below. If you do not have more than one "Provides data" field below, there will be nothing to stack. If you want to have another series displayed, use a "Chart attachment" display, and set it to attach to this display.');
$form['grouping'][0]['field']['#attributes']['class'][] = 'charts-grouping-field'; $form['grouping'][0]['field']['#attributes']['class'][] = 'charts-grouping-field';
// Grouping by rendered version has no effect in charts. Hide the options. // Grouping by rendered version has no effect in charts. Hide the options.
$form['grouping'][0]['rendered']['#access'] = FALSE; $form['grouping'][0]['rendered']['#access'] = FALSE;
......
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