basic4.php 389 B

12345678910111213141516171819
  1. <?php
  2. require_once 'bootstrap.php';
  3. //random data as X=>array of Y
  4. $data = array();
  5. for ($i = 0; $i <= 4; $i++) {
  6. $data[$i] = array(rand(10, 100),rand(10, 100));
  7. }
  8. $chartMancer->setChartTitle('Thats chart title');
  9. $chartMancer->setChartLegend(array('One','Two'));
  10. $chartMancer->setChartYaxisName('Mbit/s');
  11. $chartMancer->setDisplayPeakValue(true);
  12. $chartMancer->renderChart($data);