2017 © Pedro Peláez
 

quorum-js ticker-graph

Simple JavaScript Ticker Graph using the Quorum JS Installer

image

donatj/ticker-graph

Simple JavaScript Ticker Graph using the Quorum JS Installer

  • Tuesday, April 11, 2017
  • by donatj
  • Repository
  • 1 Watchers
  • 2 Stars
  • 44,503 Installations
  • TypeScript
  • 0 Dependents
  • 0 Suggesters
  • 1 Forks
  • 0 Open issues
  • 3 Versions
  • 4 % Grown

The README.md

TickerGraph

npm version, (*1)

, (*2)

Simple JavaScript Real Time "Ticker Graph", (*3)

Requires no external libraries. It is require-able with RequireJS but RequireJS is by no means required., (*4)

Dead simple, should work in any browser that supports the <canvas> tag., (*5)

Here are some more examples., (*6)

Features

  • Auto Scales to min and max values.
  • Color set-able per column via callback.

Dead Simple Example

To output a simple sine wave like so: Small Ticker Sine Wave Example, (*7)

<script src="src/TickerGraph.js"></script>
<canvas id="cv" width="100" height="40"></canvas>
<script>
    var t = new TickerGraph( document.getElementById("cv") );
    var i = 0;
    setInterval(function(){
        t.push( Math.sin(i++ / 10) );
    }, 20);
</script>

The Versions

11/04 2017

dev-master

9999999-dev

Simple JavaScript Ticker Graph using the Quorum JS Installer

  Sources   Download

MIT

The Requires

 

11/04 2017

v0.1.0

0.1.0.0

Simple JavaScript Ticker Graph using the Quorum JS Installer

  Sources   Download

MIT

The Requires

 

19/02 2015

v0.0.1

0.0.1.0

Simple JavaScript Ticker Graph using the Quorum JS Installer

  Sources   Download

MIT

The Requires