Ver Mensaje Individual
  #2 (permalink)  
Antiguo 21/08/2015, 19:40
safernandez666
 
Fecha de Ingreso: julio-2013
Mensajes: 19
Antigüedad: 11 años, 4 meses
Puntos: 2
Respuesta: JSON a Array PHP

Bueno he logrado hacerlo. Ya estoy recibiendo los datos.

Lo unico, que no se como agregar el AJAX o llamar de neuvo a la funcion para que esto se cargue solo nuevamente. Si pueden darme una mano! Les agradezco!

Código Javascript:
Ver original
  1. $(function() {
  2.     //Highcharts MySQL y PHP
  3.  
  4.     var Tiempo = [];
  5.     var valor = [];
  6.     var switch1 = true;
  7.     $.get('values.php', function(data) {
  8.  
  9.         data = data.split(' -/- ');
  10.         for (var i in data) {
  11.             if (switch1 == true) {
  12.                 Tiempo.push(data[i]);
  13.                 switch1 = false;
  14.             } else {
  15.                 valor.push(parseFloat(data[i]));
  16.                 switch1 = true;
  17.             }
  18.  
  19.         }
  20.         Tiempo.pop();
  21.  
  22.         $('#chart').highcharts({
  23.             chart : {
  24.                 type : 'spline', backgroundColor:'transparent', defaultSeriesType: 'bar'
  25.             },
  26.             title : {
  27.                 text : 'Tweetmotica'
  28.             },
  29.             subtitle : {
  30.                 text : 'Temperatura del Hogar'
  31.             },
  32.             xAxis : {
  33.                 title : {
  34.                     text : 'Tiempo'
  35.                 },
  36.                 categories : Tiempo
  37.             },
  38.             yAxis : {
  39.                 title : {
  40.                     text : 'Temperatura'
  41.                 },
  42.                 labels : {
  43.                     formatter : function() {
  44.                         return this.value + ' Temp.'
  45.                     }
  46.                 }
  47.             },
  48.             tooltip : {
  49.                 crosshairs : true,
  50.                 shared : true,
  51.                 valueSuffix : ''
  52.             },
  53.             plotOptions : {
  54.                 spline : {
  55.                     marker : {
  56.                         radius : 4,
  57.                         lineColor : '#666666',
  58.                         lineWidth : 1
  59.                     }
  60.                 }
  61.             },
  62.             series : [{
  63.  
  64.                 name : 'Grados',
  65.                 data : valor
  66.             }]
  67.         });
  68.     });
  69. });