tui-bar-graph

Crates.iotui-bar-graph
lib.rstui-bar-graph
version
sourcesrc
created_at2025-03-04 06:29:57.823686+00
updated_at2025-03-05 01:48:50.662229+00
descriptionA Ratatui widget for rendering pretty bar graphs in the terminal
homepage
repositoryhttps://github.com/joshka/tui-widgets
max_upload_size
id1576822
Cargo.toml error:TOML parse error at line 19, column 1 | 19 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include`
size0
Josh McKinney (joshka)

documentation

https://docs.rs/tui-bar-graph

README

Tui-bar-graph

A Ratatui widget for displaying pretty bar graphs

Uses the Colorgrad crate for gradient coloring.

Braille demo

Solid demo

Crate badge Docs Badge License Badge Discord Badge

Installation

cargo add ratatui tui-bar-graph

Example

use tui_bar_graph::{BarGraph, BarStyle, ColorMode};

let data = vec![0.0, 0.1, 0.2, 0.3, 0.4, 0.5];
let bar_graph = BarGraph::new(data)
    .with_gradient(colorgrad::preset::turbo())
    .with_bar_style(BarStyle::Braille)
    .with_color_mode(ColorMode::VerticalGradient);
frame.render_widget(bar_graph, area);
Commit count: 360

cargo fmt