1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218
|
<?php declare(strict_types = 0);
/*
** Copyright (C) 2001-2025 Zabbix SIA
**
** This program is free software: you can redistribute it and/or modify it under the terms of
** the GNU Affero General Public License as published by the Free Software Foundation, version 3.
**
** This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
** without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
** See the GNU Affero General Public License for more details.
**
** You should have received a copy of the GNU Affero General Public License along with this program.
** If not, see <https://www.gnu.org/licenses/>.
**/
/**
* SVG graphs axis class.
*/
class CSvgGraphAxis extends CSvgGroup {
private const ZBX_STYLE_CLASS = 'svg-graph-axis';
private const ZBX_STYLE_GRAPH_AXIS_LEFT = 'svg-graph-axis-left';
private const ZBX_STYLE_GRAPH_AXIS_RIGHT = 'svg-graph-axis-right';
private const ZBX_STYLE_GRAPH_AXIS_BOTTOM = 'svg-graph-axis-bottom';
/**
* Axis triangle icon size.
*
* @var int
*/
private const ZBX_ARROW_SIZE = 5;
private const ZBX_ARROW_OFFSET = 5;
/**
* Array of labels. Key is coordinate, value is text label.
*
* @var array
*/
private $labels;
/**
* Axis type. One of CSvgGraphAxis::AXIS_* constants.
*
* @var int
*/
private $type;
/**
* Color for labels.
*
* @var string
*/
private $text_color;
/**
* Color for axis.
*
* @var string
*/
private $line_color;
public function __construct(array $labels, int $type) {
parent::__construct();
$this->labels = $labels;
$this->type = $type;
}
public function setTextColor(string $color): self {
$this->text_color = $color;
return $this;
}
public function setLineColor(string $color): self {
$this->line_color = $color;
return $this;
}
/**
* Return CSS style definitions for axis as array.
*
* @return array
*/
public function makeStyles(): array {
$this
->addClass(self::ZBX_STYLE_CLASS)
->addClass([
GRAPH_YAXIS_SIDE_RIGHT => self::ZBX_STYLE_GRAPH_AXIS_RIGHT,
GRAPH_YAXIS_SIDE_LEFT => self::ZBX_STYLE_GRAPH_AXIS_LEFT,
GRAPH_YAXIS_SIDE_BOTTOM => self::ZBX_STYLE_GRAPH_AXIS_BOTTOM
][$this->type]);
return [
'.'.self::ZBX_STYLE_CLASS.' path' => [
'stroke' => $this->line_color,
'fill' => 'transparent'
],
'.'.self::ZBX_STYLE_CLASS.' text' => [
'fill' => $this->text_color,
'font-size' => '11px',
'alignment-baseline' => 'middle',
'dominant-baseline' => 'middle'
],
'.'.self::ZBX_STYLE_GRAPH_AXIS_RIGHT.' text' => [
'text-anchor' => 'start'
],
'.'.self::ZBX_STYLE_GRAPH_AXIS_LEFT.' text' => [
'text-anchor' => 'end'
],
'.'.self::ZBX_STYLE_GRAPH_AXIS_BOTTOM.' text' => [
'text-anchor' => 'middle'
]
];
}
private function getAxis(): array {
$offset = ceil(self::ZBX_ARROW_SIZE / 2);
if ($this->type == GRAPH_YAXIS_SIDE_BOTTOM) {
$x = $this->x + $this->width + self::ZBX_ARROW_OFFSET;
$y = $this->y;
return [
// Draw axis line.
(new CSvgPath())
->setAttribute('shape-rendering', 'crispEdges')
->moveTo($this->x, $y)
->lineTo($x, $y),
// Draw arrow.
(new CSvgPath())
->moveTo($x + self::ZBX_ARROW_SIZE, $y)
->lineTo($x, $y - $offset)
->lineTo($x, $y + $offset)
->closePath()
];
}
$x = ($this->type == GRAPH_YAXIS_SIDE_RIGHT) ? $this->x : $this->x + $this->width;
$y = $this->y - self::ZBX_ARROW_OFFSET;
return [
// Draw axis line.
(new CSvgPath())
->setAttribute('shape-rendering', 'crispEdges')
->moveTo($x, $y)
->lineTo($x, $this->height + $y + self::ZBX_ARROW_OFFSET),
// Draw arrow.
(new CSvgPath())
->moveTo($x, $y - self::ZBX_ARROW_SIZE)
->lineTo($x - $offset, $y)
->lineTo($x + $offset, $y)
->closePath()
];
}
/**
* Return array of initialized CSvgText objects for axis labels.
*
* @return array
*/
private function getLabels(): array {
$x = 0;
$y = 0;
$labels = [];
if ($this->type == GRAPH_YAXIS_SIDE_BOTTOM) {
$axis = 'x';
$y = $this->height - CSvgGraph::SVG_GRAPH_X_AXIS_LABEL_MARGIN;
}
else {
$axis = 'y';
$x = ($this->type == GRAPH_YAXIS_SIDE_RIGHT)
? CSvgGraph::SVG_GRAPH_Y_AXIS_LABEL_MARGIN_INNER
: $this->width - CSvgGraph::SVG_GRAPH_Y_AXIS_LABEL_MARGIN_INNER;
}
foreach ($this->labels as $pos => $label) {
$$axis = $pos;
if ($this->type == GRAPH_YAXIS_SIDE_LEFT || $this->type == GRAPH_YAXIS_SIDE_RIGHT) {
// Flip upside down.
$y = $this->height - $y;
}
if ($this->type == GRAPH_YAXIS_SIDE_BOTTOM) {
if (count($labels) == 0) {
$text_tag_x = max($this->x + $x, strlen($label) * 4);
}
elseif (end($this->labels) === $label) {
$text_tag_x = (strlen($label) * 4 > $this->width - $x) ? $this->x + $x - 10 : $this->x + $x;
}
else {
$text_tag_x = $this->x + $x;
}
}
else {
$text_tag_x = $this->x + $x;
}
$labels[] = new CSvgText($label, $text_tag_x, $this->y + $y);
}
return $labels;
}
public function toString($destroy = true): string {
$this
->additem($this->getAxis())
->additem($this->getLabels());
return parent::toString($destroy);
}
}
|