8 releases (2 stable)

1.0.1 Jan 13, 2019
1.0.0 Oct 3, 2018
0.3.1 Feb 1, 2017
0.2.2 Jan 5, 2017
0.1.0 Jan 4, 2017

#381 in Visualization

Download history 7/week @ 2023-11-09 19/week @ 2023-11-16 16/week @ 2023-11-23 33/week @ 2023-11-30 14/week @ 2023-12-07 14/week @ 2023-12-14 23/week @ 2023-12-21 5/week @ 2023-12-28 15/week @ 2024-01-04 9/week @ 2024-01-11 19/week @ 2024-01-18 12/week @ 2024-01-25 14/week @ 2024-02-01 19/week @ 2024-02-08 91/week @ 2024-02-15 269/week @ 2024-02-22

394 downloads per month
Used in ceramic

MIT license

160KB
258 lines

rain

Build Status Coverage Status master doc rain License MIT Crates.io doc.rs

Visualize vertical data inside your terminal 💦

This library helps you to display line based data vertically within your terminal. The color of the actual graph represents its value, whereas blue is low and red is high. These color bounds will be calculated automatically during runtime. Beside this, the terminal dimensions are adapted during runtime, too. If no data was added to a line, their terminal line is dashed.

Example

Example usage

use rain::Graph;

// Get a drawing area
let mut graph = Graph::new();

// Get some line identifiers
let l1 = "Line 1";
let l2 = "Line 1";
let l3 = "Line 1";

// Add some values and print
assert!(graph.add(l1, 0).is_ok());
assert!(graph.add(l2, 0).is_ok());
graph.print();

// Add more values and print
assert!(graph.add(l2, 5).is_ok());
assert!(graph.add(l3, 10).is_ok());
graph.print();

// Remove a line and print
assert!(graph.remove(l1).is_ok());
graph.print();

Contributing

You want to contribute to this project? Wow, thanks! So please just fork it and send me a pull request.

Dependencies

~3MB
~61K SLoC