如何更改Lightning图表中的标签字体大小和颜色在此处输入图像描述
我使用下面的代码添加标签
return builder
.addRow(name)
.addRow(yValue.toFixed(2))
.addRow(timedata[xValue.toFixed(0)])
也可以单独更改颜色和大小,只为.addRow(yValue.toFixed(2))
??
自动光标结果表的字体大小/文本颜色可以像这样更改
chart.setAutoCursor((autoCursor) => autoCursor
.setResultTable((resultTable) => resultTable
.setFont((font) => font.setSize(12))
.setTextFillStyle(new SolidFill({ color: ColorRGBA( 255, 0, 0 ) }))
)
)
自动光标XY API
结果表API