小编Min*_*ran的帖子

如何使用 ng2-charts 获得多个图表(条形图和折线图)?

我有条形图,我想在此条形图上绘制平均线。

我的解决方案:

在数据集中,我添加了类型为 ' line' 的元素:

https://stackblitz.com/edit/ng2-charts-bar-template?file=src%2Fapp%2Fapp.component.ts

public barChartLabels: Label[] = ['2006', '2007', '2008', '2009', '2010', '2011', '2012'];
public barChartType: ChartType = 'bar';
public barChartLegend = true;
public barChartPlugins = [];

public barChartData: ChartDataSets[] = 
[
{ data: [65, 59, 80, 81, 56, 55, 40], label: 'Series A' },
{ data: [28, 48, 40, 19, 86, 27, 90], label: 'Series B' },
**{ data: [48, 48, 48, 48, 48, 48, 48], label: 'Series C', type: '*line*' }**
];
Run Code Online (Sandbox Code Playgroud)

这条线不是从 …

linechart bar-chart ng2-charts angular chartjs-2.6.0

5
推荐指数
1
解决办法
4506
查看次数