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
Source:stackexchange.com