order = $order; $this->dataSet = $dataSet; $this->tooltips = $tooltips; $this->graphs = $graphs; } /** * Apply configuration styles from the $cfg * * @param array $cfg The configuration as given in the drawBars call */ public function setStyleFromConfig(array $cfg) { foreach ($cfg as $elem => $value) { if ($elem === 'color') { $this->setFill($value); } elseif ($elem === 'width') { $this->setStrokeWidth($value); } } } /** * Draw a single rectangle * * @param array $point The * @param null $index * @param string $fill The fill color to use * @param $strokeWidth * * @return Rect */ private function drawSingleBar($point, $index = null, $fill, $strokeWidth) { $rect = new Rect($point[0] - ($this->barWidth / 2), $point[1], $this->barWidth, 100 - $point[1]); $rect->setFill($fill); $rect->setStrokeWidth($strokeWidth); $rect->setStrokeColor('black'); if (isset($index)) { $rect->setAttribute('data-icinga-graph-index', $index); } $rect->setAttribute('data-icinga-graph-type', 'bar'); $rect->setAdditionalStyle('clip-path: url(#clip);'); return $rect; } /** * Render this BarChart * * @param RenderContext $ctx The rendering context to use for drawing * * @return DOMElement $dom Element */ public function toSvg(RenderContext $ctx) { $doc = $ctx->getDocument(); $group = $doc->createElement('g'); $idx = 0; foreach ($this->dataSet as $x => $point) { // add white background bar, to prevent other bars from altering transparency effects $bar = $this->drawSingleBar($point, $idx++, 'white', $this->strokeWidth, $idx)->toSvg($ctx); $group->appendChild($bar); // draw actual bar $bar = $this->drawSingleBar($point, null, $this->fill, $this->strokeWidth, $idx)->toSvg($ctx); $bar->setAttribute('class', 'chart-data'); if (isset($this->tooltips[$x])) { $data = array( 'label' => isset($this->graphs[$this->order]['label']) ? strtolower($this->graphs[$this->order]['label']) : '', 'color' => isset($this->graphs[$this->order]['color']) ? strtolower($this->graphs[$this->order]['color']) : '#fff' ); $format = isset($this->graphs[$this->order]['tooltip']) ? $this->graphs[$this->order]['tooltip'] : null; $bar->setAttribute( 'title', $this->tooltips[$x]->renderNoHtml($this->order, $data, $format) ); $bar->setAttribute( 'data-title-rich', $this->tooltips[$x]->render($this->order, $data, $format) ); } $group->appendChild($bar); } return $group; } }