我试图找到一种方法来表示针对agGrid中的行的周期值的集合。我的数据集的示例如下:
| Attribute 1 | Attribute 2 | .. | Periodic Data 1 | Periodic Data 2 | .. |
| | | | 0-1M 1M-3M 3M-6M| 0-6M 6-12M 12M+ | .. |
|_Attr1Value1_|_Attr2Value1_| .. |__2% 2.5% 3%__|__1% 3.2% 4%___| .. |
| | | | 0-1M 1M-3M 3M-6M| 0-6M 6-12M 12M+ | .. |
|_Attr1Value2_|_Attr2Value2_| .. |__2% 2.5% 3%__|__1% 3.2% 4%___| .. |
| | | | 0-1M 1M-3M 3M-6M| | .. |
|_Attr1Value3_|_Attr2Value3_| .. |__2% 2.5% 3%__|_________________| .. |
我已经看过Master - Detail的示例,但是它并不是很有效,因为该值在于在一个屏幕中查看数据,因为存在许多周期性数据的属性组合必须被捕获。
可以使用AgGrid表示类似的东西吗? 其他人是否有显示此类数据的经验?