How to troubleshoot a Highcharts script that's not rendering data when date is added and hanging the JS engine with large datasets?

Posted by ylluminate on Stack Overflow See other posts from Stack Overflow or by ylluminate
Published on 2012-01-11T19:02:46Z Indexed on 2012/06/07 10:40 UTC
Read the original article Hit count: 272

I have a Highchart JS graph that I'm building in Rails (although I don't think Ruby has real bearing on this problem unless it's the Date output format) to which I'm adding the timestamp of each datapoint. Presently the array of floats is rendering fine without timestamps, however when I add the timestamp to the series it fails to rend. What's worse is that when the series has hundreds of entries all sorts of problems arise, not the least of which is the browser entirely hanging and requiring a force quit / kill.

I'm using the following to build the array of arrays data series:

series1 = readings.map{|row| [(row.date.to_i * 1000), (row.data1.to_f if BigDecimal(row.data1) != BigDecimal("-1000.0"))] }

This yields a result like this:

series: [{"name":"Data 1","data":[[1326262980000,1.79e-09],[1326262920000,1.29e-09],[1326262860000,1.22e-09],[1326262800000,1.42e-09],[1326262740000,1.29e-09],[1326262680000,1.34e-09],[1326262620000,1.31e-09],[1326262560000,1.51e-09],[1326262500000,1.24e-09],[1326262440000,1.7e-09],[1326262380000,1.24e-09],[1326262320000,1.29e-09],[1326262260000,1.53e-09],[1326262200000,1.23e-09],[1326262140000,1.21e-09]],"color":"blue"}]

Yet nothing appears on the graph as noted. Notwithstanding, when I compare the data series in one of their very similar examples here: http://www.highcharts.com/demo/spline-irregular-time

It appears that really the data series are formatted identically (except in mine I use the timestamp vs date method).

This leads me to think I've got a problem with the timestamp output, but I'm just not able to figure out where / how as I'm converting the date output to an integer multipled by 1000 to convert it to milliseconds as per explained in a similar Railscasts tutorial.

I would very much appreciate it if someone could point me in the right direction here as to what I may be doing wrong. What could cause no data to appear on the graph in smaller sized sets (<100 points) and when into the hundreds causes an apparent hang in the javascript engine in this case?

Perhaps ultimately the key lies here as this is the entire js that's being generated and not rendering:

jQuery(function() {
      // 1. Define JSON options
      var options = {
                    chart: {"defaultSeriesType":"spline","renderTo":"chart_name"},
                            title: {"text":"Title"},
                            legend: {"layout":"vertical","style":{}},
                            xAxis: {"title":{"text":"UTC Time"},"type":"datetime"},
                            yAxis: [{"title":{"text":"Left Title","margin":10}},{"title":{"text":"Right Groups Title"},"opposite":true}],
                            tooltip:  {"enabled":true},
                            credits: {"enabled":false},
                            plotOptions: {"areaspline":{}},
                            series: [{"name":"Data 1","data":[[1326262980000,1.79e-08],[1326262920000,1.69e-08],[1326262860000,1.62e-08],[1326262800000,1.42e-08],[1326262740000,1.29e-08],[1326262680000,1.34e-08],[1326262620000,1.31e-08],[1326262560000,1.51e-08],[1326262500000,1.64e-08],[1326262440000,1.7e-08],[1326262380000,1.64e-08],[1326262320000,1.69e-08],[1326262260000,1.53e-08],[1326262200000,1.23e-08],[1326262140000,1.21e-08]],"color":"blue"},{"name":"Data 2","data":[[1326262980000,9.79e-09],[1326262920000,9.78e-09],[1326262860000,9.8e-09],[1326262800000,9.82e-09],[1326262740000,9.88e-09],[1326262680000,9.89e-09],[1326262620000,1.3e-06],[1326262560000,1.32e-06],[1326262500000,1.33e-06],[1326262440000,1.33e-06],[1326262380000,1.34e-06],[1326262320000,1.33e-06],[1326262260000,1.32e-06],[1326262200000,1.32e-06],[1326262140000,1.32e-06]],"color":"red"}],
                            subtitle: {}
                    };

      // 2. Add callbacks (non-JSON compliant)

      // 3. Build the chart
        var chart = new Highcharts.StockChart(options);
  });

© Stack Overflow or respective owner

Related posts about JavaScript

Related posts about ruby-on-rails