vue3和ts使用echarts饼图
时间: 2023-11-02 11:10:40 浏览: 166
首先,你需要在你的Vue3项目中安装ECharts库。可以通过以下命令使用npm进行安装:
```
npm install echarts --save
```
接下来,你需要在你的Vue3组件中引入ECharts库,并且在 `mounted` 钩子函数中初始化ECharts实例和数据。具体操作如下:
```vue
<template>
<div id="pie-chart" style="width: 600px; height: 400px;"></div>
</template>
<script lang="ts">
import { defineComponent } from 'vue';
import * as echarts from 'echarts';
export default defineComponent({
mounted() {
// 初始化echarts实例
const pieChart = echarts.init(document.getElementById('pie-chart') as HTMLDivElement);
// 饼图数据
const data = [
{ value: 335, name: '直接访问' },
{ value: 310, name: '邮件营销' },
{ value: 234, name: '联盟广告' },
{ value: 135, name: '视频广告' },
{ value: 1548, name: '搜索引擎' },
];
// 饼图配置项
const option = {
title: {
text: '饼图示例',
left: 'center',
},
tooltip: {
trigger: 'item',
formatter: '{a} <br/>{b}: {c} ({d}%)',
},
legend: {
orient: 'vertical',
left: 10,
data: ['直接访问', '邮件营销', '联盟广告', '视频广告', '搜索引擎'],
},
series: [
{
name: '访问来源',
type: 'pie',
radius: ['50%', '70%'],
avoidLabelOverlap: false,
label: {
show: false,
position: 'center',
},
emphasis: {
label: {
show: true,
fontSize: '30',
fontWeight: 'bold',
},
},
labelLine: {
show: false,
},
data,
},
],
};
// 使用刚指定的配置项和数据显示图表
pieChart.setOption(option);
},
});
</script>
```
以上代码中,我们在template中添加了一个div元素,用于渲染饼图。在script中,我们通过 `import` 关键字引入了ECharts库,并使用 `echarts.init` 方法初始化一个ECharts实例,然后根据需要配置饼图的数据和配置项,最后使用 `setOption` 方法将数据和配置项应用到ECharts实例中,以显示饼图。
阅读全文