1๐
โ
If you do not want to see the fill under the line, then set the fill
property to false
(this is part of a line chart dataset configuration). Iโm not exactly sure how to do this in angular chart.js, but it looks like you could add it to your datasetOverride2
object.
$scope.datasetOverride2 = [{fill: false}, {fill: false}, {fill: false}];
If this doesnโt work then you need to use the property wherever you define each dataset.
0๐
0๐
Source:stackexchange.com