Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork7.9k
Closed
Labels
Milestone
Description
Problem
I would like to be able to use a format string like,d
to format bar labels with commas for the thousands separators.
Proposed solution
Update thefmt
parameter to also accept f-string style formats. To format the label, we first check what kind of format is provided and callfmt.format(value)
orfmt % value
accordingly.