所以我有一個視圖創建路徑,我試圖讓它使我繪製的每一行都具有隨機顏色。D3.js類別顏色標尺工作不正常
目前,我正在做這個 -
var color = d3.scale.category20();
//other code that does stuff
this.path = svg.append("path")
.attr("d", line(newData))
.style("stroke", function(d,i) {
var colorIndex = Math.random() * (20 - 0) + 0;
return color(colorIndex); })
.attr("fill","none")
.attr("class","line");
這並不繪製不同顏色的線。此外,當我這樣做
this.path = svg.append("path")
.attr("d", line(newData))
.style("stroke", function(d,i) {
return color(4); })
.attr("fill","none")
.attr("class","line");
顏色仍然是藍色。
這是爲什麼發生?
將是有益的,如果你能創造的jsfiddle .. – iJade
我可以 - 但只是有很多相關的東西 - 創建的jsfiddle需要花費大量的時間 – praks5432
地給我們擺弄 –