Chart

This is the Chart component. It's an example.

Markup Details
                            {{ attach_library('goizueta_theme/chart') }}
<section {{ attributes.addClass('chart__container') }}>
  {% block chart_table %}
    <table class="highchart use-charts" data-graph-container-before="1" data-graph-type="{{ type }}" style="display:none" data-graph-legend-layout="vertical">
        <thead>
            <tr>
                <th>Month</th>
                <th>Sales</th>
                <th>Benefits</th>
            </tr>
        </thead>
        <tbody>
            <tr>
                <td>January</td>
                <td>8000</td>
                <td>2000</td>
            </tr>
            <tr>
                <td>February</td>
                <td>12000</td>
                <td>3000</td>
            </tr>
            <tr>
                <td>March</td>
                <td>18000</td>
                <td>8000</td>
            </tr>
        </tbody>
    </table>
  {% endblock %}
</section>