基本配置:
$('#chart').highcharts({
tooltip: {
crosshairs: [true, true],
shared: false
},
chart: {
type: 'area',
height: 650,
zoomType: 'x'
},
plotOptions: {
area: {
stacking: 'percent'
}
}
series: series
});
如果缺少系列中的某些数据,则会显示意外的垂直线和后续空格,如下图所示:
这是预期的行为吗?
干杯。