問題のある次のコードがあります。
//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
値のためではなく、古い のために描画されました。これは非常に紛らわしいです。