admin管理员组

文章数量:1343338

var chart = new Highcharts.Chart({
chart: {
    renderTo: container
},

plotOptions: {
    series: {
        pointStart: Date.UTC(2010, 0, 1),
        pointInterval: 24 * 3600 * 1000 * 1 // one day
    }
},
xAxis: {
            type: 'datetime',
            dateTimeLabelFormats: { // don't display the dummy year 
                 day: '%b %e',  
            },
        },
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]
}, {
    data: [144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4, 29.9, 71.5, 106.4, 129.2]
}]

the code upper work good, However when i change pointInterval to 24 * 3600 * 1000 * 7 (1 week), the highchart dateTimeLabelFormat don't work, any help

var chart = new Highcharts.Chart({
chart: {
    renderTo: container
},

plotOptions: {
    series: {
        pointStart: Date.UTC(2010, 0, 1),
        pointInterval: 24 * 3600 * 1000 * 1 // one day
    }
},
xAxis: {
            type: 'datetime',
            dateTimeLabelFormats: { // don't display the dummy year 
                 day: '%b %e',  
            },
        },
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]
}, {
    data: [144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4, 29.9, 71.5, 106.4, 129.2]
}]

the code upper work good, However when i change pointInterval to 24 * 3600 * 1000 * 7 (1 week), the highchart dateTimeLabelFormat don't work, any help

Share Improve this question asked Sep 12, 2013 at 14:57 Michael ScofieldMichael Scofield 611 gold badge1 silver badge7 bronze badges 5
  • What do you mean by "don't work"? Exactly what is the problem? – Pointy Commented Sep 12, 2013 at 15:03
  • jsfiddle/F2uMR the only different is the pointInterview you can find what i say – Michael Scofield Commented Sep 12, 2013 at 15:10
  • It looks fine to me. I don't know what "pointInterview" means. edit oh, "pointInterval". Well it works fine with the 7 day interval. What do you expect it to look like if not what's showing up now? – Pointy Commented Sep 12, 2013 at 15:14
  • wait a minutes.i will show you the bug – Michael Scofield Commented Sep 12, 2013 at 15:16
  • LOL. I did the exact same thing until I saw Pawel Fus's answer. Also, you should really mark it as the correct answer. – Jester Commented May 16, 2018 at 0:18
Add a ment  | 

1 Answer 1

Reset to default 9

It doesn't work because you are setting label format for one day interval, while used is week format, see fixed example: http://jsfiddle/F2uMR/1/

$('#container').highcharts({
    xAxis: {
        type: 'datetime',
        dateTimeLabelFormats: {
            day: '%b %e',
            week: '%b %e'
        }
    },

    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],
        pointStart: Date.UTC(2010, 0, 1),
        pointInterval: 24 * 3600 * 1000 * 7// one week
    }]
});

本文标签: javascripthighchart dateTimeLabelFormats don39t workStack Overflow