123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- <style>
- .box{
- width: 450px;
- height: 450px;
- background-color: pink;
- }
- </style>
- <script src="js/echarts.min.js"></script>
- </head>
- <body>
- <div class="box"></div>
- <script>
- var myChart = echarts.init(document.querySelector('.box'))
- option = {
- series: [
- {
- type: 'pie',
- data: [
- {
- value: 335,
- name: '直接访问'
- },
- {
- value: 234,
- name: '联盟广告'
- },
- {
- value: 1548,
- name: '搜索引擎'
- }
- ]
- }
- ]
- };
- myChart.setOption(option)
- </script>
- </body>
- </html>
|