is there a client side (javascript) graph library that doesn't require a server?

你。 提交于 2019-12-03 00:49:08

Have a look at flot a javascript plotting library.

EDIT The official flot repo lives on github

Have a look at Raphael (github).

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.

Found a library called PlotKit for Mochi, while looking at Nickf's canvasgraphjs link.

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.

Check D3.js: JavaScript library for manipulating documents based on data. I didn't try it myself yet, but it looks promising and interesting.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!