Doughnut.class.php 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <?php
  2. require_once(__DIR__.SLASH.'..'.SLASH.'View.class.php');
  3. class Doughnut{
  4. public static $LABEL = "Graphique Donuts";
  5. public static $DESCRIPTION = "Graphique en camembert creux";
  6. public static $ICON = "far fa-chart-pie";
  7. function __construct(){}
  8. public static function option(){
  9. $options = array();
  10. $options['show-legend'] = array('label'=>'Afficher les légendes','type'=>'boolean');
  11. for($i=0;$i<10;$i++){
  12. $options['color-'.$i] = array('label'=>'Couleur '.$i,'type'=>'color');
  13. }
  14. return $options;
  15. }
  16. public static function toHtml($label,$data,$options = array()){
  17. $html = '';
  18. if(!isset($options['properties'])) $options['properties'] = array();
  19. try{
  20. $data = $data['data'];
  21. $colors = View::colorSet();
  22. shuffle($colors);
  23. $colorNumber = 0;
  24. foreach($options['properties'] as $key=>$value){
  25. if(strpos( $key,'color-')===false || empty($value)) continue;
  26. $colors[$colorNumber] = $value;
  27. $colorNumber++;
  28. }
  29. $background = implode('","',$colors);
  30. $keys = array_keys($data);
  31. $values = array_values($data);
  32. if(count($data)==0) throw new Exception("<h4 class='text-center'>Aucune donnée</h4>");
  33. if(!isset($data) || View::array_depth($data)>1 ) throw new Exception("Données d'entrées incorrectes.<br> Les données de ce graphique doivent être présentées sous la forme d'un simple tableau clé valeur<br>
  34. <pre>
  35. array(
  36. 'Légende 1' => 12,
  37. 'Légende 2' => 14,
  38. 'Légende 3' => 15
  39. );
  40. </pre>");
  41. if(isset($label)) $html.='<h5 class="text-center">'.$label.'</h5>';
  42. $html .= '<canvas ';
  43. if(isset($options['height'])) $html .= 'data-height="'.$options['height'].'"';
  44. if(isset($options['properties']['show-legend']) && $options['properties']['show-legend']=='1') $html .= 'data-legend="true" ';
  45. $html .=' data-colors=\'["'.$background.'"]\' data-values="['.implode(',',$values).']" data-labels=\'["'.implode('","',$keys).'"]\' data-type="doughnut" id="myout" width="100" height="100"></canvas>';
  46. }catch(Exception $e){
  47. $html .= '<h5 class="text-center">'.(isset($label)?$label:'Affichage impossible :').'</h5><br>'.$e->getMessage();
  48. }
  49. return $html;
  50. }
  51. }
  52. ?>