2 /* vim: set expandtab sw=4 ts=4 sts=4: */
10 require_once 'pma_pchart_single.php';
13 * implements single bar chart
16 class PMA_pChart_single_bar
extends PMA_pChart_single
18 public function __construct($data, $options = null)
20 parent
::__construct($data, $options);
24 * draws single bar chart
26 protected function drawChart()
29 // use stacked bar graph function, because it gives bars with alpha
30 $this->chart
->drawStackedBarGraph($this->dataSet
->GetData(), $this->dataSet
->GetDataDescription(), 70);