Highmaps:需要获取未绘制的数据

Highmaps: Need to get unplotted data

我想获取无法在基础地图上绘制的数据点(即 joinBy 无法将数据映射到 geojson)。有没有办法得到未绘制的数据?

你可以检查所有的点,找出哪些点没有被绘制,条件是点有value但没有graphic

chart: {
    events: {
    load: function () {
        var chart = this,
            unplottedPoints = [];

      $.each(chart.series[0].data, function (i, point) {
         if (point.value && !point.graphic) {
            unplottedPoints.push(point);
         }
      });

      console.log(unplottedPoints);
    }
  }
},

在数组 unplottedPoints 中,您有所有未渲染点的列表。

演示:http://jsfiddle.net/spmx9xu3/1/