0
我試圖自己嘗試nvd3散點圖例子。我沒有收到任何錯誤,但圖表沒有填充。NVD3散點圖不顯示
當我試圖進入屏幕時,我收到了一個空白的網頁。即使我現有的其他內容都沒有了。有沒有人設法讓散點圖運行起來?如果你能分享一個實際的例子,我將非常感激。
#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錯誤。你在控制檯中看到什麼?同意JSFiddle或Plunkr會有所幫助。 – jeznag