該方案進解決echart在uni中渲染展示問題滥酥,交互效果不佳
https://gitee.com/klus-liang/echats-components-uni-app.git
通過vif渲染來避免多組件時渲染錯誤
使用
<template>
<echarts v-if="showEchart" :option="options" :height="'180upx'"/>
</template>
<script>
import echarts from '@/components/echart/echart'
export default {
components: {echarts},
data() {
return {
options: {},
showEchart: false
}
}
onLoad() {
this.options = {
title: {
text: 'Referer of a Website',
subtext: 'Fake Data',
left: 'center'
},
tooltip: {
trigger: 'item'
},
legend: {
orient: 'vertical',
left: 'left'
},
series: [
{
name: 'Access From',
type: 'pie',
radius: '50%',
data: [
{ value: 1048, name: 'Search Engine' },
{ value: 735, name: 'Direct' },
{ value: 580, name: 'Email' },
{ value: 484, name: 'Union Ads' },
{ value: 300, name: 'Video Ads' }
],
emphasis: {
itemStyle: {
shadowBlur: 10,
shadowOffsetX: 0,
shadowColor: 'rgba(0, 0, 0, 0.5)'
}
}
}
]
}
}
this.showEchart = true
}
</script>