We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Depending on value, impact or other arbitrary number the blip size should be sized accordingly.
Example: Spending on System X is 3 USD per employee vs Spending on System Y is 6 USD per employee
The text was updated successfully, but these errors were encountered:
Input from Discord
let values = [50, 150, 500, 1000, 65000]; let scale = d3.scaleLinear() .domain(d3.extent(values)) .range([10, 100]);
d3.clamp() clipping values outside range
let scale = d3.scaleLinear() .domain(d3.extent(values)) .range([10, 100]) .clamp(true);
Sorry, something went wrong.
vrklgn
No branches or pull requests
Depending on value, impact or other arbitrary number the blip size should be sized accordingly.
Example:
Spending on System X is 3 USD per employee vs Spending on System Y is 6 USD per employee
The text was updated successfully, but these errors were encountered: