1

我有以下有问题的代码。

//reset the yAxis with new value
$$("chartStock1").yAxis_setter({ start:lowestValue, step:stepValue, end:highestValue, template:function(value){ return value } }); 

//clear data
$$("chartStock1").clearAll()

//reload data
$$("chartStock1").parse(jiugangArray);

我想重置yAxis折线图的值,看起来还可以。然后我通过'parse'函数重新加载数据,数组中的数据也可以。

折线图是因为旧的而绘制的yAxis,而不是因为全新的yAxis值。这很令人困惑。

4

1 回答 1

0

使用 define() 方法而不是 setter 更正确:

$("chartStock1").define("yAxis",{ 
 start:lowestValue, 
 step:stepValue, 
 end:highestValue, 
 template:function(value){ return value } 
}); 
于 2016-04-12T14:54:50.070 回答