Govspeak content example

Chart with multiple headings

How it looks (preview)

Multiple Table
Some DataYESNOMAYBE
Testing OneNo data76
Testing Two62No data
Testing Three3No data9

How to call this example

<%= render "govuk_publishing_components/components/govspeak", {} do %>
  <table id="multiple-table-chart" class="js-barchart-table mc-multiple">
  <caption>Multiple Table</caption>
  <thead>
    <tr><th>Some Data</th><th>YES</th><th>NO</th><th>MAYBE</th></tr>
  </thead>
  <tbody>
    <tr><th>Testing One</th><td>No data</td><td>7</td><td>6</td></tr>
    <tr><th>Testing Two</th><td>6</td><td>2</td><td>No data</td></tr>
    <tr><th>Testing Three</th><td>3</td><td>No data</td><td>9</td></tr>
  </tbody>
</table>
<% end %>