iluminate / chart

Ansi charts for nodejs

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Chart

Ascii bar chart for nodejs.

Installation

$ npm install jstrace/chart

Example

When data exceeds the available width the data will "roll" to the tail-end of the array. This may become an option in the future, but that's the default behaviour for now ;)

var chart = require('chart');
var clear = require('clear');

var data = [1, 2, ...];

clear();
console.log(chart(data, { width: n, height: n }));

License

MIT

About

Ansi charts for nodejs


Languages

Language:JavaScript 96.6%Language:Makefile 3.4%