市长热线演示版

index.htm 1.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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://cdn.hcharts.cn/jquery/jquery-1.8.3.min.js"></script>
  7. <script type="text/javascript">
  8. $(function () {
  9. $('#container').highcharts({
  10. title: {
  11. text: 'Logarithmic axis demo'
  12. },
  13. xAxis: {
  14. tickInterval: 1
  15. },
  16. yAxis: {
  17. type: 'logarithmic',
  18. minorTickInterval: 0.1
  19. },
  20. tooltip: {
  21. headerFormat: '<b>{series.name}</b><br />',
  22. pointFormat: 'x = {point.x}, y = {point.y}'
  23. },
  24. series: [{
  25. data: [1, 2, 4, 8, 16, 32, 64, 128, 256, 512],
  26. pointStart: 1
  27. }]
  28. });
  29. });
  30. </script>
  31. </head>
  32. <body>
  33. <script src="../../js/highcharts.js"></script>
  34. <script src="../../js/modules/exporting.js"></script>
  35. <div id="container" style="min-width: 310px; height: 400px; margin: 0 auto"></div>
  36. </body>
  37. </html>