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
The function createWave()
createWave()
plotly.js/src/traces/surface/defaults.js
Line 19 in d37895b
Math.max(1, Math.min(0, v)) // line 27
is 1 for any v.
Replacing it by:
Math.min(1, Math.max(0, v))
removes the actual drawback, and leads to a non-constant opacityscale.
The text was updated successfully, but these errors were encountered:
@empet Thanks very much for uncovering this bug.
Sorry, something went wrong.
archmoj
Successfully merging a pull request may close this issue.
The function
createWave()
plotly.js/src/traces/surface/defaults.js
Line 19 in d37895b
is 1 for any v.
Replacing it by:
removes the actual drawback, and leads to a non-constant opacityscale.
The text was updated successfully, but these errors were encountered: