格式化Highchart日期时间类别

时间:2017-09-14 01:13:34

标签: highcharts dateformatter

有人可以告诉我如何在以下代码中指定类别的格式。 为什么我的xAxis类别以毫秒为单位转换为" 1970-01-01 00:00:00"

这是指向Fiddler

的链接
var chart = new Highcharts.Chart({

    chart: {
        renderTo: 'container'
    },

    title: {
        text: 'Categorized chart'
    },

    xAxis: {
        categories: [1496275200000,1498867200000,1501545600000,1504224000000],
        type : 'datetime'
    },

    series: [{
        data: [29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4]
    }]

});

$('#preview').html(chart.getCSV());

1 个答案:

答案 0 :(得分:0)

从官方example

获取想法

您的代码就像

xAxis: {
    //categories: [1496275200000,1498867200000,1501545600000,1504224000000],
    type : 'datetime'
},

series: [{
    data: [[1496275200000,29.9],[1498867200000,71.5],[1501545600000,106.4] , [1504224000000,129.2]]
}]

Fiddle演示