BathHacked/energy-sparks

View on GitHub
app/components/comparison_chart_component/comparison_chart_component.html.erb

Summary

Maintainability
Test Coverage
<div id="chart_wrapper_<%= id %>" class="chart-wrapper">

  <% if title %>
    <h4 id="chart-section-<%= id %>" class="chart-title"><%= title %></h4>
  <% end %>

  <% if subtitle %>
    <h5 class="chart-subtitle"><%= subtitle %></h5>
  <% end %>

  <% if introduction %>
    <%= introduction %>
  <% end %>

  <div id='chart_<%= id %>'
       class='analysis-chart tabbed'
       style='height:<%= height %>px;'
       data-autoload-chart="true"
       data-chart-config='<%= chart_json %>'>
  </div>

</div>