如何在 rails 的 chartkicks 中显示数据计数和百分比

How to show count of data along with percentage in chartkicks in rails

使用 chartkicks 显示图表。它只显示百分比。我想显示 count/amount 以及百分比。

<%= pie_chart visits.group(:country).count %>

Chartkick gem 是 Google Charts 之上的包装器。通过使用库选项,您可以指定要在 legend 中显示的值并设置其他配置选项。

所以像这样:

<%= pie_chart visits.group(:country).count, library: {pieSliceText:
'value-and-percentage'} %>

查看此 link 了解更多配置选项:https://developers.google.com/chart/interactive/docs/gallery/piechart#configuration-options