donatj / ticker-graph
This package is abandoned and no longer maintained.
No replacement package was suggested.
Simple JavaScript Ticker Graph using the Quorum JS Installer
Package info
Language:TypeScript
Type:quorum-js
pkg:composer/donatj/ticker-graph
v0.4.0
2026-05-27 21:49 UTC
Requires
- quorum/installer: 1.*
This package is auto-updated.
Last update: 2026-06-02 14:58:45 UTC
README
Simple JavaScript Real Time "Ticker Graph"
Requires no external libraries.
Here are some more examples.
Install
npm install ticker-graph
Features
- Auto Scales to min and max values.
- Color set-able per column via callback.
Example
To output a simple sine wave like so: 
<script src="src/TickerGraph.js"></script> <canvas id="cv" width="100" height="40"></canvas> <script> const t = new TickerGraph( document.getElementById("cv") ); let i = 0; setInterval(function(){ t.push( Math.sin(i++ / 10) ); }, 20); </script>
