ILIAS
trunk Revision v11.0_alpha-2662-g519ff7d528f
◀ ilDoc Overview
GroupConfig.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\UI\Component\Chart\Bar
;
22
26
class
GroupConfig
27
{
28
protected
bool
$stacked
=
false
;
29
30
public
function
withStacked
(
bool
$stacked =
true
):
GroupConfig
31
{
32
$clone = clone $this;
33
$clone->stacked =
$stacked
;
34
return
$clone;
35
}
36
37
public
function
isStacked
(): bool
38
{
39
return
$this->stacked
;
40
}
41
}
ILIAS\UI\Component\Chart\Bar
Definition:
Axis.php:21
ILIAS\UI\Component\Chart\Bar\GroupConfig\withStacked
withStacked(bool $stacked=true)
Definition:
GroupConfig.php:30
ILIAS\UI\Component\Chart\Bar\GroupConfig\$stacked
bool $stacked
Definition:
GroupConfig.php:28
ILIAS\UI\Component\Chart\Bar\GroupConfig\isStacked
isStacked()
Definition:
GroupConfig.php:37
ILIAS\UI\Component\Chart\Bar\GroupConfig
Definition:
GroupConfig.php:26
components
ILIAS
UI
src
Component
Chart
Bar
GroupConfig.php
Generated on Wed Sep 3 2025 23:04:12 for ILIAS by
1.8.13 (using
Doxyfile
)