basic2.php 393 B

123456789101112131415
  1. <?php
  2. require_once 'bootstrap.php';
  3. //random data as X=>array of nested Y
  4. $data = array();
  5. for ($i = 0; $i <= 288; $i++) {
  6. $data[$i] = array(rand(0, 129), rand(0, 79), rand(0, 54), rand(0, 41), rand(0, 4));
  7. }
  8. //Transparent background
  9. $chartMancer->setBackgroundTransparent(true);
  10. //saving chart as file on filesystem
  11. $chartMancer->renderChart($data,'/tmp/somechart.png');