Advertisement
Guest User

Untitled

a guest
Jul 28th, 2015
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.17 KB | None | 0 0
  1. {
  2. credits: {
  3. enabled: false
  4. },
  5. colors: ['#6FAD2D', '#E8E800'],
  6. chart: {
  7. type: 'column',
  8. spacingBottom: 100
  9. },
  10. title: {
  11. text: null
  12. },
  13. xAxis: {
  14. categories: [ 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
  15. },
  16. yAxis: {
  17. min: 0,
  18. title: {
  19. text: 'Total Successful '
  20. },
  21. stackLabels: {
  22. enabled: true,
  23. style: {
  24. fontWeight: 'bold',
  25. color: '#000'
  26. }
  27. }
  28. },
  29. legend: {
  30. align: 'center',
  31. x: -30,
  32. verticalAlign: 'bottom',
  33. y: 45,
  34. floating: true,
  35. backgroundColor: '#fff',
  36. borderColor: '#CCC',
  37. borderWidth: 1,
  38. shadow: false
  39. },
  40. tooltip: {
  41. formatter: function () {
  42. return '<b>' + this.x + '</b><br/>' +
  43. this.series.name + ': ' + this.y + '<br/>' +
  44. 'Total: ' + this.point.stackTotal;
  45. }
  46. },
  47. plotOptions: {
  48. column: {
  49. stacking: 'normal',
  50. dataLabels: {
  51. enabled: true,
  52. color: '#fff',
  53. style: {
  54. fontSize: '8px'
  55. }
  56. }
  57. }
  58. },
  59. series: [{
  60. name: 'GTB',
  61. data: [350, 432, 506, 435]
  62. }, {
  63. name: 'NIP',
  64. data: [217, 253, 273, 277]
  65. }]
  66. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement