gpt4 book ai didi

python - Plotly Python - 更改表格的字体

转载 作者:太空宇宙 更新时间:2023-11-03 14:55:51 25 4
gpt4 key购买 nike

我有一个用plotly 生成的表格,我想将字体更改为“Gill Sans”。

我无法更改它。这可能吗?

这是我的代码:

groupA = new_df.groupby('Call').agg({'TotalGrantValue':sum, 'FirstReceivedDate':'count'}).rename(columns={'FirstReceivedDate':'Count'})
groupA['TotalGrantValue'] = groupA['TotalGrantValue'].map('{:,.2f}'.format)

colorscale = [[0, '#7f7f7f'],[.5, '#F1EDED'],[1, '#ffffff']]

table = ff.create_table(groupA, index=True,colorscale=colorscale, height_constant=14, index_title='Date')
table.layout.width = 700
for i in range(len(table.layout.annotations)):
table.layout.annotations[i].font.size = 10
plotly.offline.iplot(table, config={"displayModeBar": False}, show_link=False, filename='index_table_pd')

最佳答案

您需要定义一个布局参数,如 https://plot.ly/python/axes/ 中所述。 .

在同一页面上,有一个示例代码可以帮助您:

layout = go.Layout(
xaxis=dict(
title='AXIS TITLE',
titlefont=dict(
family='Arial, sans-serif',
size=18,
color='lightgrey'
),
showticklabels=True,
tickangle=45,
tickfont=dict(
family='Old Standard TT, serif',
size=14,
color='black'
),
exponentformat='e',
showexponent='All'
),
yaxis=dict(
title='AXIS TITLE',
titlefont=dict(
family='Arial, sans-serif',
size=18,
color='lightgrey'
),
showticklabels=True,
tickangle=45,
tickfont=dict(
family='Old Standard TT, serif',
size=14,
color='black'
),
exponentformat='e',
showexponent='All'
)
)
fig = go.Figure(data=data, layout=layout)
py.iplot(fig, filename='axes-labels')

关于python - Plotly Python - 更改表格的字体,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45585785/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com