termgraph icon indicating copy to clipboard operation
termgraph copied to clipboard

a python command-line tool which draws basic graphs in the terminal

Results 44 termgraph issues
Sort by recently updated
recently updated
newest added

Why in horizontal bar chart line following 0.0 value Is grey out? ![image](https://user-images.githubusercontent.com/7452788/143880166-652048af-01aa-4aba-9090-dfe482586603.png) Here's example to reproduce the problem: ```python from termgraph.termgraph import chart data = [[0],[34], [2]] labels =...

If termgraph is used as a module and a value is 0, a `ValueError: math domain error` is thrown by `math.log` in `utils.py::cvt_to_readable(num)` here: https://github.com/mkaz/termgraph/blob/09e17cc3510b62969fc12075dd698817357a5a93/termgraph/utils.py#L16 Problem is that there is...

Hello, awesome folks developing termgraph. I have recently build a utility which displays useful git information in a presentable colored graphs (of course using termgraph) on terminal. I am really...

It would be cool to have a description/implementation to use your project from other scripts.

Hey there. So I was wondering if there are some way to make the graph become progressive, since it reads new data on the new next line in a file....

I've made a fix to the function 'cvt_to_readable' so that it displays fractional values correctly. Before the fix, when the value of 'index' was negative in the case of a...

Hi there, Thank you very much for providing this library! I'm attempting to use it to print a live indicator as a debugging aid. (I'm charting how much GPU memory...

I am using Chart to show a bar graph and the individual "TICK" marks show up as question mark. Been trying to debug it and I was able to make...

Apart from the current (weekday heatmap): ![](https://user-images.githubusercontent.com/45363/43405619-1a15998a-93cf-11e8-8a3f-abfd2f6104a5.png) Can we also have the following (daily heatmap) ![image](https://user-images.githubusercontent.com/42092626/120888847-dc182d80-c5fa-11eb-9f05-8945919cd3b6.png)

First of all: thank you so much for this neat library, appreciate all the work that has gone into making this :) I am trying to make a graph from...