-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
bug with subscripts and superscripts in 3D #1165
New issue
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
Comments
Some info on the topic: HTML entities are converted to unicode in src/lib/html2unicode.js. In particular Note that |
cc @dfcreative |
The example below is related to using lower case letters and Plotly.newPlot(gd, [ { "type": "mesh3d", "y": [0, 1, 2], "x": [1, 2, 0], "z": [2, 0, 1], "i": [0], "j": [1], "k": [2] } ], { "title": "Triangle mesh", "scene": { "zaxis": { "title": "Z" + "" + "super script using numbers and only lower cases without" + "" + "'q'!" } } }); |
Now in the PR #3207 the superscripts and subscripts could be used in webgl; and they are not limited to lower cases. |
As reported by @ellecj - the problem has a couple of layers...
If I try to make this plot:
I don't see any super or subscripts:

And then if I do a
relayout
:I see a superscript but not a subscript:

The text was updated successfully, but these errors were encountered: