Highcharts 中用于日期的格式 - 带标记图表类型的线
Format used for date in Highcharts - Line with markers chart type
日期转换成什么格式了
https://www.highcharts.com/stock/demo/line-markers?
我正在生成数据,但我需要将数据转换成这种格式,strtotime
似乎无法解决问题。
Highcharts documentation:
For datetime axes, the X value is the timestamp in milliseconds since
1970.
datetime
轴数据格式:
[
x value, - timestamp in milliseconds since 1970
y value
]
您只需将 PHP 时间戳乘以 1000 即可得到 javascript 时间戳
var jsTimestamp = 1545055048 * 1000
日期转换成什么格式了 https://www.highcharts.com/stock/demo/line-markers?
我正在生成数据,但我需要将数据转换成这种格式,strtotime
似乎无法解决问题。
Highcharts documentation:
For datetime axes, the X value is the timestamp in milliseconds since 1970.
datetime
轴数据格式:
[
x value, - timestamp in milliseconds since 1970
y value
]
您只需将 PHP 时间戳乘以 1000 即可得到 javascript 时间戳
var jsTimestamp = 1545055048 * 1000