Translation update done using Pootle.
[phpmyadmin-themes.git] / libraries / chart / pma_pchart_stacked_bar.php
blob0ef72ec51f998217d36c8d3878a2ed18ca2c9e7d
1 <?php
2 /* vim: set expandtab sw=4 ts=4 sts=4: */
3 /**
4 * @package phpMyAdmin
5 */
7 /**
9 */
10 require_once 'pma_pchart_multi.php';
12 /**
13 * implements stacked bar chart
14 * @package phpMyAdmin
16 class PMA_pChart_stacked_bar extends PMA_pChart_multi
18 public function __construct($data, $options = null)
20 parent::__construct($data, $options);
23 /**
24 * draws stacked bar chart
26 protected function drawChart()
28 parent::drawChart();
30 // Draw the bar chart
31 $this->chart->drawStackedBarGraph($this->dataSet->GetData(), $this->dataSet->GetDataDescription(), 70);