我正在尝试配置一个高图仪表图,并将带有名称和值的对象传递给指针,但是似乎唯一获得的输入是一个具有一个数字的数组。有什么办法可以将文本和指针的值一起添加?
fiddle在这里
这是我正在努力的部分:
{
type: 'gauge',
data: [30], // how to add an object here? {name:"some name", data:30}
name: "tesccccct",
title: { //this does not work either
text: 'xxxxxxxxxxxxx',
useHTML: true,
y: 80
},
dial: {
rearLength: 0
}
}],
答案 0 :(得分:0)
您可以在正确的结构中使用对象数组:
series: [{
...,
data: [{
name: "some name",
y: 30
}]
}]
实时演示:http://jsfiddle.net/BlackLabel/as0d8fgL/
API参考:https://api.highcharts.com/highcharts/series.gauge.data