-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
298 lines (176 loc) · 5.71 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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<title>Bars</title>
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/main.css">
<link href="js/vendor/src/nv.d3.css" rel="stylesheet" type="text/css">
<script type="text/Javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
</head>
<body>
<style type="text/css">
body {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
position: relative;
width: 960px;
}
.axis text {
font: 10px sans-serif;
}
.axis path,
.axis line {
fill: none;
stroke: #000;
shape-rendering: crispEdges;
}
.bar {
fill: blue;
fill-opacity: .9;
}
.x.axis path {
display: none;
}
label {
position: absolute;
top: 10px;
right: 10px;
display: none;
}
.circle {
fill: blue;
stroke-width: 1.5px;
}
</style>
<label><input type="checkbox"> Sort values</label>
<script src="http://d3js.org/d3.v2.min.js?2.10.1"></script>
<script>
var margin = {top: 20, right: 20, bottom: 30, left: 140},
width = 960 - margin.left - margin.right,
height = 500 - margin.top - margin.bottom;
var formatPercent = d3.format(".0%");
var x = d3.scale.ordinal()
.rangeBands([0, width], 0);
var y = d3.scale.linear()
.range([height, 0]);
var xAxis = d3.svg.axis()
.scale(x)
.orient("bottom");
var yAxis = d3.svg.axis()
.scale(y)
.orient("left");
var svg = d3.select("body").append("svg")
.attr("width", width + margin.left + margin.right)
.attr("height", height + margin.top + margin.bottom)
.append("g")
.attr("transform", "translate(" + margin.left + "," + margin.top + ")");
//Is there any way to make this have .letter and .frequency attrs?
//Creating data randomly?
var data = [["Coke", 50], ["Pepsi", 20], ["Mountain Dew", 20], ["Something", 20], ["A", 20], ["B", 20], ["C", 20]];
//This is where the scales are set
x.domain(data.map(function(d) { return d[0]; }));
y.domain([0, 100]);
svg.append("g")
.attr("class", "x axis")
.attr("transform", "translate(0," + height + ")")
.call(xAxis)
.append("text")
.text("Types of Soda")
.attr("x", 290)
.attr("y", 70)
.style("text-anchor", "middle")
.style("font-size", "40px");
svg.append("g")
.attr("class", "y axis")
.call(yAxis)
.append("text")
.attr("transform", "rotate(-90)")
.attr("x", -30)
.attr("y", 6)
.attr("dy", ".71em")
.style("text-anchor", "end")
.style("font-size", "14px")
.text("Gallons");
svg.selectAll(".bar")
.data(data)
.enter().append("rect")
.attr("class", "bar")
.attr("x", function(d, i) { return i*width/data.length + 30; })
.attr("width", 50)
.attr("y", 0)
.attr("height", 1);
svg.selectAll(".bar1")
.data(data)
.enter().append("rect")
.attr("class", "bar1")
.attr("x", function(d, i) { return i*width/data.length + 30; })
.attr("width", 50)
.attr("y", 0)
.attr("height", 1);
var data = [["Coke", 50], ["Pepsi", 20], ["Mountain Dew", 20], ["Something", 20], ["A", 20], ["B", 20], ["C", 20]];
d3.select("body").selectAll(".bar").transition()
.delay(100)
.duration(550)
.attr("y", function(d) {return height - d[1];})
.attr("height", function(d) {return d[1];});
d3.select("body").selectAll(".bar1").transition()
.delay(650)
.duration(550)
.attr("y", function(d) {return height - 2*d[1];})
.attr("height", function(d) {return d[1];});
//select the bar tht you're working on
//find the height
//build up to that height in increments
//decide on the increment
//drop the increment down
//fix it to that position
//drop the next one on top of it
//repeat until you're done
//idea - since it's pouring drinks, you could animate little dots and let them fall into the bar graph instead of having blocks fall straignt down - use the force method? Particle in d3 examples?
// d3.select("input").on("change", change);
// var sortTimeout = setTimeout(function() {
// d3.select("input").property("checked", true).each(change);
// }, 2000);
//NOTE CALL THIS LATER THIS IS TEMPORARY d3.select("body").call(change);
function change() {
// clearTimeout(sortTimeout);
// Copy-on-write since tweens are evaluated after a delay.
var y0 = y.domain([0, 100]);
var transition = svg.transition().duration(750),
delay = function(d, i) { return 30; };
transition.selectAll(".bar")
.delay(delay)
.attr("y", function(d, i) {return 430 - (d[1]);})
.attr("height", function(d, i) { return d[1]; });
transition.select(".y.axis")
.call(yAxis)
.selectAll("g")
.delay(delay);
};
//NOTE ALSO CALL THIS LATER THIS IS ALSO TEMPORARY d3.select("body").call(buildbar);
//This is where I'ma try to build one bar in a certain amount of time
function buildbar() {
var transition = svg.transition().duration(550),
delay = function(d, i) { return 950; };
transition.selectAll("bar")
.delay(delay)
.attr("y", function(d, i) {return (d[1]);})
.attr("height", function(d, i) { return d[1]; });
d3.select("body").append("p");
var tall = data[0][1];
};
function add() {
d3.select("body")
.append("p")
.text("yay");
};
// d3.csv("test.csv", type, function(error, data) {
// d3.select("body")
// .append("p")
// .text("yay");
// });
//
// function type(d) {
//
// return d;
// }
</script>