highchart x 轴未显示正确的日期标签
highchart x axis not showing correct date labels
我正在使用 highchart 并动态加载 json。
json 为我提供日期时间序列及其值
正在创建图表,工具提示显示正确的值
只有 x 轴标签显示不正确。
$(function () {
$('#container').highcharts({
xAxis: {
type: 'datetime',
dateTimeLabelFormats: {
day: '%e of %b'
}
},
series: [{
data: [
["2013-09-15 08:44:37",19.8],
["2013-09-18 08:47:37",18.4],
["2013-09-19 08:50:37",18.3],
["2013-09-20 08:53:37",18.1]
],
//pointStart: Date.UTC(2010, 0, 1),
pointInterval: 24 * 3600 * 1000 // one day
}]
});
});
现场直播:http://plnkr.co/edit/TfcJVPpqu6ZM2LywKmO5?p=preview
请提供帮助。谢谢
编辑
我已经用正确的日期更新了 post 和 plunkr
尝试将日期设置为 getTime
(毫秒)格式:
[new Date("2013-09-15T08:44:37").getTime(),19.8],
[new Date("2013-09-18T08:47:37").getTime(),18.4],
[new Date("2013-09-19T08:50:37").getTime(),18.3],
[new Date("2013-09-20T08:53:37").getTime(),18.1]
如 this plunker.
我正在使用 highchart 并动态加载 json。 json 为我提供日期时间序列及其值
正在创建图表,工具提示显示正确的值 只有 x 轴标签显示不正确。
$(function () {
$('#container').highcharts({
xAxis: {
type: 'datetime',
dateTimeLabelFormats: {
day: '%e of %b'
}
},
series: [{
data: [
["2013-09-15 08:44:37",19.8],
["2013-09-18 08:47:37",18.4],
["2013-09-19 08:50:37",18.3],
["2013-09-20 08:53:37",18.1]
],
//pointStart: Date.UTC(2010, 0, 1),
pointInterval: 24 * 3600 * 1000 // one day
}]
});
});
现场直播:http://plnkr.co/edit/TfcJVPpqu6ZM2LywKmO5?p=preview
请提供帮助。谢谢
编辑
我已经用正确的日期更新了 post 和 plunkr
尝试将日期设置为 getTime
(毫秒)格式:
[new Date("2013-09-15T08:44:37").getTime(),19.8],
[new Date("2013-09-18T08:47:37").getTime(),18.4],
[new Date("2013-09-19T08:50:37").getTime(),18.3],
[new Date("2013-09-20T08:53:37").getTime(),18.1]
如 this plunker.