I have a d3 pie chart with a color function:
var color = d3.scale.ordinal()
.range(['#0075B4', '#70B5DC']);
If there are only two values/pieces, this works. But if there are more, I want to pick colors between the two given.
Above, with 3 pie pieces, the piece labelled "Cost 3" would have the color that is between #0075B4
and #70B5DC
.
Is this possible with d3? Here is a jsfiddle of what I have so far: http://jsfiddle.net/9ruzntrr/1/
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…