通用图表
通用图表
基础用法
<template>
<dz-charts class="container" :option="options"/>
</template>
<script setup>
import { ref, reactive } from 'vue'
const options = ref({
title: {
text: 'Traffic Sources',
left: 'center',
},
tooltip: {
trigger: 'item',
formatter: '{a} <br/>{b} : {c} ({d}%)',
},
legend: {
orient: 'vertical',
left: 'left',
data: ['Direct', 'Email', 'Ad Networks', 'Video Ads', 'Search Engines'],
},
series: [
{
name: 'Traffic Sources',
type: 'pie',
radius: '55%',
center: ['50%', '60%'],
data: [
{ value: 335, name: 'Direct' },
{ value: 310, name: 'Email' },
{ value: 234, name: 'Ad Networks' },
{ value: 135, name: 'Video Ads' },
{ value: 1548, name: 'Search Engines' },
],
emphasis: {
itemStyle: {
shadowBlur: 10,
shadowOffsetX: 0,
shadowColor: 'rgba(0, 0, 0, 0.5)',
},
},
},
],
});
</script>
<style scoped>
.container {
width:300px;
height:300px;
}
</style>
Api
参数 | 说明 | 类型 | 默认值 |
---|---|---|---|
class | 图表容器类名 | string | - |
option | 传入echarts的配置json | object | - |
autoresize | 是否跟随父容器自动调整大小 | boolean | false |