ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
Factory.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
25
26interface Factory
27{
51 public function vertical(
52 string $title,
53 Dataset $dataset,
54 array $bar_configs = [],
55 array $group_configs = []
56 ): Vertical;
57
81 public function horizontal(
82 string $title,
83 Dataset $dataset,
84 array $bar_configs = [],
85 array $group_configs = []
86 ): Horizontal;
87}
Builds a Color from either hex- or rgb values.
Definition: Factory.php:31
horizontal(string $title, Dataset $dataset, array $bar_configs=[], array $group_configs=[])
vertical(string $title, Dataset $dataset, array $bar_configs=[], array $group_configs=[])