aboutsummaryrefslogtreecommitdiff
path: root/wqflask/wqflask/templates/show_trait_statistics_new.html
blob: acd6cc62eeb8dcbeba8bcace0a478ecc64fec853 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<div>
    <br>
    <h2>Charts and Figures</h2>
    <div class="well form-horizontal">
        <select class="stats_samples_group">
            {% for group, pretty_group in sample_group_types.items() %}
                <option value="{{ group }}">{{ pretty_group }}</option>
            {% endfor %}
        </select>
        <button type="button" id="update_bar_chart">Sort By Value</button>
        <div id="bar_chart_container">
            <div id="bar_chart"></div>
        </div>
        
    </div>
</div>