asciichart-sharp icon indicating copy to clipboard operation
asciichart-sharp copied to clipboard

C# port of asciichart

Results 7 asciichart-sharp issues
Sort by recently updated
recently updated
newest added

Colors! This branch also includes my changes in #34 since colors are particularly useful for differentiating between different series in the same plot. ![AnsiRainbow](https://user-images.githubusercontent.com/249604/162965430-32d19e55-ea63-48cd-ade8-0980436c08b7.png)

Display multiple series in the same plot, just like the original [ported project](https://github.com/kroitor/asciichart) supports. ``` 20 ┤ ╭───────╭╮───────╮ 19 ┤ ╭──╭───╭───────╭╮───────╮───╮──╮ 18 ┤ ╭─╭──╭─╭───╭───────╭╮───────╮───╮─╮──╮─╮ 17 ┤ ╭─╭─╭─╭─╭──╭──────────╯╰──────────╮──╮─╮─╮─╮─╮ 16 ┤ ╭─╭─╭╭─╭─╭────╯...

Hi @samcarton, this is a lovely piece of code 💯 would be interested in publishing it as a package to nuget?

Interpret NaN as no-value and render gaps in the plot.

Tick on the y-axis for single value series.

Fixes an `OverflowException` when all values in the series are the same, meaning the range is zero.

I've been migrating some code from Go to .net and noticed that this fork of `kroitor/asciichart` doesn't have any unit tests. So I've ported across the unit tests from the...