ILIAS  trunk Revision v11.0_alpha-1744-gb0451eebef4
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
Factory.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
25 
26 interface 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 }
vertical(string $title, Dataset $dataset, array $bar_configs=[], array $group_configs=[])
description: purpose: > Vertical Bar Charts work well with visualizing statistics with rather many v...
Builds a Color from either hex- or rgb values.
Definition: Factory.php:30
horizontal(string $title, Dataset $dataset, array $bar_configs=[], array $group_configs=[])
description: purpose: > Horizontal Bar Charts work well with visualizing statistics with rather few ...