Javascript:Flot:饼图未显示在 IE7 中
我正在使用一个名为 flot (http://code.google.com/p/flot/) 的 javascript 库来渲染图形和图表等。
这是我的代码 http://jsfiddle.net/nQvEW/1/
我正在使用绝对所有内容的最新版本(IE 除外)。
我已经在 Safari、FF、Chrome、winFF、winChrome 和 IE 中测试了小提琴。
据我所知,没有办法在 iE 中调试 javascript(没有 cosnole 来显示错误)。所以...我不知道问题是什么。
I'm using a javascript library called flot (http://code.google.com/p/flot/) to render graphs and charts and such.
This is my code http://jsfiddle.net/nQvEW/1/
I'm using the absolute latest version of everything (except for IE).
I've tested the fiddle in Safari, FF, Chrome, winFF, winChrome and IE.
As far as I can tell, there isn't a way to debug javascript in iE (no cosnole to show erros). So... I have no what the issue is.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否下载并包含了资源管理器画布? IE 没有本机 canvas 元素,flot 使用该元素来创建饼图。 在包含 flot 插件之前下载并包含
excanvas.js
。Have you downloaded and included explorer canvas? IE doesn't have a native canvas element which is used by flot to create the pie chart on. Download and include
excanvas.js
before you include the flot plugins.