1
我想根據城市的名稱爲氣泡着色。有點像this.point.capital ==蒙哥馬利& this.point.capital ==朱諾;顏色=「紅色」。但是我不能將這個if函數添加到color屬性中。你能幫我嗎?如何更改高圖氣泡顏色
謝謝!
series: [{
name: 'Basemap',
mapData: map,
borderColor: '#606060',
nullColor: 'rgba(200, 200, 200, 0.2)',
showInLegend: false
}, {
name: 'Separators',
type: 'mapline',
data: H.geojson(map, 'mapline'),
color: '#101010',
enableMouseTracking: false
}, {
type: 'mapbubble',
dataLabels: {
enabled: true,
format: '{point.capital}'
},
name: 'Cities',
data: data,
maxSize: '12%',
color: H.getOptions().colors[0]
}]
謝謝!那麼,我如何將懸停改爲正確的顏色? –
一般還是特定的點? –