Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想使用chartkick制作每天所有用户注册的折线图。
在我看来我有
<%= line_chart User.group_by_day(:created_at).count %>
但它正在产生那个错误
您需要安装 groupdate gem 才能使用该group_by_day方法。我将更新 chartkick 文档以使其更清晰。
group_by_day
试试这个,它可以工作
<%= line_chart User.group(:created_at).count %>