Thanks for the reply! I am able to control the height of each row successfully now.
As for the data, it just wouldn't loop properly in the template. I think its probably because the data wasn't in object format. I was able to get it to work like this:
//API data = excel //change array to object var rv = {}; for (var i = 0; i < excel.length; ++i) { rv[i] = excel[i];} excel = {rv};Once again, thanks a lot for your help !