How to best display float/int/string data that is by nature read only (values read out from peripherals)

I think the format is just a format string, so it should be possible with something like this:

import panel as pn
pn.extension()
pn.indicators.Number(value=10000, format='${value:,.2f}')

image

2 Likes