我指的是:http://jsfiddle.net/e4c1hLmo/1/。以下包含3系列的对象。
{
"name": "Step Series 1",
"data": [{
"x": 1323532800000,
"y": 5
}, {
"x": 1418227200000,
"y": 5
}],
"step": true,
"color": "#0000ff",
"id": "stepSeries1",
"yAxis": "testAxis"
},{
"data": [................],
"color": "#000000",
"type": "line",
"name": "Test Series 1",
"yAxis": "testAxis",
"id": "testSeries1"
},{
"name": "Step Series 2",
"data": [{
"x": 1323532800000,
"y": 4
}, {
"x": 1418227200000,
"y": 4
}],
"step": true,
"color": "#f1c232",
"id": "stepSteries2",
"yAxis": "testAxis"
}
目前,当我们执行图表导出时,似乎没有出现“Step Series 2”。现在,当我交换系列对象的顺序时,所有系列都将在导出期间出现。
有谁知道为什么?
答案 0 :(得分:1)
这是因为您为min
设置的max
和xAxis
值。 datetime
和Step Series 1
的{{1}}值并非特定在该范围内。我评论了这些线条并且工作正常:http://jsfiddle.net/e4c1hLmo/7/