user3692767
user3692767

Reputation: 1

zoomable icicle d3 add label in chart

I have read the post about to insert a label into a d3 chart but I don't see the text

This is the post: How to add to text to the Zoomable Icicle d3 graph?

This is my page with code: http://mirkotinelli.altervista.org/icicle/altro.html

Upvotes: 0

Views: 1121

Answers (1)

sfletche
sfletche

Reputation: 49734

In the following line from your source

.text(function(d) { return d.key })

you reference d.key which doesn't exist in your json.

Replace d.key with d.name

.text(function(d) { return d.name })

Upvotes: 2

Related Questions