simplecharts

SVG charts without dependencies
git clone https://git.ce9e.org/simplecharts.git

commit
9eeaef1b21e4803b3340a98c707baa38670e276e
parent
057985a7e32c63c5d3be24b26793a73999057b3a
Author
Tobias Bengfort <bengfort@mpib-berlin.mpg.de>
Date
2025-04-24 17:01
mention CLI and CSV in README

Diffstat

M README.md 12 ++++++++++++

1 files changed, 12 insertions, 0 deletions


diff --git a/README.md b/README.md

@@ -37,4 +37,16 @@ data = {
   37    37 svg = renderer.render(data)
   38    38 ```
   39    39 
   -1    40 You can also convert CSV on the command line:
   -1    41 
   -1    42 ```sh
   -1    43 $ simplecharts --renderer stacked-column <<EOF
   -1    44 ,John,Jane,Joe
   -1    45 Apples,3,2,5
   -1    46 Oranges,4,2,3
   -1    47 Pears,4,3,4
   -1    48 Bananas,5,1,2
   -1    49 EOF
   -1    50 ```
   -1    51 
   40    52 ![example](https://github.com/xi/simplecharts/blob/main/tests/simple_StackedColumnRenderer.svg)