threshold(value)
Given a value in the input domain, returns the corresponding value in the output range. For example:
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.