| 1234567891011121314151617181920 |
- <?php
- namespace ThurData\Servers\KerioEmail\Core\UI\Widget\Graphs;
- /**
- * Description of EmptyGraph
- *
- * @autor ThurData <info@thrudata.ch>
- */
- class Bar extends EmptyGraph
- {
- protected $id = 'barGraph';
- protected $name = 'barGraph';
- public function initContent()
- {
- parent::initContent();
- $this->setChartTypeToBar();
- }
- }
|