bar3.html 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  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. },
  43. legend: {
  44. data:['2011年', '2012年']
  45. },
  46. toolbox: {
  47. show : true,
  48. feature : {
  49. mark : {show: true},
  50. dataView : {show: true, readOnly: false},
  51. magicType: {show: true, type: ['line', 'bar']},
  52. restore : {show: true},
  53. saveAsImage : {show: true}
  54. }
  55. },
  56. calculable : true,
  57. xAxis : [
  58. {
  59. type : 'value',
  60. boundaryGap : [0, 0.01]
  61. }
  62. ],
  63. yAxis : [
  64. {
  65. type : 'category',
  66. data : ['巴西','印尼','美国','印度','中国','世界人口(万)']
  67. }
  68. ],
  69. series : [
  70. {
  71. name:'2011年',
  72. type:'bar',
  73. data:[18203, 23489, 29034, 104970, 131744, 630230]
  74. },
  75. {
  76. name:'2012年',
  77. type:'bar',
  78. data:[19325, 23438, 31000, 121594, 134141, 681807]
  79. }
  80. ]
  81. };
  82. </textarea>
  83. </div><!--/.well -->
  84. </div><!--/span-->
  85. <div id="graphic" class="col-md-8">
  86. <div id="main" class="main"></div>
  87. <div>
  88. <button type="button" class="btn btn-sm btn-success" onclick="refresh(true)">刷 新</button>
  89. <span class="text-primary">切换主题</span>
  90. <select id="theme-select"></select>
  91. <span id='wrong-message' style="color:red"></span>
  92. </div>
  93. </div><!--/span-->
  94. </div><!--/row-->
  95. </div><!--/.fluid-container-->
  96. <footer id="footer"></footer>
  97. <!-- Le javascript
  98. ================================================== -->
  99. <!-- Placed at the end of the document so the pages load faster -->
  100. <script src="../asset/js/jquery.min.js"></script>
  101. <script type="text/javascript" src="../asset/js/echartsHome.js"></script>
  102. <script src="../asset/js/bootstrap.min.js"></script>
  103. <script src="../asset/js/echartsExample.js"></script>
  104. </body>
  105. </html>