-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
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
Bug: Titles not being shown #2301
Comments
Thanks for the codepen examples! Looks like you're referring to the titles for If you're using these axes just to get labels positioned where you want them, can you make them with annotations instead? Those should actually be quite a bit easier to use (and more flexible) for this purpose anyway. Something like: var layout = {
...
annotations: [{
text: 'By Radius',
xref: 'paper',
yref: 'paper',
xanchor: 'center',
yanchor: 'bottom',
x: 0.875,
y: 1.01,
showarrow: false,
font: {size: 14}
}]
}; |
Thanks I was able achieve what I need using the annotations. |
OK great. Sorry for the trouble, I didn't realize anyone was using axes this way... |
Not sure why I did it this way - probably did not know about annotations. Thanks for the pointer. |
The new version fixed the heat and contour map bugs, but a new bug was introduced. The titles on plots are not being show. Here are 2 codepens that show this:
Version 1.31.2 titles work: https://codepen.io/LarryMartell/pen/BYBaXB
Version 1.33.1 titles do not work: https://codepen.io/LarryMartell/pen/WMebeQ?editors=1000
The text was updated successfully, but these errors were encountered: