Plotly go.Table 中的默认字体颜色是什么?

What is the default font color in Plotly go.Table?

Plotly 的默认字体颜色是什么 go.Table? 这个 answer references https://plotly.com/python/reference/layout/#layout-font 但这似乎不正确。我在 Google Colab 中将 Plotly 用于 python。

下面默认颜色的片段:

这可能因您的 Plotly 版本而异。我在 5.3.1 和 运行 JupyterLab v2.1.5 中的 go.Table() 示例生成下面的 table。如果您先使用 f = fig.full_figure_for_development() 然后使用

,则可以检查单元格的字体颜色
f.data[0].cells.font.color

哪个returns:

'#2a3f5f'

Table:

完整代码:

import plotly.graph_objects as go

fig = go.Figure(data=[go.Table(header=dict(values=['A Scores', 'B Scores']),
                 cells=dict(values=[[100, 90, 80, 90], [95, 85, 75, 95]]))
                     ])
f = fig.full_figure_for_development(warn=False)
print(f.data[0].cells.font.color)
fig.show()