-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
Radial charts are not working in IE 11 #2004
Comments
Are there any errors in the developer tools? |
Hi @junedchhipa Thank you for the prompt response yes i am getting promise error as below in IE |
Hi @junedchhipa will it be resolved in next release? |
@SandeepKapalawai Hi Sandeep, I don't have IE11 right now to debug the issue. |
I've run into this issue too. It doesn't seem to be specific to a particular kind of chart. The issue is that IE doesn't support the classList property on SVG elements. I was able to fix it for my project by installing and importing the svg-classlist-polyfill package. Edit: I see you already have a different polyfill for that issue. It seems to have a bug dealing with svgs in some cases. |
IE11 support has been ended |
Not sure this is a bug or issue at my end.
I went through the documentation mentioned for IE 11 in order to work, so i have include the 3 polyfills in my index,html as below
As mentioned in the documentation and as per above @sarathcs comments, i have include those polyfills in my index.html file as below :
<script src="https://cdn.jsdelivr.net/npm/eligrey-classlist-js-polyfill"></script> <script src="https://cdn.jsdelivr.net/npm/promise-polyfill@8/dist/polyfill.min.js"></script> <script src="https://cdn.jsdelivr.net/npm/findindex_polyfill_mdn"></script>S <title>React App</title>
and in my index.js file i have included below polyfills
But i still didnt see it is loading correctly in IE, is there anything i am missing or any thing to be corrected ?
Thank you
The text was updated successfully, but these errors were encountered: