0
私は自分自身でnvd3散布図の例を試そうとしていました。私は何のエラーも起こっていませんが、グラフにデータが入力されていません。NVD3散布図が表示されない
画面にアクセスしようとすると空白のWebページが表示されます。私の既存の他のコンテンツもなくなってしまった。誰も散布図を取得して実行することができましたか?実際の例を分かち合うことができたら、本当にありがたいです。
#html
<script>
$(document).ready(function(){
nv.addGraph(function() {
var chart = nv.models.scatterChart()
.showDistX(true) //showDist, when true, will display those little distribution lines on the axis.
.showDistY(true)
.color(d3.scale.category10().range());
//Axis settings
chart.xAxis.tickFormat(d3.format('.02f'));
chart.yAxis.tickFormat(d3.format('.02f'));
var myData = randomData(4,40);
d3.select('#chart svg')
.datum(myData)
.call(chart);
nv.utils.windowResize(chart.update);
return chart;
});
/**************************************
* Simple test data generator
*/
function randomData(groups, points) { //# groups,# points per group
var data = [],
shapes = ['circle', 'cross', 'triangle-up', 'triangle-down', 'diamond', 'square'],
random = d3.random.normal();
for (i = 0; i < groups; i++) {
data.push({
key: 'Group ' + i,
values: []
});
for (j = 0; j < points; j++) {
data[i].values.push({
x: random()
, y: random()
, size: Math.random() //Configure the size of each scatter point
, shape: (Math.random() > 0.95) ? shapes[j % 6] : "circle" //Configure the shape of each scatter point.
});
}
}
return data;
}
});
[fiddle](https://jsfiddle.net/)にコードを挿入してください。簡単にデバッグし、あなたを助けます。 – shabeer90
あなたはおそらくJSエラーがあるようなサウンドです。コンソールには何が表示されますか? AgFree JSFiddleまたはPlunkrが役に立ちます。 – jeznag