/barascii

A JavaScript ASCII Bar Chart Generator

Bar ASCII

A JavaScript ASCII Bar Chart Generator

▅▂▅▂▄▅▂▁▂▄▅▂▅▂▂▄▁▂▄▅█▄▅▂▁▂▄▅▂▅██████▄▅▅▂▂▄▅▂▁▂▄▅▂▁▂▄▅▂▅▂▂▄

Browser (Classic)

var chart = new BarASCII();
console.log(chart.plot([1, 4, 20, 10, 13], {stringify: true}));

Browser (AMD)

define(['barascii'], function(BarASCII) {
  var chart = new BarASCII();
  console.log(chart.plot([1, 4, 20, 10, 13], {stringify: true}));
});

Server (Node.js)

var BarASCII = require('./barascii.js');
var chart = new BarASCII();
console.log(chart.plot([1, 4, 20, 10, 13], {stringify: true}));