Javascript曲线表作图库 dygraphs

码农软件 · 软件分类 · 报表/图表制作 · 2019-08-21 14:42:11

软件介绍

dygraphs  是一个开源的Javascript库,它可以产生一个可交互式的,可缩放的的曲线表。其可以用来显示大密度的数据集(比如股票,气温,等等),并且可以让 用户来浏览和解释这个曲线图。在它的主页,你可以看到一些示例和用法。

简单示例:

<html>
<head>
 
<script type="text/javascript" src="dygraph-combined.js"></script>
</
head>
<body>
<div id="graphdiv"></div>
<script type="text/javascript">
  g
= new Dygraph(
       
// containing div
        document
.getElementById("graphdiv"),
       
// CSV or path to a CSV file.
       
"Date,Temperature\n" +
       
"2008-05-07,75\n" +
       
"2008-05-08,70\n" +
       
"2008-05-09,80\n"
     
);
</script>
</body>
</html>

本文地址:https://codercto.com/soft/d/12855.html

Web Design DeMYSTiFieD

Web Design DeMYSTiFieD

Willard, Wendy / 2010-11 / $ 24.86

Website Design just got a whole lot easier! This title helps you to learn the latest website development tools, techniques, and best practices. "Web Design Demystified" provides the hands-on help you ......一起来看看 《Web Design DeMYSTiFieD》 这本书的介绍吧!

JS 压缩/解压工具
JS 压缩/解压工具

在线压缩/解压 JS 代码

HTML 编码/解码
HTML 编码/解码

HTML 编码/解码

XML、JSON 在线转换
XML、JSON 在线转换

在线XML、JSON转换工具