-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathd3js.js
149 lines (132 loc) · 3.24 KB
/
d3js.js
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
$(document).ready(function() {
// d3.select("body")
// .append('p')
// .text("New paragraph!");
var dataset = [ 5, 10, 13, 19, 21, 25, 22, 18, 15, 13,
11, 12, 15, 20, 18, 17, 16, 18, 23, 25 ]; //Initialize empty array
console.log(dataset);
// d3.select('body').selectAll('p')
// .data(dataset)
// .enter()
// .append('p')
// .text(function(d) {
// return "I can count up to " + d;
// })
// .style("color", function(d) {
// if (d > 15) {
// return "red";
// } else {
// return "black";
// }
// });
// d3.select('body').selectAll('div')
// .data(dataset)
// .enter()
// .append('div')
// .attr('class', 'bar')
// .style('height', function(d) {
// var barHeight = d*5;
// return barHeight + "px";
// });
var w = 500;
var h = 100;
var barPadding = 1;
var svg = d3.select('body').append('svg');
svg.attr("width", w)
.attr("height", h);
svg.selectAll('rect')
.data(dataset)
.enter()
.append("rect")
.attr("x", function(d,i) {
return i* (w / dataset.length);
})
.attr("y", function(d) {
return h-(d*4); //because the svg's will be upside down; height-data value
})
.attr("width", w / dataset.length - barPadding)
.attr("height", function(d) {
return d*4;
})
.attr('fill', function(d) {
return "rgb(0, 0, " + (d*10) + ")";
});
svg.selectAll("text")
.data(dataset)
.enter()
.append("text")
.text(function(d) {
return d;
})
.attr("x", function(d, i) {
return i * (w / dataset.length) + (w / dataset.length - barPadding) / 2;
})
.attr("y", function(d) {
return h - (d * 4) + 14;
})
.attr('font-family', 'sans-serif')
.attr('font-size', '11px')
.attr('fill', 'white')
.attr('text-anchor', 'middle');
// var circles = svg.selectAll('circle')
// .data(dataset)
// .enter()
// .append("circle");
// circles.attr('cx', function(d,i) {
// return (i*50) + 25;
// })
// .attr("cy", h/2)
// .attr("r", function(d) {
// return d;
// })
// .attr("fill", "yellow")
// .attr("stroke", "orange")
// .attr("stroke-width", function(d) {
// return d/2;
// });
var dataset2 = [
[ 5, 20 ],
[ 480, 90 ],
[ 250, 50 ],
[ 100, 33 ],
[ 330, 95 ],
[ 410, 12 ],
[ 475, 44 ],
[ 25, 67 ],
[ 85, 21 ],
[ 220, 88 ]
];
var svg2 = d3.select("body")
.append("svg")
.attr("width", w)
.attr("height", h);
svg2.selectAll("circle")
.data(dataset2)
.enter()
.append("circle")
.attr("cx", function(d) {
return d[0];
})
.attr("cy", function(d) {
return d[1];
})
.attr("r", function(d) {
return Math.sqrt(h-d[1]);
});
svg2.selectAll("text")
.data(dataset2)
.enter()
.append("text")
.text(function(d) {
return d[0] + "," + d[1];
})
.attr("x", function(d) {
return d[0];
})
.attr("y", function(d) {
return d[1];
})
.attr("font-family", "sans-serif")
.attr("font-size", "11px")
.attr("fill", "red");
});