sqm-dashboards/app/models/analysis_graph/students_by_group.rb

15 lines
217 B
Ruby

module AnalysisGraph
class StudentsByGroup
def to_s
'Students by Group'
end
def value
'students-by-group'
end
def columns
[StudentGroupedBarColumnPresenter]
end
end
end