source: Dev/branches/rest-dojo-ui/Demo/d3/src/csv/csv.js @ 312

Last change on this file since 312 was 312, checked in by jkraaijeveld, 13 years ago
File size: 130 bytes
Line 
1d3.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.