有没有办法通过向库中添加选项来从饼图切片中删除白色边框?
我已经获得了用于创建此图表的代码片段。
<%= pie_chart monthly(current_user.events), colors: colors_group, width: "200px", height: "200px", library:{animation:{easing: 'easeOutQuad'}} %>
提前谢谢!
答案 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元素配置的更多选项。
希望这有帮助!