index.html 1018 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Document</title>
  7. <script src="./echarts.js"></script>
  8. </head>
  9. <body>
  10. <!-- 为 ECharts 准备一个定义了宽高的 DOM -->
  11. <div id="main" style="width: 600px;height:400px;"></div>
  12. <script type="text/javascript">
  13. // 基于准备好的dom,初始化echarts实例
  14. var myChart = echarts.init(document.getElementById('main'));
  15. // 指定图表的配置项和数据
  16. var option = {
  17. title: {
  18. text: 'ECharts 入门示例'
  19. },
  20. tooltip: {},
  21. legend: {
  22. data: ['销量']
  23. },
  24. xAxis: {
  25. data: ['衬衫', '羊毛衫', '雪纺衫', '裤子', '高跟鞋', '袜子']
  26. },
  27. yAxis: {},
  28. series: [
  29. {
  30. name: '销量',
  31. type: 'bar',
  32. data: [5, 20, 36, 10, 10, 20]
  33. }
  34. ]
  35. };
  36. // 使用刚指定的配置项和数据显示图表。
  37. myChart.setOption(option);
  38. </script>
  39. </body>
  40. </html>