<%= @school.name %>

Areas Of Interest

Top & Bottom 5 Distance From Benchmark

<% heading_gutter = 30 %> <% graph_height = @construct_graph_row_presenters.length * ConstructGraphParameters::CONSTRUCT_ROW_HEIGHT + heading_gutter %> height=<%= graph_height %> xmlns="http://www.w3.org/2000/svg"> <% graph_center = ConstructGraphParameters::GRAPH_WIDTH / 2 %> <% label_padding_right = 24 %> <% warning_zone = ConstructGraphParameters::WARNING_ZONE %> <% watch_zone = ConstructGraphParameters::WATCH_ZONE %> <% growth_zone = ConstructGraphParameters::GROWTH_ZONE %> <% approval_zone = ConstructGraphParameters::APPROVAL_ZONE %> <% ideal_zone = ConstructGraphParameters::IDEAL_ZONE %> <% key_benchmark_width = ConstructGraphParameters::KEY_BENCHMARK_WIDTH %> <% key_benchmark_left_edge = graph_center - key_benchmark_width / 2 %> <% construct_row_height = ConstructGraphParameters::CONSTRUCT_ROW_HEIGHT %> <% construct_row_bar_height = ConstructGraphParameters::CONSTRUCT_ROW_BAR_HEIGHT %> y=<%= heading_gutter / 2 %> text-anchor="middle" dominant-baseline="middle">Warning y=<%= heading_gutter / 2 %> text-anchor="middle" dominant-baseline="middle">Watch y=<%= heading_gutter / 2 %> text-anchor="middle" dominant-baseline="middle">Growth y=<%= heading_gutter / 2 %> text-anchor="middle" dominant-baseline="middle">Approval y=<%= heading_gutter / 2 %> text-anchor="middle" dominant-baseline="middle">Ideal y="0" width=<%= warning_zone.width %> height="100%" fill=<%= ConstructGraphParameters::ZoneColor::WARNING %> fill-opacity="0.2" /> y="0" width=<%= watch_zone.width %> height="100%" fill=<%= ConstructGraphParameters::ZoneColor::WATCH %> fill-opacity="0.2" /> y="0" width=<%= growth_zone.width %> height="100%" fill=<%= ConstructGraphParameters::ZoneColor::GROWTH %> fill-opacity="0.2" /> y="0" width=<%= approval_zone.width %> height="100%" fill=<%= ConstructGraphParameters::ZoneColor::APPROVAL %> fill-opacity="0.2" /> y="0" width=<%= ideal_zone.width %> height="100%" fill=<%= ConstructGraphParameters::ZoneColor::IDEAL %> fill-opacity="0.2" /> y="0" width=<%= key_benchmark_width %> height="100%" fill="black" /> > <%= @construct_graph_row_presenters.each_with_index do |presenter, index| %> y=<%= index * construct_row_height + construct_row_height / 2 %> text-anchor="end" dominant-baseline="middle"><%= presenter.construct_name %> <% end %> > <%= @construct_graph_row_presenters.each_with_index do |presenter, index| %> y=<%= index * construct_row_height + (construct_row_height - construct_row_bar_height) / 2 %> width="<%= presenter.bar_width %>" height=<%= construct_row_bar_height %> fill=<%= presenter.bar_color %> /> <% end %>