All Projects → danvk → Dygraphs

danvk / Dygraphs

Licence: mit
Interactive visualizations of time series using JavaScript and the HTML canvas tag

Programming Languages

javascript
184084 projects - #8 most used programming language
HTML
75241 projects

Projects that are alternatives of or similar to Dygraphs

Chartjs Chart Financial
Chart.js module for charting financial securities
Stars: ✭ 469 (-84.12%)
Mutual labels:  timeseries, charting-library
Echarts
Apache ECharts is a powerful, interactive charting and data visualization library for browser
Stars: ✭ 49,119 (+1563.36%)
Mutual labels:  charting-library, canvas
Lightweight Charts
Financial lightweight charts built with HTML5 canvas
Stars: ✭ 4,390 (+48.66%)
Mutual labels:  charting-library, canvas
ux-charts
Simple, responsive, modern Charts with zero dependencies
Stars: ✭ 22 (-99.25%)
Mutual labels:  canvas, charting-library
Dynamic effect
平时练习的一些前端动效,基于HTML5,CSS3,Canvas,Svg
Stars: ✭ 264 (-91.06%)
Mutual labels:  canvas
Photoeditor
A Photo Editor library with simple, easy support for image editing using paints,text,filters,emoji and Sticker like stories.
Stars: ✭ 3,105 (+5.15%)
Mutual labels:  canvas
Simple Draw
A canvas you can draw on with different colors.
Stars: ✭ 256 (-91.33%)
Mutual labels:  canvas
jqCandlestick
jQuery plugin for creating line, bar and candlestick charts.
Stars: ✭ 13 (-99.56%)
Mutual labels:  canvas
Beziermaker.js
arbitrary order bézier-curve generator
Stars: ✭ 277 (-90.62%)
Mutual labels:  canvas
Code To Image
Convert blocks of code to a highlighted jpeg base64 image.
Stars: ✭ 271 (-90.82%)
Mutual labels:  canvas
Earthbound Battle Backgrounds Js
A JavaScript project that generates all the Earthbound/Mother 2 backgrounds.
Stars: ✭ 258 (-91.26%)
Mutual labels:  canvas
Canvg
Javascript SVG parser and renderer on Canvas
Stars: ✭ 2,963 (+0.34%)
Mutual labels:  canvas
Sessions
A series of creative coding sessions
Stars: ✭ 262 (-91.13%)
Mutual labels:  canvas
Isomer
Isomer is an easy-to-use graphics library for drawing isometric scenes.
Stars: ✭ 2,767 (-6.3%)
Mutual labels:  canvas
Fediagram
图说前端>>收集各种前端技术图谱 🚕🚖🚗🚚🚛🚜
Stars: ✭ 273 (-90.76%)
Mutual labels:  canvas
UltraTypeBot
A fast, easy to use bot for NitroType.com
Stars: ✭ 24 (-99.19%)
Mutual labels:  canvas
Zimjs
ZIM JavaScript Canvas Framework - Code Creativity! Interactive Media For All.
Stars: ✭ 259 (-91.23%)
Mutual labels:  canvas
Canvas Designer
Collaborative, extendable, JavaScript Canvas2D drawing tool, supports dozens of builtin tools, as well as generates JavaScript code for 2D animations.
Stars: ✭ 268 (-90.92%)
Mutual labels:  canvas
Plottable
📊 A library of modular chart components built on D3
Stars: ✭ 2,834 (-4.03%)
Mutual labels:  charting-library
Flutter Canvas
About using of canvas in the flutter
Stars: ✭ 259 (-91.23%)
Mutual labels:  canvas

Build Status Coverage Status

dygraphs JavaScript charting library

The dygraphs JavaScript library produces interactive, zoomable charts of time series:

Learn more about it at dygraphs.com.

Get help with dygraphs by browsing the on Stack Overflow (preferred) and Google Groups.

Features

Minimal Example

<html>
<head>
<script type="text/javascript" src="dygraph.js"></script>
<link rel="stylesheet" href="dygraph.css" />
</head>
<body>
<div id="graphdiv"></div>
<script type="text/javascript">
  g = new Dygraph(
        document.getElementById("graphdiv"),  // containing div
        "Date,Temperature\n" +                // the data series
        "2008-05-07,75\n" +
        "2008-05-08,70\n" +
        "2008-05-09,80\n",
        { }                                   // the options
      );
</script>
</body>
</html>

Learn more by reading the tutorial and seeing demonstrations of what dygraphs can do in the gallery. You can get dygraph.js and dygraph.css from cdnjs or from NPM (see below).

Usage with a module loader

Get dygraphs from NPM:

npm install dygraphs

You'll find pre-built JS & CSS files in node_modules/dygraphs/dist. If you're using a module bundler like browserify or webpack, you can import dygraphs:

import Dygraph from 'dygraphs';
// or: const Dygraph = require('dygraphs');

const g = new Dygraph('graphdiv', data, { /* options */ });

Check out the dygraphs-es6 repo for a fully-worked example.

Development

To get going, clone the repo and run:

npm install
npm run build

Then open tests/demo.html in your browser.

Read more about the dygraphs development process in the developer guide.

License(s)

dygraphs is available under the MIT license, included in LICENSE.txt.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].