bar7.html 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  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: 'From ExcelHome',
  39. sublink: 'http://e.weibo.com/1341556070/AjQH99che'
  40. },
  41. tooltip : {
  42. trigger: 'axis',
  43. axisPointer : { // 坐标轴指示器,坐标轴触发有效
  44. type : 'shadow' // 默认为直线,可选为:'line' | 'shadow'
  45. },
  46. formatter: function (params) {
  47. var tar = params[0];
  48. return tar.name + '<br/>' + tar.seriesName + ' : ' + tar.value;
  49. }
  50. },
  51. toolbox: {
  52. show : true,
  53. feature : {
  54. mark : {show: true},
  55. dataView : {show: true, readOnly: false},
  56. restore : {show: true},
  57. saveAsImage : {show: true}
  58. }
  59. },
  60. xAxis : [
  61. {
  62. type : 'category',
  63. splitLine: {show:false},
  64. data : ['总费用','房租','水电费','交通费','伙食费','日用品数']
  65. }
  66. ],
  67. yAxis : [
  68. {
  69. type : 'value'
  70. }
  71. ],
  72. series : [
  73. {
  74. name:'辅助',
  75. type:'bar',
  76. stack: '总量',
  77. itemStyle:{
  78. normal:{
  79. barBorderColor:'rgba(0,0,0,0)',
  80. color:'rgba(0,0,0,0)'
  81. },
  82. emphasis:{
  83. barBorderColor:'rgba(0,0,0,0)',
  84. color:'rgba(0,0,0,0)'
  85. }
  86. },
  87. data:[0, 1700, 1400, 1200, 300, 0]
  88. },
  89. {
  90. name:'生活费',
  91. type:'bar',
  92. stack: '总量',
  93. itemStyle : { normal: {label : {show: true, position: 'inside'}}},
  94. data:[2900, 1200, 300, 200, 900, 300]
  95. }
  96. ]
  97. };
  98. </textarea>
  99. </div><!--/.well -->
  100. </div><!--/span-->
  101. <div id="graphic" class="col-md-8">
  102. <div id="main" class="main"></div>
  103. <div>
  104. <button type="button" class="btn btn-sm btn-success" onclick="refresh(true)">刷 新</button>
  105. <span class="text-primary">切换主题</span>
  106. <select id="theme-select"></select>
  107. <span id='wrong-message' style="color:red"></span>
  108. </div>
  109. </div><!--/span-->
  110. </div><!--/row-->
  111. </div><!--/.fluid-container-->
  112. <footer id="footer"></footer>
  113. <!-- Le javascript
  114. ================================================== -->
  115. <!-- Placed at the end of the document so the pages load faster -->
  116. <script src="../asset/js/jquery.min.js"></script>
  117. <script type="text/javascript" src="../asset/js/echartsHome.js"></script>
  118. <script src="../asset/js/bootstrap.min.js"></script>
  119. <script src="../asset/js/echartsExample.js"></script>
  120. </body>
  121. </html>