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
Originally reported in plotly/plotly.py#1537.
When the axis tickformat is set to 'p' for percentage, the ticks are often displayed with an unexpectedly large amount of precision.
'p'
CodePen: https://codepen.io/jonmmease/pen/vMMNXJ?editors=1010
var fig = { "data": [ { "type": "scatter", "y": [ 0, 1.0 ] } ], "layout": { "yaxis": { "tickformat": "p", "automargin": true, } } } Plotly.newPlot('myDiv', fig, {showSendToCloud: true});
The text was updated successfully, but these errors were encountered:
archmoj
Successfully merging a pull request may close this issue.
Originally reported in plotly/plotly.py#1537.
When the axis tickformat is set to
'p'
for percentage, the ticks are often displayed with an unexpectedly large amount of precision.CodePen: https://codepen.io/jonmmease/pen/vMMNXJ?editors=1010
The text was updated successfully, but these errors were encountered: