来自数据库的 Gruff 图中的数据

Data in Gruff diagram from database

我正在寻找一些如何从数据库中提取数据并将其用于 Gruff 创建的图表的示例,但失败了。所以我想在此图中显示数据库中的两件事:

Course.application.size - 这将计算本课程的所有申请

Student.size - 这会告诉我有多少学生在学校

那么,我应该如何将这些数据放入下图中?

g = Gruff::Pie.new

g.title = "Applications"
g.data("Applied", ???)
g.data("Students", ???)

send_data(g.to_blob, :disposition => 'inline', :type => 'image/png', :filename => "gruff.png")

将计数存储在变量中并将其用作图表中的数据,如下所示:

@course = Course.application.size

@student = Student.size

g = Gruff::Pie.new
g.title = "Applications"
g.data : "Applied", @course
g.data : "Students", @student
send_data(g.to_blob, :disposition => 'inline', :type => 'image/png', :filename => "gruff.png")