我在python中使用mpld3库,我注意到在Internet Explorer上,交互式图例插件不起作用。
我也注意到在mpld3网站上,交互式图例的例子在IE中也不起作用。
所以我有点被困在这里......任何帮助?you can see on that image that the interactive legend does not work
我还将mpld3交互式插件链接放在这里:https://mpld3.github.io/examples/interactive_legend.html
答案 0 :(得分:0)
mpld3 / plugins.py中的以下代码行导致IE不兼容:
var type = d.mpld3_elements[i].constructor.name
var type = d.mpld3_elements[0].constructor.name
替换为:
var type = d.mpld3_elements[i].constructor.toString().match(/^function\s*([^\s(]+)/)[1];
var type = d.mpld3_elements[0].constructor.toString().match(/^function\s*([^\s(]+)/)[1];