标记图表中某个范围的数据
    图表标域,常用于标记图表中某个范围的数据,例如标出某段时间投放了广告
    https://echarts.apache.org/zh/option.html#series-line.markArea
    image.png

    1. series: []
    2. {
    3. data: [], // asyncData
    4. name: '数据项名称',
    5. type: 'line',
    6. symbol: 'none',
    7. barMaxWidth: 10,
    8. lineStyle: {
    9. width: 1.5,
    10. type: 'solid',
    11. },
    12. markArea: {
    13. silent: false,
    14. data: [], // asyncData
    15. label: {
    16. show: false,
    17. width: 60,
    18. },
    19. emphasis: {
    20. label: {
    21. position: 'bottom',
    22. show: true,
    23. },
    24. },
    25. }
    26. }