I have bar chart and I want to draw average line on this bar chart.
My solution:
In data sets, I add element with type as '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*' }**
];
The line does not start at the beginning of the y axis, it is not connected to that y axis.
(I understand because it's in the bar chart)
However I still want it to be displayed as below, it will be started at the beginning of the y axis: