You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Have you checked the issues for a similar suggestions?
Yes
How would you improve Rich?
My application submits a bunch of transformation to a server and the rich bar gives the status of the transformation and eventual downloads. However, these transformation are prone to failures and I would like to change the color of my progress bar to indicate that some failure has occurred while other transformations continue.
I would like to change the bar color to red because it stopped just before finishing.
The update function does provide ways to make changes but I couldn't find a way to change the color of the bar using BarColumn() when passed as a keyword argument to the update method.
e.g
progress.update(
progress_task,
progress_bar_title,
completed=self.current_status.files_completed,
bar = BarColumn(complete_style="rgb(0,0,255)",
style="rgb(255,0,0)")
)
What problem does it solve for you?
This will add more style to the progress bar when there are failures or if we can't reach 100%.
The text was updated successfully, but these errors were encountered:
Consider posting in https://github.com/textualize/rich/discussions for feedback before raising a feature request.
Have you checked the issues for a similar suggestions?
Yes
How would you improve Rich?
My application submits a bunch of transformation to a server and the rich bar gives the status of the transformation and eventual downloads. However, these transformation are prone to failures and I would like to change the color of my progress bar to indicate that some failure has occurred while other transformations continue.
I would like to change the bar color to red because it stopped just before finishing.
The
update
function does provide ways to make changes but I couldn't find a way to change the color of the bar usingBarColumn()
when passed as a keyword argument to theupdate
method.e.g
What problem does it solve for you?
This will add more style to the progress bar when there are failures or if we can't reach 100%.
The text was updated successfully, but these errors were encountered: