File tree Expand file tree Collapse file tree 1 file changed +46
-0
lines changed
Expand file tree Collapse file tree 1 file changed +46
-0
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ ---
3+
4+ < html >
5+
6+ < head >
7+ < title > Index of dc.js examples</ title >
8+ < link rel ="stylesheet " type ="text/css " href ="../css/bootstrap.min.css ">
9+
10+ < style >
11+ .table-form {
12+ table-layout : fixed;
13+ /* width: 25%; */
14+ span : 4
15+ }
16+ </ style >
17+ </ head >
18+
19+ < body >
20+ < div class ="container ">
21+ < h2 > Examples of using dc.js</ h2 >
22+ < p > An attempt to present a simple example of each chart type.</ p >
23+ < p > Also see < a href ="../transitions/ "> transitions</ a > – < a href ="../resizing/ "> resizing</ a > – < a
24+ href ="../zoom/ "> zoom</ a > .</ p >
25+ < p > Contributions < a href ="https://github.com/dc-js/dc.js/blob/master/CONTRIBUTING.md "> welcome</ a > .
26+ Source < a href ="https://github.com/dc-js/dc.js/tree/develop/web-src/examples ">
27+ here</ a > .</ p >
28+
29+ {% assign grouped_links = site.data.examples | group_by: "difficulty-level" | sort: "name" %}
30+ {% for group in grouped_links %}
31+ < h2 > {{ group.name }}</ h2 >
32+ < table class = "table table-form ">
33+ < tbody >
34+ {% tablerow link in group.items cols:4 %}
35+ < a href ='{{ link["example-name"] }}.html '> {{ link["example-name"] }}</ a >
36+ {% endtablerow %}
37+ </ tbody >
38+ </ table >
39+ {% endfor %}
40+
41+
42+
43+ </ div >
44+ </ body >
45+
46+ </ html >
You can’t perform that action at this time.
0 commit comments