ILIAS
release_10 Revision v10.1-43-ga1241a92c2f
◀ 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
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
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 10 2025 15:16:42 for ILIAS by
1.8.13 (using
Doxyfile
)