0

I want to display my data in drill down table using angular. My columns and rows are dynamic.

Please any one suggest me best angular component, or working example.

It will be great if you share working example

Thanks in advance.

Kiran Raj
  • 1
  • 3

1 Answers1

0

You can use Angular Data table for it. Also has features like filtering, pagination and export.

link: https://l-lin.github.io/angular-datatables/#/welcome

For the dynamic headers and columns you can use ng-repeat on the <th> tag and for the dynamic rows you can use ng-repeat on the <tr> tag.

Fearcoder
  • 753
  • 3
  • 15
  • 47