index.htm 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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. chart: {
  11. type: 'bubble',
  12. zoomType: 'xy'
  13. },
  14. title: {
  15. text: 'Highcharts Bubbles'
  16. },
  17. series: [{
  18. data: [[97,36,79],[94,74,60],[68,76,58],[64,87,56],[68,27,73],[74,99,42],[7,93,87],[51,69,40],[38,23,33],[57,86,31]]
  19. }, {
  20. data: [[25,10,87],[2,75,59],[11,54,8],[86,55,93],[5,3,58],[90,63,44],[91,33,17],[97,3,56],[15,67,48],[54,25,81]]
  21. }, {
  22. data: [[47,47,21],[20,12,4],[6,76,91],[38,30,60],[57,98,64],[61,17,80],[83,60,13],[67,78,75],[64,12,10],[30,77,82]]
  23. }]
  24. });
  25. });
  26. </script>
  27. </head>
  28. <body>
  29. <script src="../../js/highcharts.js"></script>
  30. <script src="../../js/highcharts-more.js"></script>
  31. <script src="../../js/modules/exporting.js"></script>
  32. <div id="container" style="height: 400px; min-width: 310px; max-width: 600px; margin: 0 auto"></div>
  33. </body>
  34. </html>