贴花图案文档 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
为系列数据增加贴花纹理,作为颜色的辅助,帮助区分数据;
使用默认贴花图案的方式非常简单,只需要开启即可
import { AriaComponent } from "echarts/components";
// 注册组件
echarts.use([AriaComponent]);
//在配置项中添加代码
const options = {
aria:{
enabled: true,
decal: {
show: true,
},
}
}