I am trying to create a jsfiddle for one of the dc.js examples. I am not able to load an external file using a URL and d3.csv()
.
Can someone please suggest how to load a csv file using d3.csv
in jsfiddle.
I am trying to create a jsfiddle for one of the dc.js examples. I am not able to load an external file using a URL and d3.csv()
.
Can someone please suggest how to load a csv file using d3.csv
in jsfiddle.
The approach I usually use for CSV data in JSFiddle examples is
a. Put the data in a
<pre>
block at the end of the HTML mark-up, usually with the id "data".b. Add
pre {display:none;}
to the CSS.c. Replace the
d3.csv(filename, callback)
function call with ad3.csv.parse(text)
call, using the text content of the<pre>
block as the input to the parse function.Because the parse function doesn't use a callback, it just returns the data array, you need to save that output in a variable of the same name as your callback data parameter.
In other words, if your example looks like
The JSFiddle-friendly version would look like:
If you would rather have a full working example that uses the file-reading methods as intended, there are other options as mentioned in the comments. Tributary also allows external data files I think.