question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

[ ] bug report => search github for a similar issue or PR before submitting [x ] feature request [ ] support request => Please do not submit support request here


**Current behavior**
Charts don't work at IE edge/11/10

Hi,
I am very impressed of the work that has been done on this OS, and I would like to use it.
I have noticed that the charts don't work on IE.
Are you familiar with the issue? is it going to be fixed soon (is there ETA)?

Thanks a lot


Issue Analytics

  • State:closed
  • Created 6 years ago
  • Comments:22 (8 by maintainers)

github_iconTop GitHub Comments

7reactions
iamnyashacommented, May 17, 2017

If you are using angular-cli you can add these polyfills … import 'core-js/es7/array';

import 'classlist.js'; // Run npm install --save classlist.js.

then in you index.html file add the MouseEvent polyfill

    (function (window) {
      if (!!window.MSInputMethodContext && !!document.documentMode || document.documentMode === 10) {
        function MouseEvent(eventType, params) {
          params = params || { bubbles: false, cancelable: false };
          var mouseEvent = document.createEvent('MouseEvent');
          mouseEvent.initMouseEvent(eventType, params.bubbles, params.cancelable, window, 0, 0, 0, 0, 0, false, false, false, false, 0, null);

          return mouseEvent;
        }

        MouseEvent.prototype = Event.prototype;

        window.MouseEvent = MouseEvent;
      }
    })(window);

source: https://developer.mozilla.org/en-US/docs/Web/API/MouseEvent/MouseEvent#Polyfill

This effectively adds full support for ie10 and ie11

5reactions
menixcommented, May 12, 2017

Add my voice for IE11+ support. Thanks in advance!

Read more comments on GitHub >

github_iconTop Results From Across the Web

Internet Explorer help - Microsoft Support
Support for Internet Explorer 11 has ended on June 15, 2022. Make the switch to Microsoft Edge to experience the web in a...
Read more >
Internet Explorer 11 has retired and is officially out of support ...
After 25+ years of helping people use and experience the web, Internet Explorer (IE) is officially retired and out of support as of...
Read more >
Microsoft is finally retiring Internet Explorer in 2022 - The Verge
Microsoft is finally retiring Internet Explorer. The web browser will no longer be supported next year, and Microsoft is dropping support ...
Read more >
Microsoft retires Internet Explorer browser after 26 years - CNBC
Microsoft stopped supporting the Internet Explorer web browser on Wednesday, indicating the end is near for a 26-year-old brand with baggage ...
Read more >
Microsoft is ending Internet Explorer support in Windows 10 ...
Microsoft is ending Internet Explorer support in Windows 10 on June 15 ... It's the end of an era you probably won't miss....
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found