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
On IE11, setting the layout parameter modebar: {'orientation': 'v'} will break plots on IE11, with the following error:
layout
modebar: {'orientation': 'v'}
Unhandled promise rejection TypeError: Object doesn't support property or method 'prepend'
This is likely related to this line in #3068 using element.prepend(). The bug can likely be easily fixed by using this polyfill suggested by MDN.
element.prepend()
"Plunker" pen demonstrating the issue (graph does not display on IE11): https://plnkr.co/edit/mnQV4RWKhAQOLUX225IL?p=preview
I had to use Plunker as CodePen et al is not compatible with IE11.
The text was updated successfully, but these errors were encountered:
Related issue: #3186 (@antoinerg). Related fix: #3187.
I can fix this one myself; however, it might have to wait till next week as I'm on my own tight release schedule.
Sorry, something went wrong.
@antoinerg wanna have a 👁️ at this bug?
@etpinard We can either add a polyfill for prepend() or create a new function as shown in this commit 3c39b31
prepend()
... or use d3:
d3
https://stackoverflow.com/questions/26234636/d3-js-prepend-similar-to-jquery-prepend
which would be my solution of choice.
No branches or pull requests
On IE11, setting the
layout
parametermodebar: {'orientation': 'v'}
will break plots on IE11, with the following error:This is likely related to this line in #3068 using
element.prepend()
. The bug can likely be easily fixed by using this polyfill suggested by MDN."Plunker" pen demonstrating the issue (graph does not display on IE11):
https://plnkr.co/edit/mnQV4RWKhAQOLUX225IL?p=preview
I had to use Plunker as CodePen et al is not compatible with IE11.
The text was updated successfully, but these errors were encountered: