You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

пре 8 година
1234567891011121314151617181920212223242526272829303132333435363738
  1. <?php
  2. $this->title = 'Statistiques' ;
  3. use dosamigos\chartjs\ChartJs;
  4. ?>
  5. <h2>Recettes des commandes (pain / vrac)</h2>
  6. <?= ChartJs::widget([
  7. 'type' => 'Line',
  8. 'options' => [
  9. 'height' => 400,
  10. 'width' => 1100
  11. ],
  12. 'data' => [
  13. 'labels' => $data_labels,
  14. 'datasets' => [
  15. [
  16. 'fillColor' => "rgba(220,220,220,0.5)",
  17. 'strokeColor' => "rgba(220,220,220,1)",
  18. 'pointColor' => "rgba(220,220,220,1)",
  19. 'pointStrokeColor' => "#fff",
  20. 'data' => $data_vrac
  21. ],
  22. [
  23. 'fillColor' => "rgba(253,212,75,0.5)",
  24. 'strokeColor' => "rgba(253,212,75,1)",
  25. 'pointColor' => "rgba(253,212,75,1)",
  26. 'pointStrokeColor' => "#fff",
  27. 'data' => $data_pain
  28. ]
  29. ]
  30. ]
  31. ]);
  32. ?>