Skip to content

Commit

Permalink
Fix #309 - remove hardcoding of fill
Browse files Browse the repository at this point in the history
`Fill` option can be set via Chart.js options and already default to `true`: https://github.com/nnnick/Chart.js/blob/v2.0-dev/docs/00-Getting-Started.md
  • Loading branch information
jtblin committed Feb 20, 2016
1 parent 1d80487 commit 5fde9b5
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions angular-chart.js
Original file line number Diff line number Diff line change
Expand Up @@ -267,8 +267,7 @@
datasets: data.map(function (item, i) {
return angular.extend({}, colors[i], {
label: series[i],
data: item,
fill: true
data: item
});
})
};
Expand Down

0 comments on commit 5fde9b5

Please sign in to comment.