0

在 Highcharts 中整理了一个简单的图表,该图表是根据提供的数据编译的:

$(function() {
    var chart = new Highcharts.StockChart({

        chart: {
            renderTo: 'container'
        },
        credits: {
            enabled: false
        },
        title: {
            text: 'Chart'
        },
        xAxis: {
            type: 'datetime'
        },
        rangeSelector: {
            buttonTheme: { // styles for the buttons
                fill: 'none',
                stroke: 'none',
                style: {
                    color: '#039',
                    fontWeight: 'bold'
                },
                states: {
                    hover: {
                        fill: 'white'
                    },
                    select: {
                        style: {
                            color: 'white'
                        }
                    }
                }
            },
            inputStyle: {
                color: '#039',
                fontWeight: 'bold'
            },
            labelStyle: {
                color: 'silver',
                fontWeight: 'bold'
            },
            selected: 1
        },

        series: [{
            name: 'Data',
            data: [
[1325376000,102.2],
[1328054400,104.5],
[1330560000,106.7],
[1333238400,109.8],
[1335830400,122.1],
[1338508800,124.3],
]
        }]
    });
});

但是,日期数据(例如 1325376000)在图表的 x 轴上仅显示为小时,顶部显示的日期显示为 1970 年......你能告诉我哪里出错了吗?非常感谢。

4

2 回答 2

0

Highcharts 预计其日期以毫秒为单位。我认为您正在提供秒数?

于 2013-03-16T11:16:06.930 回答
0

您有 1325376000 即时间戳,(日期为 1970 年)。您使用 UNIX 时间戳还是其他?应该是哪个日期?您可以使用 ie Date.UTC() 来准备适当的日期http://www.w3schools.com/jsref/jsref_utc.asp

于 2013-03-18T09:13:55.737 回答