Guest User

Untitled

a guest
Jan 18th, 2019
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. $(function() {
  2. $.getJSON("/com/stats.cfc?method=getPageViews&returnformat=json", {}, function(data) {
  3. $.plot($("#chart"), [ data ],
  4. {
  5. lines:{show:true},
  6. points:{show:true},
  7. tickSize:1,
  8. tickDecimals:0
  9. })
  10.  
  11. })
  12. });
  13.  
  14. $(function() {
  15. $.getJSON("/com/stats.cfc?method=getPageViews&returnformat=json", {}, function(data) {
  16. $.plot($("#chart"), [ data ],
  17. {
  18. lines:{show:true},
  19. points:{show:true},
  20. xaxis:
  21. {
  22. tickSize:1,
  23. tickDecimals:0
  24. }
  25. })
  26.  
  27. })
  28. });
Add Comment
Please, Sign In to add comment