Here's a fork of Mike Bostock's iconic bl.ock, with an added change event for Noam.
This simple bar chart is constructed from a TSV file storing the frequency of letters in the English language. The chart employs conventional margins and a number of D3 features:
xxxxxxxxxx
<meta charset="utf-8">
<style>
.bar {
fill: steelblue;
}
.bar:hover {
fill: brown;
}
.axis--x path {
display: none;
}
svg {
position: absolute;
margin-top: 40px;
}
select {
margin-left: 60px;
}
</style>
<body>
<select id="filter">
<option value="1">1</option>
<option value="2">2</option>
</select>
<svg width="960" height="500"></svg>
</body>
<script src="https://d3js.org/d3.v4.min.js"></script>
<script>
var svg = d3.select("svg"),
margin = {top: 20, right: 20, bottom: 30, left: 40},
width = +svg.attr("width") - margin.left - margin.right,
height = +svg.attr("height") - margin.top - margin.bottom;
var x = d3.scaleBand().rangeRound([0, width]).padding(0.1),
y = d3.scaleLinear().rangeRound([height, 0]);
var g = svg.append("g")
.attr("transform", "translate(" + margin.left + "," + margin.top + ")");
// create a variable that will hold the loaded data
var tsv;
// load the data
d3.tsv("data.tsv", function(d) {
d.frequency = +d.frequency;
return d;
}, function(error, datafile) {
if (error) throw error;
// put the original data in tsv
tsv = datafile;
// filter the data based on the inital value
var data = tsv.filter(function(d) {
var sq = d3.select("#filter").property("value");
return d.group === sq;
});
// set the domains of the axes
x.domain(data.map(function(d) { return d.letter; }));
y.domain([0, d3.max(data, function(d) { return d.frequency; })]);
// add the svg elements
g.append("g")
.attr("class", "axis axis--x")
.attr("transform", "translate(0," + height + ")")
.call(d3.axisBottom(x));
g.append("g")
.attr("class", "axis axis--y")
.call(d3.axisLeft(y).ticks(10, "%"))
.append("text")
.attr("transform", "rotate(-90)")
.attr("y", 6)
.attr("dy", "0.71em")
.attr("text-anchor", "end")
.text("Frequency");
// create the bars
g.selectAll(".bar")
.data(data)
.enter().append("rect")
.attr("class", "bar")
.attr("x", function(d) { return x(d.letter); })
.attr("y", function(d) { return y(d.frequency); })
.attr("width", x.bandwidth())
.attr("height", function(d) { return height - y(d.frequency); });
// add a change event handler
d3.select("#filter").on("change", function() {
applyFilter(this.value);
});
// call this whenever the filter changes
function applyFilter(value) {
// filter the data
var data = tsv.filter(function(d) {return d.group === value;})
// update the bars
d3.selectAll(".bar")
.data(data)
.transition().duration(1000)
.attr("x", function(d) { return x(d.letter); })
.attr("y", function(d) { return y(d.frequency); })
.attr("height", function(d) { return height - y(d.frequency); });
}
});
</script>
https://d3js.org/d3.v4.min.js