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
When contour z-points are greater than 10 million then the tooltip value is suffixed with "undefined".
The suffix should be B or a multiple of 10M or it should render with an exponent. It should also be implemented for even larger values (1e8+).
var data = [ { z: [ [1e6, 5e6, 1e7, 1.5e7], [1.2e6, 5.6e6, 1.1e7, 1.6e7] ], type: 'contour' }]; Plotly.newPlot('myDiv', data);
The text was updated successfully, but these errors were encountered:
Thanks for the report!
Sorry, something went wrong.
fix #2420 - exponents in z hover values
f8264b4
Successfully merging a pull request may close this issue.
When contour z-points are greater than 10 million then the tooltip value is suffixed with "undefined".
The suffix should be B or a multiple of 10M or it should render with an exponent. It should also be implemented for even larger values (1e8+).
The text was updated successfully, but these errors were encountered: