threshold(value)
Given a value in the input domain, returns the corresponding value in the output range. For example:
1 2 3 4 5 6 7 8 9 | var color = d3.scaleThreshold() .domain([0, 1]) .range([ "red" , "white" , "green" ]); color(-1); // "red" color(0); // "white" color(0.5); // "white" color(1); // "green" color(1000); // "green" |
Please login to continue.