I have D3.js barchart published in IIS however, calling d3.csv function causes the following error:
GET http://localhost/D3JS/barchartCopy/Shipping.csv 406 (Not Acceptable)
this is the code:
$(document).ready(function () {
d3.csv('http://localhost/D3JS/barchartCopy/Shipping.csv', function(data) {
render(data);
});
has anyone come across something like this?!
Edit:
I think the issue is related to some Http header, that should be included in function call!