贴花图案文档 https://echarts.apache.org/zh/option.html#aria.decal
    Echarts 5.0新特性 https://echarts.apache.org/handbook/zh/best-practices/aria/#%E8%B4%B4%E8%8A%B1%E5%9B%BE%E6%A1%88
    image.png
    image.png

    为系列数据增加贴花纹理,作为颜色的辅助,帮助区分数据;
    使用默认贴花图案的方式非常简单,只需要开启即可

    1. import { AriaComponent } from "echarts/components";
    2. // 注册组件
    3. echarts.use([AriaComponent]);
    4. //在配置项中添加代码
    5. const options = {
    6. aria:{
    7. enabled: true,
    8. decal: {
    9. show: true,
    10. },
    11. }
    12. }

    https://blog.csdn.net/Mr_WangGeGe/article/details/121849184