Guest User

Untitled

a guest
Dec 16th, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. $js = "<script>
  2. $(document).ready(function() {
  3. $(\"#chart\").kendoChart({
  4. title: {
  5. font: \"13px Verdana, sans-serif\",
  6. text: \"'".$question."'\"
  7. },
  8. legend: {
  9. visible: false
  10. },
  11. series: [
  12. {
  13. type: \"bar\",
  14. name: \"Vote count\",
  15. data: [".$vote_."]
  16. }
  17. ],
  18. categoryAxis: {
  19. labels: {
  20. rotation: 0
  21. },
  22. categories: [".$answer_."]
  23.  
  24. },
  25. valueAxis: {
  26. majorUnit: 1
  27. }
  28. });
  29. });
  30. </script>";
Add Comment
Please, Sign In to add comment