forked from thinkh/d3tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
120 lines (111 loc) · 3.6 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>D3 Tutorial</title>
<style>
html {
font-size: 1em;
line-height: 1.4;
font-family: sans-serif;
}
</style>
</head>
<body>
<section>
<h2>Tutorial</h2>
<p>
<a href="https://github.com/thinkh/d3tutorial/blob/master/README.md">See Github</a>
</p>
</section>
<section>
<h3>Incremental Example: BarChart</h3>
<ul>
<li>
<a href="./examples/barchart01_initial.html">Initial</a>
(see at
<a href="https://codepen.io/thinkh/pen/YZgOEq" target="_blank" rel="noopener">CodePen.io</a>)
</li>
<li>
<a href="./examples/barchart02_title.html">Adding Title</a>
(see at
<a href="https://codepen.io/thinkh/pen/BWbOJd" target="_blank" rel="noopener">CodePen.io</a>)
</li>
<li>
<a href="./examples/barchart03_json.html">Loading Data</a>
(see at
<a href="https://codepen.io/thinkh/pen/evXLLo" target="_blank" rel="noopener">CodePen.io</a>)
</li>
<li>
<a href="./examples/barchart04_scale.html">Using Scales</a>
(see at
<a href="https://codepen.io/thinkh/pen/ZePMwZ" target="_blank" rel="noopener">CodePen.io</a>)
</li>
<li>
<a href="./examples/barchart05_interactive.html">Interactive Filtering</a>
(see at
<a href="https://codepen.io/thinkh/pen/zZbJbO" target="_blank" rel="noopener">CodePen.io</a>)
</li>
<li>
<a href="./examples/barchart06_animation.html">Animation</a>
(see at
<a href="https://codepen.io/thinkh/pen/YZgOgN" target="_blank" rel="noopener">CodePen.io</a>)
</li>
<li>
<a href="./examples/barchart07_final.html">Final Bar Chart</a>
(see at
<a href="https://codepen.io/thinkh/pen/YZgObZ" target="_blank" rel="noopener">CodePen.io</a>)
</li>
</ul>
</section>
<section>
<h3>Incremental Example: Multiple Coordinated View</h3>
<ul>
<li>
<a href="./examples/mcv01_initial.html">Initial</a>
(see at
<a href="https://codepen.io/sgratzl/pen/vYYBBxL" target="_blank" rel="noopener">CodePen.io</a>)
</li>
<li>
<a href="./examples/mcv02_piechart.html">Creating a Pie Chart</a>
(see at
<a href="https://codepen.io/sgratzl/pen/abbooyg" target="_blank" rel="noopener">CodePen.io</a>)
</li>
<li>
<a href="./examples/mcv03_interaction.html">Interaction And Filtering</a>
(see at
<a href="https://codepen.io/sgratzl/pen/QWWLLqm" target="_blank" rel="noopener">CodePen.io</a>)
</li>
<li>
<a href="./examples/mcv04_morevisses.html">Reuseability</a>
(see at
<a href="https://codepen.io/sgratzl/pen/VVgYqx" target="_blank" rel="noopener">CodePen.io</a>)
</li>
<li>
<a href="./examples/mcv05_transitions.html">Advanced Transitions</a>
(see at
<a href="https://codepen.io/sgratzl/pen/WNNeeXM" target="_blank" rel="noopener">CodePen.io</a>)
</li>
<li>
<a href="./examples/mcv06_final.html">Final View</a>
(see at
<a href="https://codepen.io/sgratzl/pen/yLLBBPx" target="_blank" rel="noopener">CodePen.io</a>)
</li>
</ul>
</section>
<section>
<h3>Examples</h3>
<ul>
<li>
<a href="./examples/persons.html">Person Scatterplot</a>
</li>
<li>
<a href="./examples/pie.html">Pie Chart</a>
</li>
<li>
<a href="./examples/miserables.html">Force Directed Layout Example</a>
</li>
</ul>
</section>
</body>
</html>