Rails:使用 Chartkick 从饼图中删除白色边框 Gem
Rails: Remove white border from Pie Chart using Chartkick Gem
有没有办法通过向库中添加一个选项来去除饼图切片的白色边框?
我有一段用于创建此图表的代码。
<%= pie_chart monthly(current_user.events), colors: colors_group, width: "200px", height: "200px", library:{animation:{easing: 'easeOutQuad'}} %>
提前致谢!
尝试将 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 元素配置的更多选项。
希望对您有所帮助!
有没有办法通过向库中添加一个选项来去除饼图切片的白色边框?
我有一段用于创建此图表的代码。
<%= pie_chart monthly(current_user.events), colors: colors_group, width: "200px", height: "200px", library:{animation:{easing: 'easeOutQuad'}} %>
提前致谢!
尝试将 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 元素配置的更多选项。
希望对您有所帮助!