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$(function() {
//Highcharts MySQL y PHP
var Tiempo = [];
var valor = [];
var switch1 = true;
$.get('values.php', function(data) {
data = data.split(' -/- ');
for (var i in data) {
if (switch1 == true) {
Tiempo.push(data[i]);
switch1 = false;
} else {
valor.push(parseFloat(data[i]));
switch1 = true;
}
}
Tiempo.pop();
$('#chart').highcharts({
chart : {
type : 'spline', backgroundColor:'transparent', defaultSeriesType: 'bar'
},
title : {
text : 'Tweetmotica'
},
subtitle : {
text : 'Temperatura del Hogar'
},
xAxis : {
title : {
text : 'Tiempo'
},
categories : Tiempo
},
yAxis : {
title : {
text : 'Temperatura'
},
labels : {
formatter : function() {
return this.value + ' Temp.'
}
}
},
tooltip : {
crosshairs : true,
shared : true,
valueSuffix : ''
},
plotOptions : {
spline : {
marker : {
radius : 4,
lineColor : '#666666',
lineWidth : 1
}
}
},
series : [{
name : 'Grados',
data : valor
}]
});
});
});