d3.text()

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);
doc_D3_Js
2016-11-24 10:27:21
Comments
Leave a Comment

Please login to continue.