如何更改 lightningchart 中的标签大小
How to change label size in lightningchart
我们如何在 Lightning 图表中更改标签字体大小和颜色
在此处输入图片描述
我使用如下代码添加标签
return builder
.addRow(name)
.addRow(yValue.toFixed(2))
.addRow(timedata[xValue.toFixed(0)])
也可以单独更改颜色和大小仅 .addRow(yValue.toFixed(2))
??
AutoCursor 结果table 字体大小/文本颜色可以这样改变
chart.setAutoCursor((autoCursor) => autoCursor
.setResultTable((resultTable) => resultTable
.setFont((font) => font.setSize(12))
.setTextFillStyle(new SolidFill({ color: ColorRGBA( 255, 0, 0 ) }))
)
)
我们如何在 Lightning 图表中更改标签字体大小和颜色 在此处输入图片描述
我使用如下代码添加标签
return builder
.addRow(name)
.addRow(yValue.toFixed(2))
.addRow(timedata[xValue.toFixed(0)])
也可以单独更改颜色和大小仅 .addRow(yValue.toFixed(2))
??
AutoCursor 结果table 字体大小/文本颜色可以这样改变
chart.setAutoCursor((autoCursor) => autoCursor
.setResultTable((resultTable) => resultTable
.setFont((font) => font.setSize(12))
.setTextFillStyle(new SolidFill({ color: ColorRGBA( 255, 0, 0 ) }))
)
)