Chart.js支持气泡图,但ng2-chart文档没有提及它们。是否可以使用 构建气泡图ng2-charts
?任何指向工作示例的指针都会很棒。
问问题
1806 次
2 回答
2
我看过源代码。从版本1.1.0
(2016 年 5 月 17 日)开始,似乎不支持气泡图。
于 2016-06-16T01:53:52.347 回答
0
npm 包ng2-charts
现在支持气泡图(从版本开始2.0.0-beta.10
)
这是演示应用程序的片段:
<div style="display: block">
<canvas baseChart [datasets]="bubbleChartData" [options]="bubbleChartOptions" [colors]="bubbleChartColors"
[legend]="bubbleChartLegend" [chartType]="bubbleChartType"></canvas>
</div>
代码:
import { Component, OnInit } from '@angular/core';
import { ChartOptions, ChartType, ChartDataSets } from 'chart.js';
import { Color } from 'ng2-charts';
@Component({
selector: 'app-bubble-chart',
templateUrl: './bubble-chart.component.html',
styleUrls: ['./bubble-chart.component.scss']
})
export class BubbleChartComponent implements OnInit {
public bubbleChartOptions: ChartOptions = {
responsive: true,
scales: {
xAxes: [{ ticks: { min: 0, max: 30, } }],
yAxes: [{ ticks: { min: 0, max: 30, } }]
}
};
public bubbleChartType: ChartType = 'bubble';
public bubbleChartLegend = true;
public bubbleChartData: ChartDataSets[] = [
{
data: [
{ x: 10, y: 10, r: 10 },
{ x: 15, y: 5, r: 15 },
{ x: 26, y: 12, r: 23 },
{ x: 7, y: 8, r: 8 },
],
label: 'Series A',
},
];
public bubbleChartColors: Color[] = [
{
backgroundColor: [
'red',
'green',
'blue',
'purple',
]
}
];
constructor() { }
ngOnInit() {
}
}
(我是那个包的合作者)。
于 2019-03-06T17:16:42.457 回答