dygraphs 是一个开源的Javascript库,它可以产生一个可交互式的,可缩放的的曲线表。其可以用来显示大密度的数据集(比如股票,气温,等等),并且可以让用户来浏览和解释这个曲线图。在它的主页,你可以看到一些示例和用法。
简单示例:
<html><head> <scripttype="text/javascript"src="dygraph-combined.js"></script></head><body><divid="graphdiv"></div><scripttype="text/javascript"> g=newDygraph( //containingdiv document.getElementById("graphdiv"), //CSVorpathtoaCSVfile. "Date,Temperature\n"+ "2008-05-07,75\n"+ "2008-05-08,70\n"+ "2008-05-09,80\n" );</script></body></html>
评论