我有一张比特币价格图表。我在 Y 轴上有正确的价格,但在 X 轴上我无法获得正确的时间。时间在我的控制台中以 UTC 格式显示。我在每次迭代时为该系列添加价格和日期。我需要获取该特定结果的日期并找到该结果的年、月和日,以便将其以正确的格式放置。感谢任何帮助。
$.ajax({
url: "/chart/ajax_get_chart", // the URL of the controller action method
dataType: "json",
type: "GET",
success: function (result) {
var result = JSON.parse(result);
series = [];
for (var i = 0; i < result.length; i++) {
tempArray = [parseFloat(result[i]['price'])];
tempDate = Date.parse(result[i]['date']);
series.push(tempDate);
series.push(tempArray);
}