asciichart-sharp
asciichart-sharp copied to clipboard
C# port of asciichart
Colors! This branch also includes my changes in #34 since colors are particularly useful for differentiating between different series in the same plot. 
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...