我在下面添加图表标题
chart[unique].setTitle(nn).setPadding({
bottom: -2,
right: -2,
top: -36,
left: -2
}).setMouseInteractions(false);
如何设置字体大小?我试过setFont((font) => font.setSize(12))
,但不起作用。
此外,我无法将其添加到legendBox
legendBox["axis"].add(line[name], undefined, ' ').setText(entryname);
,我想为图表标题和图例框条目或完整图例框设置字体大小和颜色。谢谢
ChartXY标题字体
LegendBox标题和条目可以通过LegendBox Builder(setTitle
,setEntry
(的方法进行样式设置:
const legendBox = ChartXY.addLegendBox(
LegendBoxBuilders.VerticalLegendBox
.setTitle((title) => title
.setFont((font) => font.setFamily('monospace'))
)
.setEntry((entry) => entry
.setFont((font) => font.setSize(10).setStyle('italic'))
),
)
编辑
图表XY标题颜色