Advertisement
Guest User

Untitled

a guest
May 27th, 2016
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.12 KB | None | 0 0
  1. $(function () {
  2. $('#container').highcharts({
  3. chart: {
  4. type: 'column'
  5. },
  6. title: {
  7. text: 'Space Overview'
  8. },
  9. xAxis: {
  10. categories: ['a', 'b', 'c', 'd']
  11. },
  12. yAxis: {
  13. min: 0,
  14. title: {
  15. text: 'Total Space (%)'
  16. }
  17. },
  18. tooltip: {
  19. pointFormat: '<span style="color:{series.color}">{series.name}</span>: <b>{point.y}</b> ({point.percentage:.0f}%)<br/>',
  20. shared: true
  21. },
  22. plotOptions: {
  23. column: {
  24. stacking: 'percent'
  25. },
  26. series: {
  27. cursor: 'pointer',
  28. point: {
  29. events: {
  30. click: function() {
  31. location.href = this.options.url;
  32. }
  33. }
  34. }
  35. }
  36. },
  37. subtitle: {
  38. text: '+ Items relate to items in the dispay cabinets.',
  39. align: 'left',
  40. x: 10
  41. },
  42. series: [{
  43. name: 'Free',
  44. data: [1498, 1123, 556, 1176],
  45. url: ['Spaces.aspx?box=a', 'Spaces.aspx?box=b', 'Spaces.aspx?box=c', 'Spaces.aspx?box=d']
  46. }, {
  47. name: 'Used',
  48. data: [1234,233,23,759],
  49. url: ['Spaces.aspx?box=a', 'Spaces.aspx?box=b', 'Spaces.aspx?box=c', 'Spaces.aspx?box=d']
  50. }]
  51. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement