将tickformat数字刻划为k

时间:2019-07-20 03:08:36

标签: python plotly

我计划使用plotly并将显示的值从数字更改为.k,例如从4000更改为4k。

下面是代码:

x = [x for x in range(1,len(table))] #date
y = table['revenue'][:-1].values.tolist()

fig = go.Figure(go.Scatter(x=x, y=y,text=y,mode="lines+markers+text",
                line=dict(color='firebrick', width=4)))
fig.update_layout(width=900,height=650)

0 个答案:

没有答案