javascript - Highchart x and y axes data from json -


here js fiddle : demo

i plotting differences of timestamps in multiple series reading data json. how plot "timestamp","timestamp2","timestamp3" against "tempersensordata" instead of steps?

  var processed_json = new array();   //ts1   var processed_json1 = new array();  //ts2     // populate initial series   (i = 0; < data.length; i++){     processed_json.push(data[i].timestamp/1000);     processed_json1.push(data[i].timestamp2/1000);   } 


Comments

Popular posts from this blog

networking - Vagrant-provisioned VirtualBox VM is not reachable from Ubuntu host -

c# - ASP.NET Core - There is already an object named 'AspNetRoles' in the database -

ruby on rails - ArgumentError: Missing host to link to! Please provide the :host parameter, set default_url_options[:host], or set :only_path to true -