| 1234567891011121314151617181920 |
- <?php
- namespace ModulesGarden\Servers\ProxmoxCloudVps\Core\UI\Widget\Graphs;
- /**
- * Description of EmptyGraph
- *
- * @author inbs
- */
- class Bubble extends EmptyGraph
- {
- protected $id = 'bubbleGraph';
- protected $name = 'bubbleGraph';
- public function initContent()
- {
- parent::initContent();
- $this->setChartTypeToBubble();
- }
- }
|