colorbar
colorbar copied to clipboard
Dynamically updatable color bars for use with d3.js
Results
2
colorbar issues
Sort by
recently updated
recently updated
newest added
Note that this implementation does not support polylinear color scale. For instance, ``` var linear = d3.scale.linear() .domain([-0.55, -0.10, 0, 0.16, 1]) .range(['blue', "#b3b3ff", 'white', "#ffb3b3", 'red']); ``` is a...
The new type inferencer seems to fall back to assuming a linear scaletype when presented with a log scale that contains certain types of multipoint domains. ``` d3.scale.log().domain([1,10,100]).range(["white","blue","red"]) ```