Apex 图表填充颜色在 Angular 中面临问题
Apex chart fill colors facing issue in Angular
任何人都可以在这里帮助我使用angular
的顶点图表的波纹管代码
fill: {
colors: [function({ value, seriesIndex, w }) {
if(value < 55) {
return '#7E36AF'
} else if (value >= 55 && value < 80) {
return '#164666'
} else {
return '#D9534F'
}
}]
}
我在 angular 中使用顶点图表显示柱形图的颜色,但遇到错误
"(局部函数)({ value, seriesIndex, w }: any): "#7E36AF" | "#164666" | "#D9534F"
输入 '({ value, seriesIndex, w }: any) => "#7E36AF" | "#164666" | “#D9534F”' 不可分配给类型 'string'.ts(2322)"
如果我在 JavaScript 中尝试相同,它工作正常。
这似乎是类型的问题。
我已经在 GitHub 上更新了,新版本的 ng-apexcharts 即将发布。
任何人都可以在这里帮助我使用angular
的顶点图表的波纹管代码 fill: {
colors: [function({ value, seriesIndex, w }) {
if(value < 55) {
return '#7E36AF'
} else if (value >= 55 && value < 80) {
return '#164666'
} else {
return '#D9534F'
}
}]
}
我在 angular 中使用顶点图表显示柱形图的颜色,但遇到错误 "(局部函数)({ value, seriesIndex, w }: any): "#7E36AF" | "#164666" | "#D9534F" 输入 '({ value, seriesIndex, w }: any) => "#7E36AF" | "#164666" | “#D9534F”' 不可分配给类型 'string'.ts(2322)"
如果我在 JavaScript 中尝试相同,它工作正常。
这似乎是类型的问题。
我已经在 GitHub 上更新了,新版本的 ng-apexcharts 即将发布。