source:
Dev/trunk/d3/src/csv/csv.js
@
199
Last change on this file since 199 was 76, checked in by fpvanagthoven, 14 years ago | |
---|---|
File size: 130 bytes |
Rev | Line | |
---|---|---|
[76] | 1 | d3.csv = function(url, callback) { |
2 | d3.text(url, "text/csv", function(text) { | |
3 | callback(text && d3.csv.parse(text)); | |
4 | }); | |
5 | }; |
Note: See TracBrowser
for help on using the repository browser.