webkit-dep.html 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  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. <style type="text/css">
  26. .CodeMirror {
  27. height: 620px;
  28. }
  29. </style>
  30. </head>
  31. <body>
  32. <!-- Fixed navbar -->
  33. <div class="navbar navbar-default navbar-fixed-top" role="navigation" id="head"></div>
  34. <div class="container-fluid">
  35. <div class="row-fluid example">
  36. <div id="sidebar-code" class="col-md-4">
  37. <div class="well sidebar-nav">
  38. <div class="nav-header"><a href="#" onclick="autoResize()" class="glyphicon glyphicon-resize-full" id ="icon-resize" ></a>option</div>
  39. <textarea id="code" name="code">
  40. option = {
  41. title : {
  42. text: 'webkit内核依赖',
  43. subtext: '数据来自网络',
  44. x:'right',
  45. y:'bottom'
  46. },
  47. tooltip : {
  48. trigger: 'item',
  49. formatter : "{b}"
  50. },
  51. toolbox: {
  52. show : true,
  53. feature : {
  54. restore : {show: true},
  55. magicType: {
  56. show: true,
  57. type: ['force', 'chord'],
  58. option: {
  59. chord: {
  60. minRadius : 2,
  61. maxRadius : 10,
  62. ribbonType: false,
  63. itemStyle: {
  64. normal: {
  65. label: {
  66. show: true,
  67. rotate: true
  68. },
  69. chordStyle: {
  70. opacity: 0.2
  71. }
  72. }
  73. }
  74. },
  75. force: {
  76. minRadius : 5,
  77. maxRadius : 8,
  78. itemStyle : {
  79. normal : {
  80. label: {
  81. show: false
  82. },
  83. linkStyle : {
  84. opacity : 0.5
  85. }
  86. }
  87. }
  88. }
  89. }
  90. },
  91. saveAsImage : {show: true}
  92. }
  93. },
  94. legend : {
  95. data : ['HTMLElement', 'WebGL', 'SVG', 'CSS', 'Other'],
  96. orient : 'vertical',
  97. x : 'left'
  98. },
  99. noDataEffect: 'none',
  100. series :[{
  101. //FIXME No data
  102. type: 'force',
  103. }],
  104. };
  105. $.ajax({
  106. url: 'data/webkit-dep.json',
  107. dataType: 'json',
  108. success: function (data) {
  109. option.series[0] = {
  110. type: 'force',
  111. name: 'webkit-dep',
  112. itemStyle: {
  113. normal : {
  114. linkStyle : {
  115. opacity : 0.5
  116. }
  117. }
  118. },
  119. categories: data.categories,
  120. nodes: data.nodes,
  121. links: data.links,
  122. minRadius: 5,
  123. maxRadius: 8,
  124. gravity: 1.1,
  125. scaling: 1.1,
  126. steps: 20,
  127. large: true,
  128. useWorker: true,
  129. coolDown: 0.995,
  130. ribbonType: false
  131. };
  132. myChart.setOption(option);
  133. myChart.hideLoading();
  134. }
  135. });
  136. </textarea>
  137. </div><!--/.well -->
  138. </div><!--/span-->
  139. <div id="graphic" class="col-md-8">
  140. <div id="main" class="main" style="height:600px;"></div>
  141. <div>
  142. <button type="button" class="btn btn-sm btn-success" onclick="refresh(true)">刷 新</button>
  143. <span class="text-primary">切换主题</span>
  144. <select id="theme-select"></select>
  145. <span id='wrong-message' style="color:red"></span>
  146. </div>
  147. </div><!--/span-->
  148. </div><!--/row-->
  149. </div><!--/.fluid-container-->
  150. <footer id="footer"></footer>
  151. <!-- Le javascript
  152. ================================================== -->
  153. <!-- Placed at the end of the document so the pages load faster -->
  154. <script src="../asset/js/jquery.min.js"></script>
  155. <script type="text/javascript" src="../asset/js/echartsHome.js"></script>
  156. <script src="../asset/js/bootstrap.min.js"></script>
  157. <script src="../asset/js/echartsExample.js"></script>
  158. </body>
  159. </html>