哪个是最好的图形 jquery 或 javascript 库?
我正在使用原型。 IE 不支持 protovis。如果有一种在 IE 中使用图形的方法,请解释一下,或者我需要知道哪个是最好的图形 js 库。所有浏览器都支持
I am using protovis. IE wont supports protovis. If there is a way to use graph in IE explain me or i need to know which is best js library for graph. Supported by all browsers
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
对于 IE 支持,我将使用 Flot:
http://code.google.com/p/flot/
该插件适用于带有 HTML canvas 标签的 Internet Explorer 6/7/8、Firefox 2.x+、Safari 3.0+、Opera 9.5+ 和 Konqueror 4.x+(excanvas Javascript 模拟助手用于 IE)。
For IE support I would use Flot:
http://code.google.com/p/flot/
The plugin works with Internet Explorer 6/7/8, Firefox 2.x+, Safari 3.0+, Opera 9.5+ and Konqueror 4.x+ with the HTML canvas tag (the excanvas Javascript emulation helper is used for IE).
我的最终解决方案是最好使用 Highcharts 。它是一个易于学习且高效使用的 jquery 图形库。所有浏览器都支持。
My final solution is best to use Highcharts .Its a jquery graph library easy to learn and efficient to use. All browsers support.
实际上,你可以在 IE 中使用 protovis,只是不是它自己的。
最近最流行的解决方案是将 SVGWeb 与 protovis 一起使用,jloves protovis 分支为您将它们捆绑在一起:
https: //gitorious.org/protovis/jloves-protovis
但是,最简单且性能最好的(在 IE 中)解决方案是 bigfix protovis fork,当用户在 IE 中时,它将以 VML(而不是 SVG)呈现:
https://github.com/bigfix/protovis
Actually, you CAN use protovis with IE, just not it's own.
The most popular solution lately is to use SVGWeb with protovis, the jloves protovis fork bundles it all together for you:
https://gitorious.org/protovis/jloves-protovis
But, the easiest and best behaving (in IE) solution is the bigfix protovis fork, which will render in VML (instead of SVG) when the user is in IE:
https://github.com/bigfix/protovis
我强烈建议你看看 Raphaël JS :
http://raphaeljs.com/
截至今天,该库支持Firefox 3.0+、Safari 3.0+、Chrome 5.0+、Opera 9.5+ 和 Internet Explorer 6.0+。
I strongly suggest you have a look at Raphaël JS :
http://raphaeljs.com/
As of today, the library supports Firefox 3.0+, Safari 3.0+, Chrome 5.0+, Opera 9.5+ and Internet Explorer 6.0+.
Google Chart API 以免您向他们的服务器发出请求以检索显示您的信息的图像graph - 所以适用于所有浏览器。它只是花费更多的带宽和时间。
还有用于交互式 JavaScript 绘图的可视化 API。
Google Chart API lest you make a request to their servers to retrieve an image showing your graph - so works on all browsers. It just costs a little more bandwidth and perhaps time.
There is also their Visualization API for interactive JavaScript plotting.