termgraph icon indicating copy to clipboard operation
termgraph copied to clipboard

Line after 0 grayed out

Open dzieciou opened this issue 3 years ago • 0 comments

Why in horizontal bar chart line following 0.0 value Is grey out?

image

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)

dzieciou avatar Nov 29 '21 13:11 dzieciou