When provide handsontable with a table data like
const data = [
{ month: 1, data: [1,2,3,4,5,6,7,8,9,10,11,12] },
{ month: 2, data: [1,2,3,4,5,6,7,8,9,10,11,12] },
{ month: 3, data: [1,2,3,4,5,6,7,8,9,10,11,12] },
{ month: 4, data: [1,2,3,4,5,6,7,8,9,10,11,12] },
];
In handsontable i am able to get a correct 2d array. However, in hyper formula, i am not able to get the correct 2d array. Only first two number [1,2] is received by hyper formula.
Is this a bug or did i set it up incorrectly?