I just made a small fix:
https://www.dropbox.com/s/wnf6fa51ohbvjhy/d3plus.full.js?
This fix is based in what I read about: «Use JavaScript to Export Your Data as CSV»
@
https://halistechnology.com/2015/05/28/use-javascript-to-export-your-data-as-csv/
The fix only consist's in changing the code, where he tries to download the CSV:
// Line 39570
var blob = new Blob([csv_data], {type: "text/csv;charset=utf-8;"});
var link = document.createElement("a");
if (link.download !== undefined) {
var url = URL.createObjectURL(blob);
link.setAttribute("href", url);
link.setAttribute("download", title + ".csv");
link.style = "visibility:hidden";
document.body.appendChild(link);
link.click();
document.body.removeChild(link);
}
File: d3plus.full.js.zip
(d3plus.v1.9.8 changed)