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://www.codercto.com/soft/d/12855.html

ANSI Common Lisp

ANSI Common Lisp

Paul Graham / Prentice Hall / 1995-11-12 / USD 116.40

For use as a core text supplement in any course covering common LISP such as Artificial Intelligence or Concepts of Programming Languages. Teaching students new and more powerful ways of thinking abo......一起来看看 《ANSI Common Lisp》 这本书的介绍吧!

JSON 在线解析
JSON 在线解析

在线 JSON 格式化工具

Base64 编码/解码
Base64 编码/解码

Base64 编码/解码

正则表达式在线测试
正则表达式在线测试

正则表达式在线测试