infotable pivot
I have an infotable which conatins timestamp, device_name, temp columns.
I need to apply pivot inorder to get device_names as fields w.r.t temp column as values.
My pivot code is:
var params = {
t: data /* INFOTABLE */,
nameColumn: "DEV_NAME" /* STRING */,
valueColumn: "temp"/* STRING */,
timestampColumn: "timestamp" /* STRING */
};
var result = Resources["InfoTableFunctions"].Pivot(params);
and i'm getting error like this:
{
"error": ""
}
please help me out...

