Chartjs-Remove all borders from my chart in angular-chart-js

1👍

With angular-chart-js, you must use a chart.js version >= 2.x, so this is the way to remove borders:

JS:

$scope.options = { elements: { arc: { borderWidth: 0 } } };

HTML

<canvas ... chart-options="options"></canvas>

DEMO: PLUNKER

Leave a comment