Hi,
I have create a dash with a bar chart. The bar show the value on top of the bar. On my PC the value is 50. This is good. But, when I start this on an other PC in docker, the number is 5e+1.
What is the problem? Is it docker, the other PC, or…?
Here the code of my bar chart:
fig = px.bar(df_counts, y='counts', x='ANALYSIS', text_auto='.0s', #Anzahl Kommastellen
title="", labels={'counts': 'Anzahl', 'ANALYSIS':'Analyseart'})
fig.update_layout({
'plot_bgcolor': 'rgba(0, 0, 0, 0)',
'paper_bgcolor': 'rgba(0, 0, 0, 0)',
'font_color': 'white',
'font_size': 18,
})