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:
1 2 3 4 | d3.request(url) .mimeType( "text/plain" ) .response( function (xhr) { return xhr.responseText; }) .get(callback); |
Please login to continue.