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
511 B
10 lines
511 B
<svg width="100%" height="<%= svg_height %>">
|
|
<%= render partial: "graph_background", locals: {background: @background} %>
|
|
|
|
<% number_of_columns = columns.length %>
|
|
<% columns.each_with_index do |config, index| %>
|
|
<% p = Analyze::Graph::Column::GroupedBarColumnPresenter.new(construct:, school: @school, academic_years: @presenter.selected_academic_years, position: index , number_of_columns:, config: config) %>
|
|
<%= render partial: "grouped_bar_column", locals: {column: p} %>
|
|
<% end %>
|
|
</svg>
|