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

问题描述 投票:1回答:1

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

我有一段用于创建此图表的代码片段。

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

enter image description here

先感谢您!

ruby-on-rails ruby charts chartkick
1个回答
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元素配置的更多选项。

希望这可以帮助!

© www.soinside.com 2019 - 2024. All rights reserved.