mix1.html 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <meta name="description" content="ECharts">
  8. <meta name="author" content="kener.linfeng@gmail.com">
  9. <title>ECharts · Example</title>
  10. <link rel="shortcut icon" href="../asset/ico/favicon.png">
  11. <link href="../asset/css/font-awesome.min.css" rel="stylesheet">
  12. <link href="../asset/css/bootstrap.css" rel="stylesheet">
  13. <link href="../asset/css/carousel.css" rel="stylesheet">
  14. <link href="../asset/css/echartsHome.css" rel="stylesheet">
  15. <!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
  16. <!--[if lt IE 9]>
  17. <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
  18. <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
  19. <![endif]-->
  20. <script src="./www/js/echarts.js"></script>
  21. <script src="../asset/js/codemirror.js"></script>
  22. <script src="../asset/js/javascript.js"></script>
  23. <link href="../asset/css/codemirror.css" rel="stylesheet">
  24. <link href="../asset/css/monokai.css" rel="stylesheet">
  25. </head>
  26. <body>
  27. <!-- Fixed navbar -->
  28. <div class="navbar navbar-default navbar-fixed-top" role="navigation" id="head"></div>
  29. <div class="container-fluid">
  30. <div class="row-fluid example">
  31. <div id="sidebar-code" class="col-md-4">
  32. <div class="well sidebar-nav">
  33. <div class="nav-header"><a href="#" onclick="autoResize()" class="glyphicon glyphicon-resize-full" id ="icon-resize" ></a>option</div>
  34. <textarea id="code" name="code">
  35. option = {
  36. tooltip : {
  37. trigger: 'axis'
  38. },
  39. toolbox: {
  40. show : true,
  41. feature : {
  42. mark : {show: true},
  43. dataView : {show: true, readOnly: false},
  44. magicType: {show: true, type: ['line', 'bar']},
  45. restore : {show: true},
  46. saveAsImage : {show: true}
  47. }
  48. },
  49. calculable : true,
  50. legend: {
  51. data:['蒸发量','降水量','平均温度']
  52. },
  53. xAxis : [
  54. {
  55. type : 'category',
  56. data : ['1月','2月','3月','4月','5月','6月','7月','8月','9月','10月','11月','12月']
  57. }
  58. ],
  59. yAxis : [
  60. {
  61. type : 'value',
  62. name : '水量',
  63. axisLabel : {
  64. formatter: '{value} ml'
  65. }
  66. },
  67. {
  68. type : 'value',
  69. name : '温度',
  70. axisLabel : {
  71. formatter: '{value} °C'
  72. }
  73. }
  74. ],
  75. series : [
  76. {
  77. name:'蒸发量',
  78. type:'bar',
  79. data:[2.0, 4.9, 7.0, 23.2, 25.6, 76.7, 135.6, 162.2, 32.6, 20.0, 6.4, 3.3]
  80. },
  81. {
  82. name:'降水量',
  83. type:'bar',
  84. data:[2.6, 5.9, 9.0, 26.4, 28.7, 70.7, 175.6, 182.2, 48.7, 18.8, 6.0, 2.3]
  85. },
  86. {
  87. name:'平均温度',
  88. type:'line',
  89. yAxisIndex: 1,
  90. data:[2.0, 2.2, 3.3, 4.5, 6.3, 10.2, 20.3, 23.4, 23.0, 16.5, 12.0, 6.2]
  91. }
  92. ]
  93. };
  94. </textarea>
  95. </div><!--/.well -->
  96. </div><!--/span-->
  97. <div id="graphic" class="col-md-8">
  98. <div id="main" class="main"></div>
  99. <div>
  100. <button type="button" class="btn btn-sm btn-success" onclick="refresh(true)">刷 新</button>
  101. <span class="text-primary">切换主题</span>
  102. <select id="theme-select"></select>
  103. <span id='wrong-message' style="color:red"></span>
  104. </div>
  105. </div><!--/span-->
  106. </div><!--/row-->
  107. </div><!--/.fluid-container-->
  108. <footer id="footer"></footer>
  109. <!-- Le javascript
  110. ================================================== -->
  111. <!-- Placed at the end of the document so the pages load faster -->
  112. <script src="../asset/js/jquery.min.js"></script>
  113. <script type="text/javascript" src="../asset/js/echartsHome.js"></script>
  114. <script src="../asset/js/bootstrap.min.js"></script>
  115. <script src="../asset/js/echartsExample.js"></script>
  116. </body>
  117. </html>