d3.text(url[, callback])
Creates a request for the text file at the specified url with the default mime type text/plain.
This convenience constructor is approximately equivalent to:
d3.request(url)
.mimeType("text/plain")
.response(function(xhr) { return xhr.responseText; })
.get(callback);
Please login to continue.