破折号表的几乎所有内容都可以在单元格级别上自定义,但是我似乎无法调整文本字体的大小。有人知道怎么做吗?
例如,第一种情况有效(使用数组为特定单元格更改文本颜色,而第二种情况失败(对于大小写情况)。是否存在任何解决方法?
from plotly import graph_objs as go
cell_text_color_idx = [["black", "white"], ["red", "orange"]]
fig1 = go.Figure(data=[go.Table(
header=dict(
values=['blah', 'blah'],
),
cells=dict(
values=[[1, 2], [1, 2]],
font=dict(color=cell_text_color_idx,
size=12)),
)])
fig1.show()
cell_text_size_idx = [[5, 10], [15, 20]]
fig2 = go.Figure(data=[go.Table(
header=dict(
values=['blah', 'blah'],
),
cells=dict(
values=[[1, 2], [1, 2]],
font=dict(color=cell_text_color_idx,
size=cell_text_size_idx)),
)])
fig2.show()```