下面是一个使用自定义图例的Angular NGX-Charts的解决方法示例:
npm install @swimlane/ngx-charts
import { Component } from '@angular/core';
import { single } from './data'; // 假设你的数据在data.ts文件中
@Component({
selector: 'app-chart',
template: `
`
})
export class ChartComponent {
single: any[];
customLegend: any[];
view: any[] = [700, 400];
showLegend: boolean = true;
colorScheme = {
domain: ['#5AA454', '#A10A28', '#C7B42C', '#AAAAAA']
};
constructor() {
Object.assign(this, { single });
this.customLegend = this.getCustomLegend();
}
getCustomLegend() {
return this.single.map(item => {
return {
name: item.name,
value: item.value,
color: this.colorScheme.domain[this.single.indexOf(item)]
};
});
}
}
export const single = [
{
"name": "Germany",
"value": 8940000
},
{
"name": "USA",
"value": 5000000
},
{
"name": "France",
"value": 7200000
},
{
"name": "UK",
"value": 6200000
}
];
在这个例子中,我们通过调用getCustomLegend()
方法来生成自定义的图例数据,并将它传递给
组件的[data]
属性。然后,我们在
组件中使用[legend]="showLegend"
来控制是否显示默认的图例。
注意:此示例假设你已经在Angular项目中正确配置和导入NgxChartsModule
和BrowserAnimationsModule
。确保在需要的模块中正确导入并在imports
数组中添加这些模块。