2 /* vim: set expandtab sw=4 ts=4 sts=4: */
10 require_once 'pma_pchart_multi.php';
13 * implements multi bar chart
16 class PMA_pChart_multi_bar
extends PMA_pChart_multi
18 public function __construct($data, $options = null)
20 parent
::__construct($data, $options);
22 $this->settings
['scale'] = SCALE_NORMAL
;
26 * draws multi bar graph
28 protected function drawChart()
33 $this->chart
->drawBarGraph($this->dataSet
->GetData(), $this->dataSet
->GetDataDescription(), 70);