Advertisement
Guest User

Untitled

a guest
Aug 23rd, 2019
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.30 KB | None | 0 0
  1. {
  2. chart: {
  3. backgroundColor: '#2a2a2a',
  4. spacing: [0, 0, 0, 0],
  5. type: 'column'
  6. },
  7. title: {
  8. text: 'Tagging'
  9. },
  10. xAxis: {
  11. categories: ['Aug. 5, 2019', 'Aug. 6, 2019', 'Aug. 7, 2019', 'Aug. 8, 2019', 'Aug. 9, 2019', 'Aug. 10, 2019', 'Aug. 11, 2019', ]
  12. },
  13. yAxis: {
  14. title: {
  15. text: 'Counts'
  16. },
  17. labels: {
  18. formatter: function() {
  19. return Math.abs(this.value);
  20. }
  21. },
  22. stackLabels: {
  23. formatter: function() {
  24. return Math.abs(this.total);
  25. },
  26. enabled: true,
  27. style: {
  28. color: (Highcharts.defaultOptions.title.style && Highcharts.defaultOptions.title.style.color) || 'gray'
  29. }
  30. }
  31. },
  32. plotOptions: {
  33. column: {
  34. stacking: 'normal',
  35. dataLabels: {
  36. enabled: false
  37. }
  38. }
  39. },
  40. credits: {
  41. enabled: false
  42. },
  43. series: [{
  44. name: 'Report Done',
  45. data: [27, 1159, 88, 91, 80, 42, 39, ],
  46. stack: 'one',
  47. color: 'Green'
  48. }, {
  49. name: 'Report Failed',
  50. data: [0, -6, 0, 0, 0, 0, 0, ],
  51. stack: 'one',
  52. color: 'crimson'
  53. }, {
  54. name: 'Intellifeed Done',
  55. data: [1815, 1004, 1213, 1095, 415, 106, 36, ],
  56. stack: 'two',
  57. color: 'lightgreen'
  58. }, {
  59. name: 'Intellifeed Failed',
  60. data: [-145, -125, -92, -89, -26, 0, 0, ],
  61. stack: 'two',
  62. color: 'coral'
  63. }]
  64. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement