4

I am referencing this d3 example of Stacked Bar Chart and try to implement in jsfiddle1

I want to add this example into jsfiddle, I have added 5 external source alone with source csv file but i got no output.

Here is my jsfiddle2

Can anyone help on this what I need to add there.

4

1 回答 1

2

问题是您必须以不同的方式嵌入 csv 数据,因为由于浏览器限制,它既不能像 js/css 那样包含在 fiddle 中,也不能从 javascript 中请求。

例如,您可以将它包含在小提琴的 HTML 部分中:

<pre id="csvdata">
  date,wounds,other,disease
  5/1854,0,95,105
  [...]
</pre>

我更新了你的小提琴,它现在正在工作。

于 2013-05-14T16:52:12.007 回答