What is the difference D3 datum vs. data?

I found the correct answer here from Mike himself:

D3 – how to deal with JSON data structures?

If you want to bind your data to a single SVG element, use

(...).data([data])

or

(...).datum(data)

If you want to bind your data to multiple SVG elements

(...).data(data).enter().append("svg")

…..

Leave a Comment