19 declare(strict_types=1);
38 $f = $DIC->ui()->factory();
39 $df = new \ILIAS\Data\Factory();
43 $c_dimension = $df->dimension()->cardinal();
46 $dataset = $df->dataset([
47 "Dataset 1.1" => $c_dimension,
48 "Dataset 1.2" => $c_dimension,
49 "Dataset 1.3" => $c_dimension,
51 "Grouped Dataset" => $df->dimension()->group(
"Dataset 1.1",
"Dataset 1.2",
"Dataset 1.3"),
54 $dataset = $dataset->withPoint(
62 $dataset = $dataset->withPoint(
70 $dataset = $dataset->withPoint(
81 $b1 = $b1->withColor($df->color(
"#12436D"));
83 $b2 = $b2->withColor($df->color(
"#28A197"));
85 $b3 = $b3->withColor($df->color(
"#801650"));
87 $g = $g->withStacked(
true);
95 "Grouped Dataset" => $g
99 $bar =
$f->chart()->bar()->horizontal(
100 "A horizontal stacked bar chart",
stacked()
expected output: > ILIAS shows a base horizontal bar chart but with stacked bars in different colors...