Does DataShape does not support property name having hypen?
var result = Resources["InfoTableFunctions"].CreateInfoTableFromDataShape({
dataShapeName: "TestDataShape"
});
var newEntry=new Object();
for(var i=0;i<result1.length;i++){
newEntry.first-data = result1[i].first-data;
.
.
.
result.AddRow(newEntry);
}
Does DataShape does not support property name having hypen? ie.newEntry.first-data
and my second question is does result1[i].first-data;is not supported in thingworx? result1[i].first-data is coming from json file
Can you help me out over here ?

