area-basic.html 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Highcharts Example</title>
  6. <script src="../../src/html5shiv-printshiv.js"></script>
  7. <script src="//ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js"></script>
  8. <script src="highcharts.js"></script>
  9. </head>
  10. <body>
  11. <div id="container" style="width:800px;height:400px;margin:0 auto"></div>
  12. <script>
  13. new Highcharts.Chart({
  14. 'chart': {
  15. 'renderTo': 'container',
  16. 'defaultSeriesType': 'area'
  17. },
  18. 'title': {
  19. 'text': 'US and USSR nuclear stockpiles'
  20. },
  21. 'subtitle': {
  22. 'text': 'Source: <a href="http://thebulletin.metapress.com/content/c4120650912x74k7/fulltext.pdf">'+
  23. 'thebulletin.metapress.com</a>'
  24. },
  25. 'xAxis': {
  26. 'labels': {
  27. 'formatter': function() {
  28. return this.value;
  29. }
  30. }
  31. },
  32. 'yAxis': {
  33. 'title': {
  34. 'text': 'Nuclear weapon states'
  35. },
  36. 'labels': {
  37. 'formatter': function() {
  38. return this.value / 1000 +'k';
  39. }
  40. }
  41. },
  42. 'tooltip': {
  43. 'formatter': function() {
  44. return this.series.name +' produced <b>'+
  45. Highcharts.numberFormat(this.y, 0) +'</b><br/>warheads in '+ this.x;
  46. }
  47. },
  48. 'plotOptions': {
  49. 'area': {
  50. 'pointStart': 1940,
  51. 'marker': {
  52. 'enabled': false,
  53. 'symbol': 'circle',
  54. 'radius': 2,
  55. 'states': {
  56. 'hover': {
  57. 'enabled': true
  58. }
  59. }
  60. }
  61. }
  62. },
  63. 'series': [{
  64. 'name': 'USA',
  65. 'data': [null, null, null, null, null, 6 , 11, 32, 110, 235, 369, 640,
  66. 1005, 1436, 2063, 3057, 4618, 6444, 9822, 15468, 20434, 24126,
  67. 27387, 29459, 31056, 31982, 32040, 31233, 29224, 27342, 26662,
  68. 26956, 27912, 28999, 28965, 27826, 25579, 25722, 24826, 24605,
  69. 24304, 23464, 23708, 24099, 24357, 24237, 24401, 24344, 23586,
  70. 22380, 21004, 17287, 14747, 13076, 12555, 12144, 11009, 10950,
  71. 10871, 10824, 10577, 10527, 10475, 10421, 10358, 10295, 10104 ]
  72. }, {
  73. 'name': 'USSR/Russia',
  74. 'data': [null, null, null, null, null, null, null , null, null, null,
  75. 5, 25, 50, 120, 150, 200, 426, 660, 869, 1060, 1605, 2471, 3322,
  76. 4238, 5221, 6129, 7089, 8339, 9399, 10538, 11643, 13092, 14478,
  77. 15915, 17385, 19055, 21205, 23044, 25393, 27935, 30062, 32049,
  78. 33952, 35804, 37431, 39197, 45000, 43000, 41000, 39000, 37000,
  79. 35000, 33000, 31000, 29000, 27000, 25000, 24000, 23000, 22000,
  80. 21000, 20000, 19000, 18000, 18000, 17000, 16000]
  81. }]
  82. });
  83. </script>
  84. </body>
  85. </html>