line7.html 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  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. title : {
  37. text: '双数值轴折线',
  38. subtext: '纯属虚构'
  39. },
  40. tooltip : {
  41. trigger: 'axis',
  42. axisPointer:{
  43. show: true,
  44. type : 'cross',
  45. lineStyle: {
  46. type : 'dashed',
  47. width : 1
  48. }
  49. },
  50. formatter : function (params) {
  51. return params.seriesName + ' : [ '
  52. + params.value[0] + ', '
  53. + params.value[1] + ' ]';
  54. }
  55. },
  56. legend: {
  57. data:['数据1','数据2']
  58. },
  59. toolbox: {
  60. show : true,
  61. feature : {
  62. mark : {show: true},
  63. dataZoom : {show: true},
  64. dataView : {show: true, readOnly: false},
  65. magicType : {show: true, type: ['line', 'bar']},
  66. restore : {show: true},
  67. saveAsImage : {show: true}
  68. }
  69. },
  70. calculable : true,
  71. xAxis : [
  72. {
  73. type: 'value'
  74. }
  75. ],
  76. yAxis : [
  77. {
  78. type: 'value',
  79. axisLine: {
  80. lineStyle: {
  81. color: '#dc143c'
  82. }
  83. }
  84. }
  85. ],
  86. series : [
  87. {
  88. name:'数据1',
  89. type:'line',
  90. data:[
  91. [1.5, 10], [5, 7], [8, 8], [12, 6], [11, 12], [16, 9], [14, 6], [17, 4], [19, 9]
  92. ],
  93. markPoint : {
  94. data : [
  95. // 纵轴,默认
  96. {type : 'max', name: '最大值',symbol: 'emptyCircle', itemStyle:{normal:{color:'#dc143c',label:{position:'top'}}}},
  97. {type : 'min', name: '最小值',symbol: 'emptyCircle', itemStyle:{normal:{color:'#dc143c',label:{position:'bottom'}}}},
  98. // 横轴
  99. {type : 'max', name: '最大值', valueIndex: 0, symbol: 'emptyCircle', itemStyle:{normal:{color:'#1e90ff',label:{position:'right'}}}},
  100. {type : 'min', name: '最小值', valueIndex: 0, symbol: 'emptyCircle', itemStyle:{normal:{color:'#1e90ff',label:{position:'left'}}}}
  101. ]
  102. },
  103. markLine : {
  104. data : [
  105. // 纵轴,默认
  106. {type : 'max', name: '最大值', itemStyle:{normal:{color:'#dc143c'}}},
  107. {type : 'min', name: '最小值', itemStyle:{normal:{color:'#dc143c'}}},
  108. {type : 'average', name : '平均值', itemStyle:{normal:{color:'#dc143c'}}},
  109. // 横轴
  110. {type : 'max', name: '最大值', valueIndex: 0, itemStyle:{normal:{color:'#1e90ff'}}},
  111. {type : 'min', name: '最小值', valueIndex: 0, itemStyle:{normal:{color:'#1e90ff'}}},
  112. {type : 'average', name : '平均值', valueIndex: 0, itemStyle:{normal:{color:'#1e90ff'}}}
  113. ]
  114. }
  115. },
  116. {
  117. name:'数据2',
  118. type:'line',
  119. data:[
  120. [1, 2], [2, 3], [4, 2], [7, 5], [11, 2], [18, 3]
  121. ]
  122. }
  123. ]
  124. };
  125. </textarea>
  126. </div><!--/.well -->
  127. </div><!--/span-->
  128. <div id="graphic" class="col-md-8">
  129. <div id="main" class="main"></div>
  130. <div>
  131. <button type="button" class="btn btn-sm btn-success" onclick="refresh(true)">刷 新</button>
  132. <span class="text-primary">切换主题</span>
  133. <select id="theme-select"></select>
  134. <span id='wrong-message' style="color:red"></span>
  135. </div>
  136. </div><!--/span-->
  137. </div><!--/row-->
  138. </div><!--/.fluid-container-->
  139. <footer id="footer"></footer>
  140. <!-- Le javascript
  141. ================================================== -->
  142. <!-- Placed at the end of the document so the pages load faster -->
  143. <script src="../asset/js/jquery.min.js"></script>
  144. <script type="text/javascript" src="../asset/js/echartsHome.js"></script>
  145. <script src="../asset/js/bootstrap.min.js"></script>
  146. <script src="../asset/js/echartsExample.js"></script>
  147. </body>
  148. </html>