Advertisement
Guest User

Untitled

a guest
Aug 25th, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.96 KB | None | 0 0
  1. {
  2. chart: {
  3. style: {
  4. color: "#b9bbbb"
  5. },
  6. renderTo: "container",
  7. backgroundColor: "transparent",
  8. plotShadow: false
  9. },
  10. title: {
  11. text: 'Tagging',
  12. style: {
  13. fontWeight: 'bold',
  14. color: 'white'
  15. }
  16. },
  17. xAxis: {
  18. categories: ['Aug. 6, 2019', 'Aug. 7, 2019', 'Aug. 8, 2019', 'Aug. 9, 2019', 'Aug. 10, 2019', 'Aug. 11, 2019', 'Aug. 12, 2019', ],
  19. labels: {
  20. style: {
  21. fontWeight: 'bold',
  22. color: 'white'
  23. }
  24. }
  25. },
  26. yAxis: {
  27. title: {
  28. text: 'Counts',
  29. style: {
  30. fontWeight: 'bold',
  31. color: 'white'
  32. }
  33. },
  34. gridLineWidth: 0.4,
  35. labels: {
  36. formatter: function() {
  37. return Math.abs(this.value);
  38. },
  39. style: {
  40. fontWeight: 'bold',
  41. color: 'white'
  42. }
  43. },
  44. stackLabels: {
  45. formatter: function() {
  46. return Math.abs(this.total);
  47. },
  48. enabled: true,
  49. style: {
  50. color: (Highcharts.defaultOptions.title.style && Highcharts.defaultOptions.title.style.color) || 'white'
  51. }
  52. }
  53. },
  54. legend: {
  55. align: 'center',
  56. verticalAlign: 'bottom',
  57. floating: false,
  58. backgroundColor: '',
  59. borderColor: '',
  60. borderWidth: 0,
  61. shadow: false,
  62. itemStyle: {
  63. 'color': 'white',
  64. 'fontWeight': 'bold'
  65. }
  66. },
  67. plotOptions: {
  68. column: {
  69. borderWidth: 0,
  70. stacking: 'normal',
  71. dataLabels: {
  72. enabled: false
  73. }
  74. }
  75. },
  76. series: [{
  77. name: 'Report Done',
  78. data: [1159, 88, 91, 80, 42, 39, 83, ],
  79. stack: 'one',
  80. color: 'green'
  81. },
  82. {
  83. name: 'Report Failed',
  84. data: [-6, 0, 0, 0, 0, 0, 0, ],
  85. stack: 'one',
  86. color: 'crimson'
  87. }, {
  88. name: 'Intellifeed Done',
  89. data: [1004, 1213, 1095, 415, 106, 36, 1797, ],
  90. stack: 'two',
  91. color: 'lightgreen'
  92. },
  93. {
  94. name: 'Intellifeed Failed',
  95. data: [-125, -92, -89, -26, 0, 0, -185, ],
  96. stack: 'two',
  97. color: 'coral'
  98. }
  99. ]
  100. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement