mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-09 15:38:21 -07:00
15 lines
217 B
Ruby
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
|