Tom
Tom

Reputation: 65

Highcharts / Highstock Invalid Date Issue

I get an invalid date error when I try to use Highstock the graph gets drawn but I can not hover over points see code listing below. The Timestamps are generated by Java using System.currentTimeMillis(). Could someone please tell me are those Timestamps not supported by Highcharts???

 $(function() {

    $('#container').highcharts('StockChart', {


        rangeSelector : {
            selected : 1
        },

        title : {
            text : 'Headline'
        },

        series : [{
            "name":"testname",
            "data":[
                [1384961978275,1700],
                [1384875578275,1600],
                [1384789178275,1750],
                [1384702778275,1500],
                [1384616378275,1900],
                [1384529978275,1870]
                    ]
                }]
    });
});

Upvotes: 1

Views: 1501

Answers (1)

Paweł Fus
Paweł Fus

Reputation: 45079

Problem is with unsorted data. Data for Highstock should be sorted ascending (by x-values/timestamps) because of dataGrouping feature.

Upvotes: 3

Related Questions