0
我正在尝试增加圆环图的内半径,并且能够在圆环图内写入。增加圆环图的内半径,以及如何在圆环图内写入
$scope.donut = new RGraph.Pie('myDonut', $scope.donutData)
.Set('linewidth', 5)
.Set('strokestyle', 'white')
.Set('tooltips.event', 'onmousemove')
.Set('tooltips.effect', 'none')*/
.Set('colors', $scope.colors)
.Set('events.click', donutClick)
.Set('gutter.top', 60)
.Set('exploded', [])
.Set('variant', 'donut')
.Draw();
非常感谢。它像一个魅力 – Danish