1 d3_transitionPrototype.text = function(value) {
2 return this.tween("text", function(d, i) {
3 this.textContent = typeof value === "function"
4 ? value.call(this, d, i)
5 : value;
6 });
7 };