termgraph
termgraph copied to clipboard
Line after 0 grayed out
Why in horizontal bar chart line following 0.0 value Is grey out?
Here's example to reproduce the problem:
from termgraph.termgraph import chart
data = [[0],[34], [2]]
labels = ["Cars", "Boats", "Planes"]
args = {
"histogram": False,
"stacked": False,
"width": 50,
"no_labels": False,
"no_values": False,
"format": "{:.0f}",
"suffix": "",
"vertical": False
}
chart(None, data, args, labels)