mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-10 07:50:33 -07:00
10 lines
463 B
Text
10 lines
463 B
Text
<svg width="100%" height="<%= svg_height %>">
|
|
<%= render partial: "graph_background", locals: {background: @background} %>
|
|
|
|
<% number_of_columns = @graph.columns.length %>
|
|
<% @graph.columns.each_with_index do |column, index| %>
|
|
<% p = column.new(measure: measure, school: @school, academic_years: @selected_academic_years, position: index , number_of_columns:) %>
|
|
<%= render partial: "grouped_bar_column", locals: {column: p} %>
|
|
<% end %>
|
|
|
|
</svg>
|