0

私のチャートには、データを UTC 日時と値の配列の配列として渡します。

[
  [1374537600000, 69.67575704891426]  
  [1373932800000, 69.67575704891426]
]

このjsFiddleのデータ値をハードコーディングしました。ポイントにカーソルを合わせると、何らかの理由で別のポイントが選択されます。

4

1 に答える 1

0

Highcharts should be able to handle this without resulting in your issue, but you need to switch the order of the data:

data: 
[
  [1373932800000, 69.67575704891426],
  [1374537600000, 69.67575704891426]
]

Fiddle

于 2013-07-17T16:22:57.717 に答える