Guest User

Untitled

a guest
Jul 16th, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.28 KB | None | 0 0
  1. chart: {
  2. type: 'bar'
  3. },
  4. title: {
  5. text: 'Fruit Consumption'
  6. },
  7. xAxis: {
  8. categories: ['Apples', 'Bananas', 'Oranges']
  9. },
  10. yAxis: {
  11. title: {
  12. text: 'Fruit eaten'
  13. }
  14. },
  15. motion: {
  16. enabled: true,
  17. axisLabel: 'year',
  18. labels: [2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010],
  19. series: [0, 1], // The series which holds points to update
  20. updateInterval: 20,
  21. magnet: {
  22. type: 'both', // thumb / point / both
  23. round: 'floor', // ceil / floor / round
  24. smoothThumb: true, // defaults to true
  25. step: 0.01
  26. }
  27. },
  28. series: [{
  29. name: 'Jane',
  30. data: [
  31. {
  32. sequence: [1, 5, 2, 7, 7, 1, 6, 9, 2, 5, 1]
  33. }, {
  34. sequence: [5, 5, 7, 7, 3, 8, 9, 9, 1, 7, 3]
  35. }, {
  36. sequence: [7, 1, 9, 3, 7, 4, 3, 8, 7, 1, 4]
  37. }
  38.  
  39. ]
  40. }, {
  41. name: 'John',
  42. data: [
  43. {
  44. sequence: [7, 1, 9, 3, 7, 4, 3, 8, 7, 1, 4]
  45. }, {
  46. sequence: [1, 5, 2, 7, 7, 1, 6, 9, 2, 5, 1]
  47. }, {
  48. sequence: [9, 1, 7, 3, 3, 2, 1, 4, 5, 6, 7]
  49. }
  50. ]
  51. }]
  52. });
Add Comment
Please, Sign In to add comment