Replies: 1 comment 2 replies
-
You could extend the BarColumn and add the Align to the Something like this (untested): class CenteredBarColumn(BarColumn):
def render(self, task: "Task") -> RenderableType:
return Align.center(super().render(task)) |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I've played around with using
Progress
andBarColumn
to customize tracking but I can't seem to align the progress bars. I tried to useAlign.center
as below but got an error when rendering - anyone has any ideas? Thanks! :)Beta Was this translation helpful? Give feedback.
All reactions