Bubble.php 376 B

1234567891011121314151617181920
  1. <?php
  2. namespace ThurData\Servers\KerioEmail\Core\UI\Widget\Graphs;
  3. /**
  4. * Description of EmptyGraph
  5. *
  6. * @autor ThurData <info@thurdata.ch>
  7. */
  8. class Bubble extends EmptyGraph
  9. {
  10. protected $id = 'bubbleGraph';
  11. protected $name = 'bubbleGraph';
  12. public function initContent()
  13. {
  14. parent::initContent();
  15. $this->setChartTypeToBubble();
  16. }
  17. }