Hi,
i'm trying to get the data from Qliksense Objects. I'm using below code to achieve this,
Datapage = ((ITable)child).DataPages;
foreach (NxDataPage NxData in Datapage)
{
var matrix = NxData.Matrix;
}
I'm getting zero records for some tables. Even if it has records. i got another code to get the data from help.qlik.com
var first10ElementsPage = new NxPage{ Top = 0, Height = 10};
IEnumerable<NxDataPage> tableData = myTable.GetData(new[] { first10ElementsPage });
But the Problem here is Height parameter (Number of Rows). it is dynamic. How to identify the number of records in an object.
Is there any other method to achieve this.
Please help me.....
Thanks and Regards,
Prabhu Appu