在LightningchartJS量规中,如何更改量规边框的颜色?
const gauge = lightningChart().Gauge({ type: GaugeChartTypes.Solid })
.setTitle('Annual sales goal')
.setThickness(80)
.setDataLabelFormater(new Intl.NumberFormat('en-US', { style: 'currency', currency: 'USD' }))
.setGaugeStrokeStyle(new SolidLine().setFillStyle(new SolidFill()).setThickness(1))
.setAngleInterval(225, -45)
// Create slice
const slice = gauge
.getDefaultSlice()
.setInterval(0, 400000)
.setValue(329000)
.setFillStyle(new SolidFill({ color: ColorRGBA(12, 213, 87) }))
.setName('2019 sales')
在第5行,您正在设置量规的笔触样式(我想您将其称为“边框”)。在这里可以将颜色选项传递给SolidFill
构造函数:
.setGaugeStrokeStyle(
new SolidLine()
.setFillStyle(
新的SolidFill())。setThickness(1))>