我希望按年度渲染2个列系列分组。
如果两个系列都包含所有xAxis点(年份)的数据,则效果很好。 例如,this example绘制了2012年和2013年两个系列的数据并且效果很好。
但是,我从系列1和2012年的系列2 this is the result删除了2013年的情况。
我知道添加null
值和缺少年数会解决问题,但可能还有其他解决方案。
答案 0 :(得分:1)
您应该使用pointRange参数http://jsfiddle.net/Lsj8Lngr/1
"column": {
pointRange: 365 * 24 * 3600 * 1000,
"colorByPoint": true,
"grouping": true,
"dataLabels": {
"enabled": false,
"crop": false
}
},