This past week, Scott Murray and I presented a tutorial at Strata on d3 (of all things!)
First things first, you probably want to get Scott’s book on the subject when it’s out. I should be translating it into French eventually.
You’re also welcome to the slides and examples of the tutorial which can be found on https://github.com/alignedleft/strata-d3-tutorial. That include my d3 cheat sheet.
We had done a d3 workshop a few months back at Visweek with Jeff Heer. This time around, we changed our approach: we covered less ground, went at a slower pace, but targeted what is in our opinion the most troublesome aspects of learning d3: selecting, creating and removing elements.
I have learned d3 from deciphering script examples and in the earliest ones one ubiquitous construct was this sequence : select / selectAll / data / enter / append.
It does the work, so like everyone else I’ve copied it and reused very often. It happens to be the most proper way of adding new elements in most cases, but the point is, while learning d3, I (and many people before and after me) have copy/pasted it without understanding it deeply. Though, copy pasting something you don’t understand thoroughly is the best way to get errors you don’t understand any better, and it would prevent you from accessing the rest of the potential of the library. Conversely, once this is cleared, you can be “thinking in d3” and easily do many things you might have thought impossible before.
We did the tutorial hands-on, live coding most of the time. To follow through, I invite you to create or open an empty page with d3 loaded (such as this one – the link opens a new tab) and then open the “console” or “web developer tools” which allow you to type javascript statements directly, without having to write and load scripts. Here are the shortcuts to the console:
- Chrome: Ctrl-J (windows), ⌥ ⌘+j (Mac)
- Firefox: Ctrl+Shift+k (windows), ⌥ ⌘+k (Mac)
- Safari: Ctrl+Alt+c (windows), ⌥ ⌘+c (Mac)
- IE9+: F12
To make the best of this tutorial, please type the examples. Some tutorials show you impressive stuff and show you step by step how to do it. That’s not one of them. I’ve sticked to very, very basic and mundane things. We’ll be only manipulating HTML elements such as paragraphs, which I assume you have seen earlier (plot twist: you are reading one at this very moment)
Some of the code snippets don’t work. That’s the idea! I think you can’t progress by merely copying code that works. It’s important that you try out code that looks reasonable but that doesn’t produce the expected result or that causes an error, but then understand why.
Adding simple stuff
Creating elements
Our empty page is, well, empty, so we are going to add stuff.
to create elements, we need the append method in d3, which takes as an argument the type of element that needs to be created, while the html method at the end allow us to specify a text.
so let’s go ahead and type:
d3.append("h1").html("My beautiful text")
and see what happens.
what do we get? and why is that?
In d3, every element which is created cannot appear out of thin air, and must be added to a container. If we don’t specify a container element, we just can’t create anything.
In HTML, most elements can be containers, that is, it’s usually possible to add elements to almost everything. Then again, our template is fairly empty, so we can select the
d3.select("body").append("h1").html("My beautiful text")
we’re in business! as long as there is a sensible place to put them, you can create as much stuff as you like. Since we’re on a roll, why won’t we throw in a few paragraphs (p element in HTML):
d3.select("body").append("p").html("Look at me, I'm a paragraph.") d3.select("body").append("p").html("And I'm another paragraph!") d3.select("body").append("p").html("Woohoo! number 3 baby")
and lo and behold, all our paragraphs appear in sequence. Simply beautiful.
But wait! paragraphs are containers, too. Why don’t we try to add a span element to one paragraph? For those of you with no HTML knowledge, span elements are like paragraphs, except there is no line break by default at the end.
So let’s try this:
d3.select("p").append("span").html("and I'm a span!")
Before typing it, take a minute to think where you expect it to go.
Then go ahead and type it.
Surprised?
you may have guessed that our new bit of text could go on a line of its own at the end of the document, or at the end of the last paragraph. But instead, it goes at the end of the first paragraph.
Why is that? well, our select method stops the first instance of whatever it tries to find. In our case, since we asked it to find paragraphs – p, it stopped at the first p element it found, and added the span at the end of it (append).
Beyond creating new things
adding new elements to a page programmatically is kind of useful, but if d3 stopped at that you probably wouldn’t be so interested in this tutorial to begin with. You can also modify and manipulate elements. We’ve done that to some extent with the html method. But we can also modify the style of the elements, their attributes and their properties. For the time being, don’t bother too much about the difference between these three things. Style refers to the appearance of elements, attributes, to their structure, and properties, to what can be changed in realtime, like values in a form. But again, let’s not worry about that for now and let’s just follow along. Look at this code snippet:
d3.select("p").style("color","red")
this will select the first paragraph and change its style, so that the text color is changed to red.
But wait! our first paragraph, isn’t that the one with a span at the end of it? What will happen to that bit of text? Well, type the statement to find out.
All the paragraph, including its children (that is, everything added to it, in our case the span) is turned to red.
d3.select("span").style("color","blue")
That singles out our span and writes it in blue. Can this be overturned?
d3.select("p").style("color","red")
That won’t change a thing. Our first paragraph is, in fact, already red. But its child, the span, has a style which overrides that of its parent. To have it behave like the rest, we can remove its style like so:
d3.select("span").style("color",null)
then
d3.select("p").style("color","green")
it will behave like its parent, the paragraph.
But let’s try something else:
d3.select("span").style("color","blue")
we write our span in blue,
d3.select("span").style("color","green")
and now back in green, like its parent.
d3.select("p").style("color","red")
What will happen?
well, the paragraph turns red, but the span doesn’t. It’s still following its specific instruction to be written in green.
That goes to illustrate that children behave like their parents, unless they are given specific instructions.
For HTML elements, we can play with styles, not so much with attributes or properties. One thing worth noting though is that an element can be given a class or an id.
Classes and ids can be used to style elements using a cascading style sheet (CSS). Knowing how CSS works is entirely facultative in learning d3, since d3 by itself can take care of all styling needs. Though, knowing basic CSS is not the most useless of endeavors, and some sensible CSS statements can save a lot of tedious manipulation in d3.
The other use of classes and ids is that they can be used to select elements.
Let’s reload our page so we start from scratch.
d3.select("body").append("p").html("First paragraph"); d3.select("body").append("p").html("Second paragraph").attr("class","p2"); d3.select("body").append("p").html("Third paragraph").attr("id","p3");
without the use of classes and ids, it’s still possible to select and manipulate the 2nd or 3rd instance of an element, but it’s a chore. You have to use pseudo-classes like d3.select(“p:nth-of-type(2)”) to select the 2nd instance of a paragraph, for instance.
Personally, I’d rather avoid this and prefer using simpler statements. With classes and IDs set, we can write instead:
d3.select(".p2").html("I'm classy"); d3.select("#p3").html("I've got ideas");
To select things of a given class, you must use a period before the name of the class. To select things of a certain id, you must use the hash sign.
Here, we are looking for the first element of the p2 class. This happens to be our 2nd paragraph. When you know you will have to manipulate elements which are not easily accessible, you may as well give them classes which will make this easier down the road.
In theory, there should only be one element of a given ID in one page, so I recommend not using them dynamically unless you can be 100% sure that there will not be duplicates. And, in case you were wandering, one element can have several (even many) classes.
Two birds, one stone
Introducing selectAll
So far, we’ve changed properties of one element at a time. The exception was when we changed the colors of both a paragraph and a span, but even then, we were still technically only changing the characteristics of one paragraph, which its child, the span, just happened to inherit.
For a complex document, that can be super tedious, especially since we’ve seen that it’s not easy to retrieve an element which is not the first of its kind.
so let’s go ahead and type:
d3.selectAll("p").style("font-weight","bold");
(for a little variety. I mean, changing text color is so 1994.)
What was that? Everything turned to bold!
Indeed: while the select method returns the first element that matches the clause, selectAll matches them all.
Let’s do more.
We’re going to add a span to our first paragraph.
d3.select("p").append("span") .html("I'm a rebel child.") .style("background-color","firebrick")
we’re adding a gratuitous styling command.
Now, let’s change the background color of all the paragraphs.
d3.selectAll("p").style("background-color","aliceblue")
As could be expected, the span doesn’t change its background color, and so it appears differently from its parent (which could be a desired effect – this gives us flexibility).
but what if we wanted to change the background color of everything? can we do better?
d3.selectAll("*").style("background-color","whitesmoke")
(quite fitting in these times of papal conclave)
Well – everything gets a background color of “white smoke” (which is a fine background color btw.). Including the “body” element – that is, everything on the page!
selectAll(“*”) matches everything. With it, you can grab all the children, their children etc. (“descendants”. I know…) of a selection, or, if used directly like so: d3.selectAll(“*”), everything on the page.
So we’ve seen we can select moaar. But can we be finer? Can we select the paragraphs and the spans only, without touching the rest?
we sure can!
d3.selectAll("p, span").style("background-color","lawngreen")
The outcome of that one statement probably won’t make it to our web design portfolio, but it does the trick: you can select as much as you like, or as little as you like.
Nested selections
To illustrate the next situation, let’s add a span to our document.
d3.select("body").append("span").html("select me if you can")
Well, just like there is a way to select directly the 2nd paragraph using pseudo classes, there’s also a (complicated) way to select directly that last span (namely: selectAll(“span:not(p)”) )
there’s also a simpler way which is what we’re interested in.
let’s suppose we want to turn it to bold:
we can just do
d3.selectAll("span").style("font-weight","bold");
then change the first one:
d3.select("p").select("span").style("font-weight",null);
Admittedly, the complicated way is more compact. But conceptually, the “simple” way is easier to follow: we can do a selection, and within that selection perform a newer selection, and so on and so forth. That way, we can get away with just using super simple selectors, as opposed to master the intricacies of CSS3 syntax. Do it for the people who will read your source code 🙂
At this point:
- You know how to dynamically create content. Pretty cool!
- More! you can dynamically change every property of every element of the page. woot!
- Bonus! you’re equipped with tactics to easily reach any element you want to change.
You should also have a good grasp of d3.select, d3.selectAll and the difference between the two.
what more could you possibly want? Well, since this is about data visualization, how about a way to tie our elements to data? This is what d3 is really about.
Putting the data in data visualization
Introducing data: passing values to many elements at once
So far, we’ve entered “hard coded” values for all of our variables. That’s fine, but we can’t really set our elements one by one. I mean, we could, but it’s no way to “industrialize” the way elements are created.
Fortunately, d3 provides. Its more interesting characteristic is the ability to “bind” elements with data.
If you’ve followed the instructions step by step, you should have 3 paragraphs in the page. Plus a span afterwards, but whatever.
Let’s introduce the data method. This will match an array of values to a selection of elements in the page. Let’s go:
var fs=["10px","20px","30px"]; d3.selectAll("p").data(fs).style("font-size",function(d) {return d;})
wow wow wow what just happened?
First, we create an array of values which we intelligently call fs (for font size).
Then, right after the selectAll(“p”) which gathers a selection of elements (3 “p” elements to be exact), we specify a dataset using the data method.
It just happens that our dataset has just the same number of items as our selection of elements!
finally, we use style, like we used to, with a twist: instead of providing one fixed value, which would affect our 3 p elements in the same way, we specify a function.
This function will parse the dataset, and for each element, it will return the result of an operation in the corresponding data point: the result of the function on the first item for the first p element, the result on the 2nd item for our 2nd paragraph, and lastly the result on the last item for our last paragraph.
We write the function with an argument: d. What is d? it’s nothing but a convention. We can call it anything. d is standard fare in d3 code because that’s the writing style of Mike Bostock, the author of the framework and of many of its examples.
This function is nothing special, it returns the element itself, so we are passing “10px” for the font-size of our first paragraph, and so on and so forth (20px, 30px).
As an aside, we can use the String function, which converts any element into a string, instead of writing function(d) {return d;}. So:
d3.selectAll("p").data(fs).style("font-size",String)
would also work and is shorter to write.
Let’s recap what just happened here, because this is important.
We want to apply a dynamic transformation to a bunch of existing elements, as opposed to finding a way to select each individual element, and passing it a hard-coded value.
What’s more, we want to apply a transformation of the same nature, but of a different magnitude, on each of these items.
How to proceed?
well, first we create an array of values. That’s our fs boy over there.
var fs=["10px","20px","30px"];
Then, we will first select all of the elements we want to modify, then we’ll tie our dataset to that selection. This is what selectAll, then data does.
var selection=d3.selectAll("p").data(fs);
By the way, I’ve stored the result of the selectAll then data in a variable. In the original example, I just “chained” the methods, that is, I followed each method by a period and another one. The two syntaxes are equivalent. Chaining works, because each of these methods returns a value which is itself a selection on which further operations can be done. This syntax works well through most of d3 with some exceptions which will be duly noted.
Then, we are going to change the style of the selection, using a function on our data.
selection.style("font-size",function(d) {return d;})
(or
selection.style("font-size",String)
That function will run on each value of our dataset, and return one result per value, which will be passed to all elements in sequence.
At this stage you may have two questions:
- Can we use more sophisticated functions, because this one is kind of meh?
- What happens if there is not the same number of items in the dataset and of elements?
The second question is actually more complicated than the first, but we’ll answer it in painstaking detail.
So let’s take care of the question on functions first.
Yes, obviously, we can use the function not just to return the element, but to do any kind of calculation that a language such as javascript is capable of, which is nearly everything.
To illustrate that, here are some variations of our initial code which will return the same result, but with a different form.
var fs=[10,20,30]; // no more px d3.selectAll("p").data(fs).style("font-size",function(d) {return d+"px";})
Here, instead of returning just the element, we append “px” at its end. Sadly, style(“font-size”,10) doesn’t work, but style(“font-size”,10+”px”) – which is the same as style(“font-size”,”10px”) is valid.
Here is yet another way.
d3.selectAll("p").style("font-size",function(d,i) {return 10*(i+1)+"px";})
function(d,i) ? what is this devilry?
Here, i (or anything we want to call it, as long as it’s the 2nd argument of this function) represents the order of the element in the selection, so the first gets a 0, the second a 1, etc. (well, in our example it goes to 3 elements, so the last one gets a 2).
This may be a bit abstract to say here, but even if we haven’t passed data, this would still work – i represent the order of the element, not the data item. so, if no data had been passed, within this function call, d would be undefined, but i would still be equal to 0,1,2, …
The answer to the second question is the last great mystery of d3. Once you get this, you’re golden.
Creating or removing the right number of elements depending on data
Before we get further, let’s quickly introduce append’s reckless cousin, remove(). Writing remove at the end of a selection deletes all the corresponding elements from the document object model.
so,
d3.selectAll("p").remove()
would remove our 3 paragraphs. Let’s do it and get rid of our paragraphs.
Actually, let’s do
d3.select("body").selectAll("*").remove()
and remove everything below the body.
Now, earlier, we were alluding to what could happen if we didn’t have the same number of elements as of items in our dataset.
That means that we should be able to do the following:
- If there are fewer elements than items in a dataset, create the missing elements
- If there are fewer elements than items in a dataset, disregard the extra data items
- If there are more elements than items in a dataset, remove the extra elements
- If there are more elements than items in a dataset, don’t change the extra elements/li>
- As data are updated, keep some elements, remove some, add some
Why would we want to do all of this?
The first case is the most common. When we start a data visualization script, chances are that there are no elements yet but there is data, so you’ll want to add elements based on the data.
Then, if you have interaction or animation, your dataset may be updated, and depending on what you intend to do you may just want to update the existing elements, create new ones, remove old ones, etc. That’s when you may want to do 2, 3 or 4.
The last (5th case) is more complicated, but don’t worry, we’ve got you covered.
Right now, we should have 0 p elements on our page (and if for some reason this is not the case, feel free to reload it).
let’s create a variable like so:
var text=["first paragraph","second paragraph","third paragraph"];
somewhat uninspired, I know, but let’s keep typing to a minimum, if you want to go all lyrical please go ahead.
We are smack in case 1: we’d like to create 3 paragraphs, we have 3 items in our dataset, but 0 elements yet.
Here’s what we’ll type:
d3.select("body").selectAll("p").data(text).enter().append("p").html(String)
A-ha! we meet again, select selectAll data enter append.
After all we’ve done, select selectAll should make some sense, even though, at this stage, this selection returns 0 p elements. There are none yet.
Then we pass data as we’ve done before. Note that there are 3 items in our dataset.
Then, we use the enter() statement. What it does is that it prepares one new element for every unmatched data item. We’ll expand a bit later on the true meaning of unmatched, but for the time being, let’s focus on the difference. We have 0 elements, but 3 data items. 3 – 0 = 3, so the enter() selection will prepare 3 new elements.
What does prepare means? the elements are not created yet at this stage, but they will with the next command. Right after enter(), think of what’s created as placeholders for future element (Scott’s vocabulary), or buds that will eventually blossom into full-fledge elements (mine).
After enter(), we specify an append(“p”) command. Previously, when we had used the append method, we created one element at a time. But in this case, we are going to create as many as there are placeholders returned by enter(). So, in our case, 3.
You may legitimately wonder why we needed a select statement to begin with – after all, enter() works on the difference between selectAll and data. But when we are going to append elements, we will need to create them somewhere, to build them upon a container. This is what the first select does. Omit it, and you’ll have an error, because the system will be asked to create something without knowing where.
The final method, html, will populate our paragraphs with text. The String function, which we have already seen, simply returns the content of each item in our dataset.
We’re using select > selectAll > data > enter > append, but hopefully you will see why (and if you don’t, hang on to the end of the article, and feel free to ask questions).
But let’s recap once more. Actually, let’s see the many ways to get this wrong (or, surprisingly, right)
d3.selectAll("p").data(text).enter().append("p").html(String)
We’ve alluded to that: without a container to put them in, p elements can’t be created. This will result in a DOM error.
d3.select("body").selectAll("p").data(text).append("p").html(String)
No enter statement. After the selectAll, the selection has 0 items. This doesn’t change after the data method. As such, append creates 0 new elements, and nothing changes in the document. (but no error though)
d3.select("body").data(text).selectAll("p").enter().append("p").html(String)
In many cases in d3, it’s ok to switch the order of chained methods, but that’s not true here. selectAll must come before data. We bind data to elements. The other way round would have made sense, but that’s the way it is. First selectAll, then data. Here, we get an error, because enter() can’t be fired directly from selectAll.
d3.select("body").selectAll("wootwoot") .data(text).enter().append("p").html(String)
This actually works. Why?
There are actually 0 elements of type “wootwoot” in our document, which may or may not surprise you. There are still 3 items in the dataset, so enter() returns space for 3 new elements. the next append subsequently creates 3 p elements, which are populated by the html method.
It usually makes more sense to use the same selector in the selectAll and the append methods, but that’s not always the case. Sometimes, you will be selecting elements of a specific class, but in an append method, you have to specify the name of an element, not any selector. So you’d go
d3.select("body").selectAll(".myClass") .data(text).enter().append("p").html(String).attr("class","myClass")
Now that we’ve seen a few variations on the subject, here is a really cool use of enter. Check this out:
d3.select("body").selectAll("h1").data([{}]).enter().insert("h1").html("My title")
ok there are 3 things here worth mentioning. 2 are just for show, though it doesn’t hurt to know them, but the 3rd one is really neat and useful.
In data, we’ve passed: [{}]. This is an array of one object which is empty. There are two interesting things with that construct, one is that there’s only one element, the other one is that it’s an object. When you pass objects, the functions you run on them (like in the attr or style methods) can be used to add properties to them or change them. If that doesn’t make sense yet, just accept for now that it gives you more flexibility than using, say, [0].
We’ve used insert instead of append. What this means is that we’re adding things before the first child of our container, not at the end (ie after the last child). In other words, our h1 (a title) will go at the top of the body element – fitting.
But what’s really interesting is what would happen if you were to run that statement again – nothing. try it. See?
Why is that? Well, on your first go, at a point where there are no h1 elements yet, it works the standard way – you do a selectAll that returns nothing, you bind a dataset with more elements, then enter prepares space for the unmatched elements – 1 in our case – and then append creates that element. You may notice that the html part doesn’t use the data.
When you run it again, the selectAll finds one h1 element, there’s still one item in the dataset, so enter won’t find any unmatched element, so the subsequent append is ignored.
So, you can run this kind of thing in a loop safely, it will only do what it’s supposed to do on the first go, it will be ignored afterwards. Don’t be afraid to use this construct for all the unique parts of your visualization, so you won’t have to worry about creating them multiple times.
Other cases of mismatch between data items and elements
All right, so now we have 3 p elements and 3 items in our dataset.
What happens if we do this:
text2=["hello world"] d3.selectAll("p").data(text2).html(String)
?
There is now one item in the data set, versus 3 p elements. Try to make a guess before you type this in. At the tutorial, the audience made a few reasonable guesses, namely: the last 2 paragraphs will be removed, only “hello world” will remain. Or: all paragraphs will be changed to “hello world”.
Either could happen if d3 was trying to be smart and guess your intent. Fortunately, d3 is no excel here and behaves consistently even if that means extra work for you. When you do that (and please try this now) what happens is that the first paragraph of text is changed and the other two are untouched.
We are in the case, change the matched elements, ignore the others.
By the way, by now you should be able to guess what would have happened if there had been an enter() right after the data. Do I hear… nothing? almost! There would be no unmatched data element, so enter() would not return anything. Besides, enter() would require an append afterwards to make anything. This is why you’ll get an error: html can’t work directly after enter(). you would need an append.
Now what if we want to remove the extra 2 elements? This is where the exit() method comes into play.
exit() is pretty much to enter() what remove() is to append(). Kind of.
let’s see how this work by example.
let’s recreate our 3 p paragraphs just in case:
d3.selectAll("p").remove(); d3.select("body").selectAll("p").data(text).enter().append("p").html(String);
Now we pass the new dataset:
d3.selectAll("p").data(text2).html(String)
– remember that only the first paragraph has changed, the other two are untouched.
Now, while all the items in the dataset are matched with elements, there are elements which are not matched with an item in the dataset: the last two. This is where exit() comes into play. exit() will select those two paragraphs, so they can be manipulated. Typically, what happens then is a remove(), but you could think of other options.
d3.selectAll("p").data(text2).exit().style("color","red");
That will flag them instead of removing them.
But typically, you do:
d3.selectAll("p").data(text2).exit().remove();
.
note that even though you have already matched a one item dataset to that selection, to use exit(), you will need to use data before. selectAll(“p”).exit() won’t work. You’ll have to re-specify the data match.
So that takes care of the case when you want to remove extraneous data items.
This leaves us with only one simple case: where you have more items in your dataset than you have elements and you don’t want to create elements for the extra data items.
That’s the simplest syntax, really.
Here, for instance, we have only one paragraph left, but there are 3 items in the text variable.
so let’s do:
d3.selectAll("p").data(text).html(String)
(no enter, no exit, no append).
The paragraph text will now come from the new dataset (from its first item to be precise), no extra paragraphs will be created, none will be deleted.
Data joins
the last case (pass a new dataset, create new elements as needed, make some elements stay and make some elements go) requires more complexity and actually I won’t cover it in detail here, instead I will explain the principle and refer you to this tutorial on object constancy by Mike Bostock.
In the general case, when you try to match your dataset to your elements, you count them and deal with the difference. So you have 5 data items and 3 elements: you can make 2 extra elements appear by using enter. With the concept of data joins, you can assign precisely each data item to one given element, so the first data item doesn’t have to be that of the first element, etc. Well, the first time it will be, and each element will receive a key, a unique identifier from the dataset. If the dataset is subsequently updated, the element will only be matched if there is an item in the dataset with the same key. Else, it will be found by an exit() method.
And that’s the general gist of it.
At Strata, we went further – we discussed interaction and transition, but that is downward trivial once you have understood – and by that, really understood, with all the implications and nuances – the selections.
Very helpful tutorial !! thanks 🙂
Cool tutorial, very helpful – thanks!
Excellent, yes I have copied and pasted from the examples, this really helped understand what is behind this super useful visualisation toolset – thanks
Thank you, thank you, thank you! This was just what I needed to stare making head or tail of this stuff.
One of the best introduction i ever read, I tried to start learning d3.js many times where many tutorials took me to nowhere.
Your intro. bring me to somewhere after all. Thanks a million. Appreciate your time and effort !!!
Hands down the best tutorial on selection in D3 for a D3/javaScript-noob like me. Very helpful and well-structured.
Thank you for taking time to do this!
Can you help me with this issue please i need it very urgently in my company..i have to do this..
hi, it’s not super easy to mix click events and brush events. this is because when you click, you are first creating a brush element at the svg level.
when you select multiple events – that’s the easy part, you can just add “.data()” at the end of your console.log statement to display only the data of the selected nodes.
to mix those 2 types of events I suggest you look at this bl.ocks.org:
http://bl.ocks.org/mbostock/4566102
hii my name is Jeet i am new to D3.I have a problem can you help???.. i am able to select multiple nodes in my application using brush but i can not do a little bit of some more requirements.
this is the fiddle i am giving you suits my purpose very nicely but i need some more functionality see this first
http://jsfiddle.net/yr9Zp/
this fiddle i am able to select multiple nodes at a time but i also want their values to the console i.e when i will select the nodes the nodes value will go to the console and also i need that when i will click on a specific node that nodes value will also go to the console.Can you help from here now.please i have tried a lot to do that.it is very urgent work for my company please help
Hi, great tutorial!
When I tried d3.selectAll(“p”).data(text).enter().append(“p”).html(String), which was supposed to generate a DOM error because it lacked select(“body”), it worked fine in Chrome, except on inspection I see the p tags were created after the body tag, before the html close tag. Is that browser specific?
I still find selectAll(‘wootwoot”) confusing. It created an empty selection to which the data was bound, but even after enter() and append(‘p’), nothing “wootwoot” was created. It’s as if you must selectAll something but it doesn’t matter what it is. In fact in the next example, with selectAll(“.myClass”), I accidentally typed .attr(“class”, “myClas”) and the only difference between that result and the result from typing it properly was that the html for the latter was on three lines instead of one. It seems you can selectAll anything as long as it doesn’t already exist, and it will create the new elements.
Despite using insert(“h1”), my title went *after* the p tags. ???
I’m currently working on a pie chart and having trouble making the wedges clickable to open to a related page. Can you point me in the right direction so I can figure what’s going wrong?
hi. For the first syntax (d3.selectAll(“p”) etc) it might work now, it certainly didn’t work when I wrote the tutorial but regardless I wouldn’t recommend it. You want to have the finest control about where your elements will appear. And if this syntax makes them appear after everything else in the document, that wouldn’t work well for svg elements which would have to be children/descendents of an svg container anyway.
yes it is true that when you write:
container.selectAll(selector1).data(data).enter().append(selector2), selector1 and selector2 don’t have to match. you may even write something like:
svg.selectAll(“*”).data(data).enter().append(“g”) or something like this.
I personally like to give classes to all my elements, and ensure that the two selectors match.
so write something like:
svg.selectAll(“g.box”).data(data).enter().append(“g”).classed(“box”, 1);
I try to write my code so that if it is ran again on something existing, it would create and change what’s needed. In the above, if my data doesn’t change, if I ran this twice, the second time, no new “g” elements would be added.
I can’t really advise on the insert(“h1”) not showing up without more code.
I typically use only “append”. The reason I do that is that when I generate something I try as much as possible to create the whole hierarchy in one go. Again if everything is given classes it’s much easier to get at the right spot.
@Linda (and post author): insert(“h1”) will insert the h1 at the beginning of the set of matching elements in the container, not at the beginning of the container. This means if you had multiple existing h1s it would be the first one, but not the first thing overall in that container. Docs: https://github.com/mbostock/d3/wiki/Selections#insert
> Inserts a new element with the specified name before the element matching the specified before selector
Not super intuitive given how `append` and `prepend` work in certain popular libraries, but apparently as designed.
Hey Jerome,
I can’t stress enough how much your article was useful to me today! I have been struggling a entire afternoon around selections/creation for a multi dimensional dataset and I really thinks this is something a newcomer to D3 will overlook and get doomed.
Thanks a lot for writing this up
Julien
Really like it!