1

基本配置:

$('#chart').highcharts({
  tooltip: {
    crosshairs: [true, true],
    shared: false
  },
  chart: {
    type: 'area',
    height: 650,
    zoomType: 'x'
  },
  plotOptions: {
    area: {
      stacking: 'percent'
    }
  }
  series: series
});

当系列中的某些数据丢失时,会出现意外的垂直线和随后的空白,如下图所示: 在此处输入图像描述

这是预期的行为吗?

干杯。

4

0 回答 0