Advertisement
Guest User

Untitled

a guest
Aug 25th, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.13 KB | None | 0 0
  1. {
  2. chart: {
  3. {
  4. type: 'column'
  5. }
  6. style: {
  7. color: "#b9bbbb"
  8. },
  9. renderTo: "container",
  10. backgroundColor: "transparent",
  11. lineColor: "rgba(35,37,38,100)",
  12. plotShadow: false
  13. },
  14. credits: {
  15. enabled: false
  16. },
  17. title: {
  18. style: {
  19. color: "#b9bbbb"
  20. },
  21. text: "TAGGING"
  22. },
  23. xAxis: {
  24. categories: ["Aug 6, 2019", "Aug 7, 2019", "Aug 8, 2019", "Aug 9, 2019", "Aug 10, 2019", "Aug 11, 2019", "Aug 12, 2019"]
  25. },
  26. yAxis: {
  27. title: {
  28. style: {
  29. color: "#b9bbbb"
  30. },
  31. text: "Temperature"
  32. }
  33. },
  34. legend: {
  35. itemStyle: {
  36. color: "#b9bbbb"
  37. },
  38. layout: "vertical",
  39. align: "right",
  40. verticalAlign: "middle",
  41. borderWidth: 0
  42. },
  43. series: [{
  44. color: "#108ec5",
  45. name: "Report Done",
  46. data: [1159, 88, 91, 80, 42, 39, 83]
  47. }, {
  48. color: "#52b238",
  49. name: "Report Failed",
  50. data: [-6, 0, 0, 0, 0, 0, 0]
  51. }, {
  52. color: "#ee5728",
  53. name: "Intellifeed Done",
  54. data: [1004, 1213, 1095, 415, 106, 36, 1797]
  55. }, {
  56. color: "Intellifeed Failed",
  57. name: "Intellifeed Failed",
  58. data: [-125, -92, -89, -26, 0, 0, -185]
  59. }]
  60. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement