Guest User

Untitled

a guest
Feb 13th, 2018
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.09 KB | None | 0 0
  1. {
  2. chart: {
  3. renderTo: 'container',
  4. type: 'area',
  5. plotBackgroundColor: 'none',
  6. backgroundColor: 'none',
  7. borderColor: 'none',
  8. plotBorderColor: 'none',
  9. zoomType: 'x',
  10. spacingRight: 20
  11. },
  12. credits: {
  13. enabled: false
  14. },
  15. title: {
  16. text: ''
  17. },
  18. subtitle: {
  19. text: ''
  20. },
  21. xAxis: {
  22. categories: [''],
  23. type: 'linear',
  24. text: '',
  25. maxZoom: 2,
  26. },
  27. yAxis: {
  28. min: 0,
  29. type: 'linear',
  30. title: {
  31. text: ''
  32. }
  33. },
  34. legend: {
  35. enabled: true,
  36. backgroundColor: '#222425',
  37. itemStyle: {
  38. color: '#FAF0E6'
  39. }
  40. },
  41. tooltip: {
  42. useHTML: true,
  43. shared: true,
  44. crosshairs: true,
  45. backgroundColor: '#101213',
  46. xDateFormat: '%Y-%m-%d',
  47. style: {
  48. padding: 25,
  49. color: '#FFFFFF'
  50. }
  51. },
  52. plotOptions: {
  53. column: {
  54. pointPadding: 0.2,
  55. borderWidth: 0
  56. },
  57. series: {
  58. fillOpacity: 0.4,
  59. }
  60. },
  61. series: [
  62. {
  63. name: 'Receipts',
  64. data: [],
  65. color: '#5DD12A',
  66. marker: { enabled: false }
  67. }
  68. ,
  69. {
  70. name: 'Returns',
  71. data: [],
  72. color: '#99FF99',
  73. marker: { enabled: false }
  74. }
  75. ]
  76. }
Add Comment
Please, Sign In to add comment