You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
492 B
10 lines
492 B
<svg width="100%" height="<%= svg_height %>">
|
|
<%= render partial: "graph_background", locals: {background: @background} %>
|
|
|
|
<% number_of_columns = @presenter.graph.columns.length %>
|
|
<% @presenter.graph.columns.each_with_index do |column, index| %>
|
|
<% p = column.new(measure: measure, school: @school, academic_years: @presenter.selected_academic_years, position: index , number_of_columns:) %>
|
|
<%= render partial: "grouped_bar_column", locals: {column: p} %>
|
|
<% end %>
|
|
</svg>
|