我目前正在使用 ngx-charts 版本 10.0.1 来绘制 Treemap 图表。我的 Angular 版本是 7.2.1。它在 Chrome 中按预期工作,但标签未在 IE11 中显示。在页面加载时,我在 IE 控制台中看到以下错误:
TypeError: Object does not support property or method 'forEach' (注意:我正在编写 forEach 循环来处理来自后端的数据,我也尝试将其转换为普通的 for 循环,但它没有解决问题。)
TypeError:无法设置未定义或空引用的属性“指针事件”。
与 Chrome 相比,悬停和点击动作的动画也非常慢。我可以在工具提示上看到标签和值。
到目前为止我尝试过的事情:-
1) 我很少看到论坛并安装了 classlist.js 并在 Index.html 中包含以下链接
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.6/d3.min.js" charset="utf-8"></script>
<script src="node_modules/core-js/client/shim.min.js"></script>
<script src="node_modules/classlist.js/classList.min.js"></script>
<script src="node_modules/zone.js/dist/zone.min.js"></script>
<script src="node_modules/systemjs/dist/system.src.js"></script>
2)我还添加了animations.js并安装了它。3) 尝试将 ngx-charts 恢复到版本 8.1.0。
但上述技术似乎都不能解决问题。
以下是我的 Polyfills.ts 文件中的代码:
import 'core-js/es6/symbol';
import 'core-js/es6/object';
import 'core-js/es6/function';
import 'core-js/es6/parse-int';
import 'core-js/es6/parse-float';
import 'core-js/es6/number';
import 'core-js/es6/math';
import 'core-js/es6/string';
import 'core-js/es6/date';
import 'core-js/es6/array';
import 'core-js/es6/regexp';
import 'core-js/es6/map';
import 'core-js/es6/weak-map';
import 'core-js/es6/set';
import 'core-js/client/shim';
import "isomorphic-fetch";
import 'core-js/es6';
import 'core-js/es7/array';
import 'core-js/es7/reflect';
require('zone.js/dist/zone');
if (typeof SVGElement.prototype.contains == 'undefined') {
SVGElement.prototype.contains = HTMLDivElement.prototype.contains;
}
if (!Element.prototype.matches) {
Element.prototype.matches =
(<any>Element.prototype).msMatchesSelector ||
Element.prototype.webkitMatchesSelector;
}
import 'classlist.js';
import 'web-animations-js';
import 'zone.js/dist/zone';
(window as any).global = window;
if (!Object.entries) {
Object.entries = function (obj) {
var ownProps = Object.keys(obj),
i = ownProps.length,
resArray = new Array(i); // preallocate the Array
while (i--)
resArray[i] = [ownProps[i], obj[ownProps[i]]];
return resArray;
};
}