5 Answer(s)
-
0
hi We will check IE11, thanks for your feedback.
-
0
Do you have any news?
-
0
hi
Please follow this issue: https://github.com/aspnetzero/aspnet-zero-core/issues/3387 It's planed v9.1
-
1
So this was really important to me as a lot of my customers are still on IE 11.
Here's the situation for me who's still on 8.7 and didn't go up to 9.
Version 8.7 (may have been earlier).
Introduced "@swimlane/ngx-charts": "^13.0.2",This package depends on d3-array which doesn't support IE11 at all due to this issue (You can see it on src/count.js) https://stackoverflow.com/questions/55814151/why-does-this-function-expect-a-semicolon-only-on-ie11
Anyway this is known by the ngx-charts crew here. https://github.com/swimlane/ngx-charts/issues/1353
And the workaround is to go back to version 12 of ngx-charts which doesn't have the dependency on d3-array
I changed my package.json to "@swimlane/ngx-charts": "^12.1.0",
Deleted the yarn.lock and deletd all node_modules (probably not required but let's be safe here).
And I'm back in business with the site working acceptably enough in IE 11.
Not sure how stable this is but it seems to work.
-
0
Thanks a lot @rickfrankel for sharing this.