Angularjs 角度图表JS v2调整边框颜色

Angularjs 角度图表JS v2调整边框颜色,angularjs,chart.js,Angularjs,Chart.js,是否有人知道如何调整颜色,特别是饼图中更新的角度图JS中的边框颜色?我已经尝试了我能想到的所有可能的选择,但无法改变边框颜色 代码如下: $scope.colors = [{ // facebook blue backgroundColor: 'rgba(59, 89, 152,0.5)', pointBackgroundColor: 'rgba(59, 89, 152,1)', borderColor: 'rgba(59, 89, 152,1)', pointBorderCol

是否有人知道如何调整颜色,特别是饼图中更新的角度图JS中的边框颜色?我已经尝试了我能想到的所有可能的选择,但无法改变边框颜色

代码如下:

$scope.colors = [{ // facebook blue
  backgroundColor: 'rgba(59, 89, 152,0.5)',
  pointBackgroundColor: 'rgba(59, 89, 152,1)',
  borderColor: 'rgba(59, 89, 152,1)',
  pointBorderColor: '#fff',
  pointHoverBorderColor: 'rgba(59, 89, 152,1)'
},
  { // twitter blue
    backgroundColor: 'rgba(0, 132, 180,0.5)',
    pointBackgroundColor: 'rgba(0, 132, 180,1)',
    borderColor: 'rgba(0, 132, 180,1)',
    pointBorderColor: '#fff',
    pointHoverBorderColor: 'rgba(0, 132, 180,0.8)'
  }];
这是我的jsbin:


有人对此问题有什么见解吗?看起来这是一个即将修复的bug: