导入

    1. import ReactEcharts from 'echarts-for-react'

    配置 ( 这个配置直接在官网看示例就好了)

    1. const pieOption = {
    2. title: {
    3. text: '文章类型',
    4. left: 'left',
    5. },
    6. tooltip: {
    7. trigger: 'item',
    8. formatter: '{b} : {c} ( {d}% )',
    9. },
    10. series: [
    11. {
    12. name: '文章类型',
    13. type: 'pie',
    14. radius: [20, 140],
    15. center: ['50%', '50%'],
    16. roseType: 'area',
    17. itemStyle: {
    18. borderRadius: 20,
    19. },
    20. data: [],
    21. },
    22. ],
    23. }

    使用

    1. <ReactEcharts
    2. option={pieOption}
    3. notMerge={true}
    4. lazyUpdate={true}
    5. />