9 lines
187 B
TypeScript
Raw Normal View History

2022-02-02 18:17:45 +08:00
/**
* * ECharts option
* @param option
*/
export const echartOptionProfixHandle = (option: any) => {
option['backgroundColor'] = 'rgba(0,0,0,0)'
return option
}