如何更改图例框条目和图表标题的字体大小和颜色



我在下面添加图表标题

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(setTitlesetEntry(的方法进行样式设置:

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标题颜色

相关内容

  • 没有找到相关文章

最新更新