index.htm 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <!DOCTYPE HTML>
  2. <html>
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  5. <title>Highcharts Example</title>
  6. <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
  7. <script type="text/javascript">
  8. $(function () {
  9. $('#container').highcharts({
  10. title: {
  11. text: 'Monthly Average Temperature',
  12. x: -20 //center
  13. },
  14. subtitle: {
  15. text: 'Source: WorldClimate.com',
  16. x: -20
  17. },
  18. xAxis: {
  19. categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun',
  20. 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
  21. },
  22. yAxis: {
  23. title: {
  24. text: 'Temperature (°C)'
  25. },
  26. plotLines: [{
  27. value: 0,
  28. width: 1,
  29. color: '#808080'
  30. }]
  31. },
  32. tooltip: {
  33. valueSuffix: '°C'
  34. },
  35. legend: {
  36. layout: 'vertical',
  37. align: 'right',
  38. verticalAlign: 'middle',
  39. borderWidth: 0
  40. },
  41. series: [{
  42. name: 'Tokyo',
  43. data: [7.0, 6.9, 9.5, 14.5, 18.2, 21.5, 25.2, 26.5, 23.3, 18.3, 13.9, 9.6]
  44. }, {
  45. name: 'New York',
  46. data: [-0.2, 0.8, 5.7, 11.3, 17.0, 22.0, 24.8, 24.1, 20.1, 14.1, 8.6, 2.5]
  47. }, {
  48. name: 'Berlin',
  49. data: [-0.9, 0.6, 3.5, 8.4, 13.5, 17.0, 18.6, 17.9, 14.3, 9.0, 3.9, 1.0]
  50. }, {
  51. name: 'London',
  52. data: [3.9, 4.2, 5.7, 8.5, 11.9, 15.2, 17.0, 16.6, 14.2, 10.3, 6.6, 4.8]
  53. }]
  54. });
  55. });
  56. </script>
  57. </head>
  58. <body>
  59. <script src="../../js/highcharts.js"></script>
  60. <script src="../../js/modules/exporting.js"></script>
  61. <div id="container" style="min-width: 310px; height: 400px; margin: 0 auto"></div>
  62. </body>
  63. </html>