Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/aquilax/sparkline_console

Command line sparkline generator
https://github.com/aquilax/sparkline_console

dart sparkline

Last synced: about 1 month ago
JSON representation

Command line sparkline generator

Awesome Lists containing this project

README

        

# sparkline_console

[![Build Status](https://travis-ci.org/aquilax/sparkline_console.svg?branch=master)](https://travis-ci.org/aquilax/sparkline_console)

A library for generating command line sparklines.

In the package repository: [here](https://pub.dartlang.org/packages/sparkline_console)

Adapted from [this](https://github.com/joliv/spark) Go library.

## Usage

A simple usage example:

import 'package:sparkline_console/sparkline_console.dart';

main() {
var sparkLine = new SparkLine();
print(sparkLine.generate([1, 2, 3, 4, 5, 6, 7, 8])); // ▁▂▃▄▅▆▇█
}