1
this JSFIDDLEをご覧ください。私はa tutorialに従って、NVD3.jsの非常に基本的な散布図を作成しようとしていますが、役に立たないです。Nvd3 - すべての外部リソースを追加しても、散布図は読み込まれません
function createBasicChart1(){
var chart;
nv.addGraph(function(){
//Create chart
chart = nv.models.scatterChart()
.showLegend(false) // Remove legend (will put it back later)
.showDistX(true) // Show X axis
.showDistY(true) // Show Y axis
.useVoronoi(false) // For now, disable hovering on points
.color(d3.scale.category10().range()) // Colormap
.duration(500); // Fade in duration
// Generate toy data
data = [{key: "", values:[{x:0,y:0},{x:1,y:1}, {x:3, y:3}, {x:3, y:10}]}];
//Add chart to page
d3.select("#basicChart1").datum(data).call(chart)
// Register chart with window resize event
nv.utils.windowResize(chart.update);
return chart
});
}
ここで紛失しているものを教えてください。チュートリアルのようにすべてのリソースを追加しました。