导入
import ReactEcharts from 'echarts-for-react'
配置 ( 这个配置直接在官网看示例就好了)
const pieOption = {
title: {
text: '文章类型',
left: 'left',
},
tooltip: {
trigger: 'item',
formatter: '{b} : {c} ( {d}% )',
},
series: [
{
name: '文章类型',
type: 'pie',
radius: [20, 140],
center: ['50%', '50%'],
roseType: 'area',
itemStyle: {
borderRadius: 20,
},
data: [],
},
],
}
使用
<ReactEcharts
option={pieOption}
notMerge={true}
lazyUpdate={true}
/>