如何将customColor属性用作函数? 我正在构建一个散点图,并将所有带负值的点标记为红色,将所有具有正值的点标记为绿色。我认为customColor功能可以让我这样做,但我只看到customColor作为对象而不是函数的例子。 谢谢!
答案 0 :(得分:1)
您需要传递准备好的颜色数组而不是函数
setCustomColors() {
let result: any[] = [];
for (let i = 0; i < this.barSingle.length; i++) {
if (this.barSingle[i].value < 200) {
result.push({"name": this.barSingle[i].name,"value": "#ff0000"});
}
else{
result.push({"name": this.barSingle[i].name,"value": "#33cc33"});
}
}
return result;
}
customColors: any;
并在创建组件时设置值
constructor() {
this.customColors = this.setCustomColors();
}
答案 1 :(得分:0)
HTML模板
<ngx-charts-bar-vertical
[animations]="barAnimations"
[customColors]="barCustomColors()"
...
</ngx-charts-bar-vertical>
组件
...
barAnimations = false;
barSingle = [
{"name": "56","value": 654},
{"name": "57","value": 123},
...
]
constructor() {}
ngOnInit() {}
// your custom function
// make sure return structure is array like
// [
// {"name": "a","value": "#ff0000"},
// {"name": "b","value": "#ff0000"}
// ]
barCustomColors() {
let result: any[] = [];
for (let i = 0; i < this.barSingle.length; i++) {
if (this.barSingle[i].value < 200) {
result.push({"name": this.barSingle[i].name,"value": "#0000ff"});
}
}
return result;
}
...
然后,图表将在创建图表时调用该函数。
确保自定义函数返回数组并包含颜色的名称和值。就像:
[
{"name": "a","value": "#ff0000"},
{"name": "b","value": "#ff0000"}
]
但是,如果启用了动画模式,它将调用该函数太多时间,并在下面出现问题。
requestAnimationFrame处理程序花费了毫秒
这会使您的图表绘制太慢。 因此,如果要使用功能来控制和自定义图表颜色。 建议关闭动画模式。
答案 2 :(得分:0)
扩大许圣泉的答案。...
确保颜色仅在必要时计算的一种方法。您可以将图表包装在一个组件中,该组件会在数据更改时调用自定义颜色的生成。这样一来,您就可以拥有动画以及自定义的颜色功能,而不会影响性能。
因此在包装器组件中,您将拥有类似的东西
...
multiVal: any = [];
@Input()
set multi(data: any) {
this.generateCustomColors();
this.multiVal = data;
}
get multi() {
return this.multiVal;
}
...
...
generateCustomColors() {
if (this.multi === undefined) {
return [];
}
// This is where you calculate your values.
// I left my conversion using a custom Color class for reference.
// Similar concept can be used for single series data
const values = {};
// for (const mult of this.multi) {
// for (const serie of mult.series) {
// if (values[serie.name] === undefined) {
// values[serie.name] = {
// name: serie.name,
// value: Color.hexFromString(serie.name),
// };
// }
// }
// }
this.customColors = Object.values(values);
}
...