Advertisement
Guest User

Untitled

a guest
Jul 9th, 2013
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.60 KB | None | 0 0
  1. <?php
  2. require "razorflow.php";
  3.  
  4. Dashboard::setTitle("Chart Component");
  5.  
  6. // Get the sample DataSource
  7. $dataSource = RFUtil::getSampleDataSource();
  8. $genreChart = new ChartComponent();
  9. $genreChart->setWidth(4);
  10. $genreChart->setCaption("Downloads");
  11. $genreChart->setDataSource($dataSource);
  12. $genreChart->setLabelExpression("Day", "InvoiceDate", array(
  13.     'timestampRange' => true,
  14.     'timeUnit' => 'day'
  15. ));
  16.  
  17. $genreChart->addSeries("Downloads", 'Quantity', array(
  18.     'condition' => "genre.Name = 'Downloads'",
  19.     'displayType' => 'Line'
  20. ));
  21.  
  22.  
  23. Dashboard::addComponent($genreChart);
  24. Dashboard::Render();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement