json 変数を使用してデータを渡したい。以下の例では、json は外部の JSON ファイルから取得されます。私はdc.jsが初めてなので、ローカル変数からデータを渡す方法を教えてください。
queue()
.defer(d3.json, "sampledata.json") // sampledata.json is an external json file
.await(makeGraphs);
function makeGraphs() {
//function which proceses the data
}
私はこれを試しました
var sampledata = [ ....];
queue().defer(d3.json, "sampledata.json") // sampledata.json is an external json file
.await(makeGraphs);
function makeGraphs() {
//function which proceses the data
}
しかし、うまくいきませんでした。