PolarArea.php 376 B

1234567891011121314151617181920
  1. <?php
  2. namespace ModulesGarden\Servers\ProxmoxCloudVps\Core\UI\Widget\Graphs;
  3. /**
  4. * Description of EmptyGraph
  5. *
  6. * @author inbs
  7. */
  8. class PolarArea extends EmptyGraph
  9. {
  10. protected $id = 'polarAreaGraph';
  11. protected $name = 'polarAreaGraph';
  12. public function initContent()
  13. {
  14. parent::initContent();
  15. $this->setChartTypeToPolarArea();
  16. }
  17. }