Skip to content

Instantly share code, notes, and snippets.

@mbostock
Last active October 20, 2023 14:09
  • Star 23 You must be signed in to star a gist
  • Fork 19 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save mbostock/3808218 to your computer and use it in GitHub Desktop.
General Update Pattern, I
license: gpl-3.0
redirect: https://observablehq.com/@d3/selection-join

Note: d3-selection 1.4 introduced selection.join which greatly simplifies the general update pattern! This series of examples is useful for understanding how joins work in D3, but I recommend you use selection.join in practice.

This example demonstrates D3’s general update pattern, where a data-join is followed by operations on the enter, update and exit selections. Entering elements are shown in green, while updating elements are shown in black. Exiting elements are removed immediately, so they're invisible.

This example does not use a key function for the data-join, so elements may change their associated letter. Entering elements are always added to the end: when the new data has more letters than the old data, new elements are entered to display the new letters. Likewise, exiting letters are always removed from the end when the new data has fewer letters than the old data.

Next: Key Functions

<!DOCTYPE html>
<meta charset="utf-8">
<style>
text {
font: bold 48px monospace;
}
.enter {
fill: green;
}
.update {
fill: #333;
}
</style>
<svg width="960" height="500"></svg>
<script src="https://d3js.org/d3.v5.min.js"></script>
<script>
var alphabet = "abcdefghijklmnopqrstuvwxyz".split("");
var svg = d3.select("svg"),
width = +svg.attr("width"),
height = +svg.attr("height"),
g = svg.append("g").attr("transform", "translate(32," + (height / 2) + ")");
function update(data) {
// DATA JOIN
// Join new data with old elements, if any.
var text = g.selectAll("text")
.data(data);
// UPDATE
// Update old elements as needed.
text.attr("class", "update");
// ENTER
// Create new elements as needed.
//
// ENTER + UPDATE
// After merging the entered elements with the update selection,
// apply operations to both.
text.enter().append("text")
.attr("class", "enter")
.attr("x", function(d, i) { return i * 32; })
.attr("dy", ".35em")
.merge(text)
.text(function(d) { return d; });
// EXIT
// Remove old elements as needed.
text.exit().remove();
}
// The initial display.
update(alphabet);
// Grab a random sample of letters from the alphabet, in alphabetical order.
d3.interval(function() {
update(d3.shuffle(alphabet)
.slice(0, Math.floor(Math.random() * 26))
.sort());
}, 1500);
</script>
@fangmdu
Copy link

fangmdu commented Dec 14, 2012

//code line 68
.slice(0,Math.floor(Math.random()* 26)+1)

random from 1- 26.

@Jonahss
Copy link

Jonahss commented Apr 26, 2013

I was reading this example which you linked to today in your post on Selections.
The way I understand it, it doesn't work as specified. The black updated letters in each iteration are not letter which were present in the previous step.

I think it's because the array is shuffled, but data is connected to nodes based on the index within the alphabet array?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment