mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-09 23:48:17 -07:00
Refactor graphs to take new slice format Add Students and Teachers and Parents graph. Add selector for that graph
9 lines
212 B
Ruby
9 lines
212 B
Ruby
module Analyze
|
|
module Slice
|
|
class StudentsByGroup < Base
|
|
def initialize(graph:, label: "Students by Group", slug: "students-by-group")
|
|
super(label:, slug:, graph:)
|
|
end
|
|
end
|
|
end
|
|
end
|