Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/aquilax/sparkline_console
- Owner: aquilax
- License: mit
- Created: 2018-05-08T17:05:56.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2021-03-14T14:40:30.000Z (almost 4 years ago)
- Last Synced: 2024-07-08T09:51:04.570Z (6 months ago)
- Topics: dart, sparkline
- Language: Dart
- Size: 18.6 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
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])); // ▁▂▃▄▅▆▇█
}