Advertisement
Guest User

Untitled

a guest
Apr 17th, 2014
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.56 KB | None | 0 0
  1. $(function () {
  2. $('#container').highcharts({
  3. chart: {
  4. type: 'column'
  5.  
  6. },
  7. title: {
  8. text: 'Monthly Average Rainfall'
  9. },
  10. subtitle: {
  11. text: 'Source: WorldClimate.com'
  12. },
  13. xAxis: {
  14. type: 'category'
  15. },
  16. yAxis: {
  17. min: 0,
  18. title: {
  19. text: 'Rainfall (mm)'
  20. }
  21. },
  22. series: [{
  23. id: 'TokyoID',
  24. name: 'Tokyo',
  25. data: [{
  26. name: 'namey',
  27. y: 49.9,
  28. drilldown: 'tokyo 1'
  29. }, {
  30. y: 71.5,
  31. name: 'namex',
  32. drilldown: 'tokyo 2'
  33. }]
  34.  
  35. }, {
  36. name: 'errTest',
  37. type: 'errorbar',
  38. linkedTo: 'TokyoID',
  39. data: [{
  40. high: 53,
  41. low: 46.9
  42. }, {
  43. high: 73,
  44. low: 69.9
  45. }]
  46.  
  47. }],
  48. drilldown: {
  49. series: [{
  50. id: 'tokyo 1',
  51. data: [{
  52. y: 39.9,
  53. name: 'name1'
  54. }, {
  55. y: 31.5,
  56. name: 'name2'
  57. }]
  58.  
  59. }, {
  60. name: 'drillDownErrTest',
  61. linkedTo: 'tokyo 1',
  62. type: 'errorbar',
  63. data: [{
  64. high: 53,
  65. low: 46.9
  66. }, {
  67. high: 73,
  68. low: 69.9
  69. }]
  70.  
  71. }]
  72. }
  73. });
  74. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement