mirror of
https://github.com/edcommonwealth/Dashboard.git
synced 2026-03-07 13:38:12 -08:00
22 lines
375 B
Ruby
22 lines
375 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Dashboard
|
|
module Analyze
|
|
module Graph
|
|
class AllData
|
|
include Analyze::Graph::Column
|
|
def to_s
|
|
"All Data"
|
|
end
|
|
|
|
def slug
|
|
"all-data"
|
|
end
|
|
|
|
def columns
|
|
[AllStudent, AllTeacher, AllAdmin, GroupedBarColumnPresenter]
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|