ILIAS
trunk Revision v11.0_alpha-1702-gfd3ecb7f852
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
x
+
Variables
$
c
e
g
h
j
l
m
p
s
t
u
v
+
Enumerations
a
c
e
f
i
j
l
m
n
o
p
r
s
t
u
v
z
+
Enumerator
a
c
d
e
f
g
i
l
m
n
o
p
q
s
t
u
v
y
+
Data Structures
Data Structures
Data Structure Index
Class Hierarchy
+
Data Fields
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Ö
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Variables
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Ö
Enumerations
Enumerator
+
Files
File List
+
Globals
+
All
$
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
z
+
Functions
a
b
c
d
e
f
g
h
i
m
n
p
r
s
t
u
v
+
Variables
$
a
c
e
g
h
i
m
n
o
p
r
s
t
u
v
z
Enumerations
Enumerator
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Enumerations
Enumerator
Modules
Pages
BarConfig.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
23
use
ILIAS\Data\Color
;
24
28
class
BarConfig
29
{
30
protected
?
Color
$color
=
null
;
31
protected
?
float
$size
=
null
;
32
33
public
function
__construct
()
34
{
35
}
36
37
public
function
withColor
(
Color
$color): self
38
{
39
$clone = clone $this;
40
$clone->color =
$color
;
41
return
$clone;
42
}
43
44
public
function
getColor
(): ?
Color
45
{
46
return
$this->color
;
47
}
48
55
public
function
withRelativeWidth
(
float
$relative_width): self
56
{
57
$clone = clone $this;
58
$clone->size = $relative_width;
59
return
$clone;
60
}
61
62
public
function
getRelativeWidth
(): ?float
63
{
64
return
$this->size
;
65
}
66
}
ILIAS\UI\Component\Chart\Bar\BarConfig\withRelativeWidth
withRelativeWidth(float $relative_width)
Set a relative width for the bar.
Definition:
BarConfig.php:55
ILIAS\Data\Color
Color expresses a certain color by giving the mixing ratio in the RGB color space.
Definition:
Color.php:29
ILIAS\UI\Component\Chart\Bar\BarConfig\getColor
getColor()
Definition:
BarConfig.php:44
ILIAS\UI\Component\Chart\Bar
Definition:
Axis.php:21
ILIAS\UI\Component\Chart\Bar\BarConfig\$color
Color $color
Definition:
BarConfig.php:30
ILIAS\UI\Component\Chart\Bar\BarConfig\__construct
__construct()
Definition:
BarConfig.php:33
ILIAS\UI\Component\Chart\Bar\BarConfig
Definition:
BarConfig.php:28
null
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
Definition:
shib_logout.php:142
ILIAS\Data\Color
Definition:
Factory.php:21
ILIAS\UI\Component\Chart\Bar\BarConfig\withColor
withColor(Color $color)
Definition:
BarConfig.php:37
ILIAS\UI\Component\Chart\Bar\BarConfig\getRelativeWidth
getRelativeWidth()
Definition:
BarConfig.php:62
ILIAS\UI\Component\Chart\Bar\BarConfig\$size
float $size
Definition:
BarConfig.php:31
components
ILIAS
UI
src
Component
Chart
Bar
BarConfig.php
Generated on Thu Apr 3 2025 23:04:02 for ILIAS by
1.8.13 (using
Doxyfile
)