I would like to use the € symbol instead of $ to format my numbers in a bokeh plot that is created by holoviews (hv.Bars).
formatter = NumeralTickFormatter(format=f"{€ 0.00 a)")
Unfortunately, this does only yield a formatted number but not the Euro symbol
Also, the work-around as mentioned here
How to format bokeh xaxis ticks with currency
with
formatter = PrintfTickFormatter(format=f'€ 0.00 a')
does not work.
I actually think that bokeh should adapt to this and provide the possibility to add anything as symbol.