Advertisement
Guest User

Untitled

a guest
Jul 28th, 2015
209
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.09 KB | None | 0 0
  1. {
  2. "chart": {
  3. "zoomType": "xy"
  4. },
  5. "credits": {
  6. "enabled": false
  7. },
  8. "title": {
  9. "text": null
  10. },
  11. "xAxis": {
  12. "categories": ["Cat1", "Cat2", "Cat3", "Cat4"],
  13. "labels": {
  14. "rotation": -45
  15. },
  16. "title": {
  17. "text": "Categories"
  18. }
  19. },
  20. "yAxis": [{
  21. "reversedStacks": false,
  22. "min": 0,
  23. "max": 100,
  24. "title": {
  25. "text": "Money"
  26. },
  27. "stackLabels": {
  28. "enabled": false,
  29. "style": {
  30. "fontWeight": "bold",
  31. "color": "black",
  32. "font-size": "13px"
  33. },
  34. "format": "£{value:,.0f}"
  35. },
  36. "labels": {
  37. "format": "£{value:,.0f}"
  38. }
  39. }
  40. ],
  41. "legend": {
  42. "align": "center",
  43. "verticalAlign": "bottom",
  44. "borderColor": "#CCC",
  45. "borderWidth": 1,
  46. "shadow": false
  47. },
  48. "tooltip": {
  49. "shared": true,
  50. "valueDecimals": 0
  51. },
  52. "plotOptions": {
  53. "series": {
  54. "marker": {
  55. "enabled": false
  56. }
  57. },
  58. "column": {
  59. "stacking": "normal"
  60. }
  61. },
  62. "series": [{
  63. "type": "spline",
  64. "name": "Today",
  65. "data": [10, 15, 20, 25, 30, 35, 40, 45, 50, 55, 60],
  66. "yAxis": 0,
  67. "color": "red",
  68. "tooltip": {
  69. "valuePrefix": "£",
  70. "valueSuffix": ""
  71. },
  72. "visible": true,
  73. "dataLabels": {
  74. "enabled": true,
  75. "format": "£{point.y:,.0f}",
  76. "style": {
  77. "color": "contrast",
  78. "fontSize": "10px",
  79. "fontWeight": "normal",
  80. "textShadow": "0 0 6px contrast, 0 0 3px contrast"
  81. }
  82. },
  83. "zones": [{
  84. "value": 30,
  85. "color": "green"
  86. }]
  87. }
  88. ]
  89. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement