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
Plotly config:
var data = [{ type: "scatter", y: [2, 5, 3, 2.5], mode: 'text+lines+markers', texttemplate: "%{y}" }]; var layout = { yaxis: { type: 'log' } };
Example on codepen - https://codepen.io/x-base/pen/LYxOwBR
Expected text - 2, 5, 3, 2.5, but I see Math.pow(y) - 100, 100k, 1000, 316.2278.
2
5
3
2.5
Math.pow(y)
100
100k
1000
316.2278
The text was updated successfully, but these errors were encountered:
Yikes, thanks for the bug report!
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Plotly config:
Example on codepen - https://codepen.io/x-base/pen/LYxOwBR
Expected text -
2
,5
,3
,2.5
,but I see
Math.pow(y)
-100
,100k
,1000
,316.2278
.The text was updated successfully, but these errors were encountered: