Highcharts Highmaps 如何改变地图气泡中颜色轴的值?

问题描述 投票:0回答:1

我建立了一个地图气泡,根据变量 "z "来确定气泡的大小。现在我想根据变量 "value "给气泡上色:请见 抚弄

    seriesMapping: [
{
  'id': 0,
  'hc-key': 1,
  'kreis': 2,
  'typ': 3,
  'bundesland': 4,
  'einwohner': 5,
  'lat': 6,
  'lon': 7,
  'z': 8,
  'beatmet': 9,
  'standorte': 10,
  'frei': 11,
  'belegt': 12,
  'value': 13,
  'color': 14
}]

不幸的是,颜色是链接到变量 "z"。我怎么才能改变这种情况呢?

highcharts
1个回答
1
投票

你需要改变 colorKey 属性为 'value' ('z' 默认情况下)。)

series: [
  ...,
  {
    type: 'mapbubble',
    colorKey: 'value',
    ...
  }
]

现场演示。 https:/jsfiddle.netBlackLabel5mbvk93x。

API参考。 https:/api.highcharts.comhighmapsseries.mapbubble.colorKey。

© www.soinside.com 2019 - 2024. All rights reserved.