Charts don't work in IE11
See original GitHub issueI’m submitting a … (check one with “x”)
[x ] bug report => search github for a similar issue or PR before submitting
[ ] feature request
[ ] support request => Please do not submit support request here
Current behavior Charts don’t work in IE (tested in IE11)
Expected behavior Charts would work in IE11 at least
Reproduction of the problem Run your samples in IE11 and you get the same issue. I am using the classlist.js polyfill but this doesn’t seem to fix it
What is the motivation / use case for changing the behavior? As a web developer I would expect the charts to work in IE11
Please tell us about your environment: Windows, IE11
- ngx-charts version: 4.1.2
- Angular version: 2.4.7
Issue Analytics
- State:
- Created 7 years ago
- Reactions:1
- Comments:13 (5 by maintainers)
Top Results From Across the Web
Chart option not working with IE11 or Edge browser?
Hi, this is a great plugin, and works perfectly with Firefox/Chrome, however I can't get the chart option (chart=”Line”) working with IE11 or...
Read more >Google charts aren't working in IE11, (but works in chrome ...
Surprisingly, all charts from index.html can be seen in IE11 but when I open a page with a chart and table it won't....
Read more >Charts not rendering image in IE11 but fine in other browsers
1. Click the Gear icon to open the Tools menu. · 2. Click Delete Browsing History. · 3. Check the boxes for these...
Read more >OBIEE 12c: Lines And Percentages Are Not Displaying In Graph
Have a Target percentage (%) in Graph/Chart which is not being seen in IE 11 browser. Can see the same Target percentage (%)...
Read more >CanvasJS not working in IE11
Chetna,. Do you mean you you are unable to export CanvasJS Chart as image using Canvas2Image? If so, you can exportEnabled property to ......
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
make it works with this polyfills.ts
`import ‘core-js/es6’; import ‘core-js/es7/array’; import ‘core-js/es7/reflect’; import ‘core-js/client/shim’; import ‘classlist.js’; import ‘intl’; require(‘zone.js/dist/zone’);
// IE11 fix if (typeof SVGElement.prototype.contains == ‘undefined’) { SVGElement.prototype.contains = HTMLDivElement.prototype.contains; }`
I added the svg contains to core, it will be in the next release