I need to generate many internal client-side (within the company only) graphs from streams of data, and since the data itself is "secret", I can't use a service like Google-Graphs for generating the graphs. So I was wondering if anyone has some recomendations for a javascript graph library that doesn't require a server.
我需要从数据流生成许多内部客户端(仅限公司内部)图形,并且由于数据本身是“秘密”,我不能使用像Google-Graphs这样的服务来生成图形。所以我想知道是否有人对一个不需要服务器的javascript图库有一些推荐。
Thanks
6 个解决方案
#1
Have a look at flot a javascript plotting library.
看看flot一个javascript绘图库。
EDIT The official flot repo lives on github
编辑官方的flot repo生活在github上
#3
The data is likely going to be in plain text if you use a javascript library to render it client side... Even so, jQuery Sparklines can generate simple graphs client-side.
如果你使用javascript库来呈现客户端,那么数据很可能是纯文本的......即便如此,jQuery Sparklines也可以在客户端生成简单的图形。
#4
Found a library called PlotKit for Mochi, while looking at Nickf's canvasgraphjs link.
找到了一个名为PlotKit for Mochi的库,同时查看了Nickf的canvasgraphjs链接。
#5
If you use a client-side library, your data is pretty much out in the open. If the data is secret, I think what you need is a library that generates the plot on the server side and outputs images. JFreechart is one library that does this in Java. I am sure there are others.
如果您使用客户端库,那么您的数据几乎是公开的。如果数据是秘密的,我认为你需要的是一个在服务器端生成绘图并输出图像的库。 JFreechart是一个用Java完成此任务的库。我相信还有其他人。
#6
Check D3.js: JavaScript library for manipulating documents based on data. I didn't try it myself yet, but it looks promising and interesting.
检查D3.js:JavaScript库,用于根据数据操作文档。我自己没有尝试过,但它看起来很有前途和有趣。
#1
Have a look at flot a javascript plotting library.
看看flot一个javascript绘图库。
EDIT The official flot repo lives on github
编辑官方的flot repo生活在github上
#2
#3
The data is likely going to be in plain text if you use a javascript library to render it client side... Even so, jQuery Sparklines can generate simple graphs client-side.
如果你使用javascript库来呈现客户端,那么数据很可能是纯文本的......即便如此,jQuery Sparklines也可以在客户端生成简单的图形。
#4
Found a library called PlotKit for Mochi, while looking at Nickf's canvasgraphjs link.
找到了一个名为PlotKit for Mochi的库,同时查看了Nickf的canvasgraphjs链接。
#5
If you use a client-side library, your data is pretty much out in the open. If the data is secret, I think what you need is a library that generates the plot on the server side and outputs images. JFreechart is one library that does this in Java. I am sure there are others.
如果您使用客户端库,那么您的数据几乎是公开的。如果数据是秘密的,我认为你需要的是一个在服务器端生成绘图并输出图像的库。 JFreechart是一个用Java完成此任务的库。我相信还有其他人。
#6
Check D3.js: JavaScript library for manipulating documents based on data. I didn't try it myself yet, but it looks promising and interesting.
检查D3.js:JavaScript库,用于根据数据操作文档。我自己没有尝试过,但它看起来很有前途和有趣。