Highcharts Dynamic Multiseries Column Chart Showing Only 1 Set Of Series At A Time
I am using highcharts on a project, I am having trouble with the creation of multiple series of data updating dynamically generating a column chart, my aim is to keep all the serie
Solution 1:
I solved the answer by reducing the size of the for loop from -19 to 0 for all the series:
{
    name: 'HPCOutletTemp',
    data:  (function() {
      // generate an array of random datavardata = [],
        time = (new Date()).getTime(),
        i;
      for (i = 0; i <= 0; i += 1) {
        data.push({
          x: time + i * 1000,
          y: HPCOutletTemp
        });
      }
      returndata;
    }())
  }
check the fiddle for more understanding : https://jsfiddle.net/qkdwu3p3/
Post a Comment for "Highcharts Dynamic Multiseries Column Chart Showing Only 1 Set Of Series At A Time"