Rails:使用Chartkick Gem从饼图中删除白色边框

时间:2017-12-21 00:27:14

标签: ruby-on-rails ruby charts chartkick

有没有办法通过向库中添加选项来从饼图切片中删除白色边框?

我已经获得了用于创建此图表的代码片段。

<%= pie_chart monthly(current_user.events), colors: colors_group, width: "200px", height: "200px", library:{animation:{easing: 'easeOutQuad'}} %>

enter image description here

提前谢谢!

1 个答案:

答案 0 :(得分:1)

尝试将borderWidth选项设置为0

<%= pie_chart monthly(current_user.events), colors: colors_group, width: "200px", height: "200px", library: {animation: {easing: 'easeOutQuad'}, elements: {arc: {borderWidth: 0}}} %>

您可以在docs page上找到Chart.js元素配置的更多选项。

希望这有帮助!