我使用highcharts创建了“ solidgauge”类型的图表。根据文档,我给面板对象分配了一个背景对象。该图形绘制得很好,只是没有出现窗格背景!这是窗格对象的代码段。
pane: {
startAngle: 0,
endAngle: 360,
background: Background
},
下面是Background对象的代码
let Background = [] as any;
if (this.props.dataSource.values.Rows) {
this.props.dataSource.values.Rows.forEach((row: any, index: number) => {
Background.push({
outerRadius: `${100 - index * 20}%`,
innerRadius: `${90 - index * 20}%`,
backgroundColor: "",
borderWidth: 0
});
});
}