我使用ng2-charts甜甜圈图表,我想要写15美元来代替,但不能。请帮我。非常感谢你。
HTML
<div align="center">
<label style="font-size: 19px;">Chart</label>
<canvas baseChart
[data]="doughnutChartData"
[labels]="doughnutChartLabels"
[chartType]="doughnutChartType">
</canvas>
</div>
组件
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-chartbalance',
templateUrl: './chartbalance.component.html',
styleUrls: ['./chartbalance.component.css']
})
export class ChartbalanceComponent implements OnInit {
constructor() { }
ngOnInit() {
}
private doughnutChartType: string = "doughnut";
private doughnutChartData: number[] = [40, 40, 20];
private doughnutChartLabels: string[] = ["ETH", "LTC", "XRP"];
}