提问人:Hoa Pham 提问时间:11/13/2023 最后编辑:Ian BoydHoa Pham 更新时间:11/14/2023 访问量:17
如何在 Highcharts 中创建实心量级梯度
How to create a solid guage gradient in Highcharts
问:
我正在尝试创建一个我想用渐变颜色设置图表的样式,从成功到错误,如下所示:
这是我到目前为止所拥有的:
series: [
{
type: "solidgauge",
name: `${legendText}: ${data}%`,
color: renderLevelInfo.color,
data: [
{
radius: "100%",
innerRadius: "85%",
y: data,
color: {
linearGradient: {
x1: 0.5,
x2: 0.2,
y1: 0,
y2: 0,
},
stops: [
[0, theme.colors.success],
[0.5, theme.colors.success],
[0.7, theme.colors.warning],
[0.99, theme.colors.error],
],
},
},
],
},
],
研究工作
答: 暂无答案
评论