score:1

In the xAxis config, you are using pointInterval, it should be tickInterval.

xAxis: {
    type: 'datetime',     
    dateTimeLabelFormats: {
        day: '%d. '

    },
    tickInterval: 24 * 3600 * 1000 
}

Example fiddle.

score:1

The pointInterval parameter should be placed in the plotOptions.series, not on xAxis.


Related Query

More Query from same tag