Advertisement
Guest User

Untitled

a guest
Jan 30th, 2015
195
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.04 KB | None | 0 0
  1. {
  2. chart: {
  3. type: 'spline',
  4. inverted: true
  5. style: {
  6. color: "#b9bbbb"
  7. },
  8. renderTo: "container",
  9. backgroundColor: "transparent",
  10. lineColor: "rgba(35,37,38,100)",
  11. plotShadow: false
  12. },
  13. credits: {
  14. enabled: false
  15. },
  16. title: {
  17. style: {
  18. color: "#b9bbbb"
  19. },
  20. text: "Monthly Average Temperature"
  21. },
  22. xAxis: {
  23. categories: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"]
  24. },
  25. yAxis: {
  26. title: {
  27. style: {
  28. color: "#b9bbbb"
  29. },
  30. text: "Temperature"
  31. }
  32. },
  33. legend: {
  34. itemStyle: {
  35. color: "#b9bbbb"
  36. },
  37. layout: "vertical",
  38. align: "right",
  39. verticalAlign: "middle",
  40. borderWidth: 0
  41. },
  42. series: [{
  43. color: "#108ec5",
  44. name: "NewYork",
  45. data: [17.0, 22.0, 24.8, 24.1, 20.1, 14.1, 8.6, 2.5]
  46. }, {
  47. color: "#52b238",
  48. name: "Berlin",
  49. data: [13.5, 17.0, 18.6, 17.9, 14.3, 9.0, 3.9, 1.0]
  50. }, {
  51. color: "#ee5728",
  52. name: "London",
  53. data: [11.9, 15.2, 17.0, 16.6, 14.2, 10.3, 6.6, 4.8]
  54. }]
  55. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement