我有以下有问题的代码。
//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
值。这很令人困惑。