Skip to content

Instantly share code, notes, and snippets.

@morozov
Created July 9, 2015 17:03
Show Gist options
  • Save morozov/1b1fd52c5a88898f952e to your computer and use it in GitHub Desktop.
Save morozov/1b1fd52c5a88898f952e to your computer and use it in GitHub Desktop.
var data = [
{
"timestamp": 1436450162,
"temperature": 23
}
];
var mgData = data.map(function (point) {
return {
date: new Date(point.timestamp * 1000),
value: point.temperature
}
});
MG.data_graphic({
title: "Temperature",
data: mgData /*, etc */
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment