尊重负值的 Plotly 中的 $ tick 格式化程序

$ tick formatter in Plotly that respects negative values

根据 to ,您可以通过以下方式将货币添加到 Python Plotly tick 格式化程序:

fig.update_layout(yaxis_tickprefix = '$', yaxis_tickformat = ',.')

但是,这会将负数显示为 $-100 而不是 -0

如何格式化刻度以包含 $ 并遵守负数?

如果您以刻度格式而不是前缀设置美元符号,您将获得预期的格式。

import plotly.graph_objects as go
import numpy as np

fig = go.Figure(go.Scatter(
    x = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12],
    y = np.random.randint(-20,20,12)
))
fig.update_layout(yaxis_tickformat='$,')#yaxis_tickprefix='$',

fig.show()