2017-12-21 4 views
1

ライブラリにオプションを追加して、円グラフのスライスから白い枠線を削除する方法はありますか?Rails:Chartkick Gemを使用して円グラフから白い枠線を削除

私はこのチャートを作成するために使用したコードのスニペットがあります。

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

enter image description here

事前にありがとうございます!

答えて

1

0borderWidthオプションを設定してみてください:

<%= 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要素構成のためのより多くのオプションを見つけることができます。

希望すると便利です。

+0

ありがとうゾラン!これは私が必要としたものでした! – robert

関連する問題