Guest User

Untitled

a guest
Jul 21st, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. <div id="placeholder" style="width:600px;height:300px;"></div>
  2.  
  3. <p>Graph here</p>
  4.  
  5. <script type="text/javascript">
  6.  
  7.  
  8. var data = [
  9. <? foreach ($all_users as $user): ?>
  10. ["day","<?= count($all_users); ?>"],
  11. <? endforeach; ?>
  12. ];
  13.  
  14. $.plot($("#placeholder"), data, {
  15. yaxis: {
  16. min: 0,
  17. max: 100
  18. },
  19. xaxis: { mode: "time",minTickSize: [0, "day"],
  20. min: (new Date("<?= $from_date; ?>")).getTime(),
  21. max: (new Date("<?= $until_date; ?>")).getTime()
  22. },
  23. "lines": {"show": "true"},
  24. "points": {"show": "true"},
  25. clickable:true,hoverable: true
  26. });
Add Comment
Please, Sign In to add comment