Skip to content

Commit

Permalink
docs(chart): document chart module
Browse files Browse the repository at this point in the history
  • Loading branch information
Valentin271 committed Dec 16, 2023
1 parent 910ad00 commit caa2e77
Show file tree
Hide file tree
Showing 2 changed files with 341 additions and 54 deletions.
10 changes: 5 additions & 5 deletions src/symbols.rs
Original file line number Diff line number Diff line change
Expand Up @@ -398,12 +398,12 @@ pub mod braille {
/// Marker to use when plotting data points
#[derive(Debug, Default, Display, EnumString, Clone, Copy, Eq, PartialEq, Hash)]
pub enum Marker {
/// One point per cell in shape of dot ("•")
/// One point per cell in shape of dot (`•`)
#[default]
Dot,
/// One point per cell in shape of a block ("█")
/// One point per cell in shape of a block (`█`)
Block,
/// One point per cell in the shape of a bar ("▄")
/// One point per cell in the shape of a bar (`▄`)
Bar,
/// Use the [Unicode Braille Patterns](https://en.wikipedia.org/wiki/Braille_Patterns) block to
/// represent data points.
Expand All @@ -412,9 +412,9 @@ pub enum Marker {
///
/// Note: Support for this marker is limited to terminals and fonts that support Unicode
/// Braille Patterns. If your terminal does not support this, you will see unicode replacement
/// characters () instead of Braille dots.
/// characters (`�`) instead of Braille dots (`⠓`, `⣇`, `⣿`).
Braille,
/// Use the unicode block and half block characters ("█", "▄", and "▀") to represent points in
/// Use the unicode block and half block characters (`█`, `▄`, and `▀`) to represent points in
/// a grid that is double the resolution of the terminal. Because each terminal cell is
/// generally about twice as tall as it is wide, this allows for a square grid of pixels.
HalfBlock,
Expand Down

0 comments on commit caa2e77

Please sign in to comment.