I'm using "React Data Grid" library http://adazzle.github.io/react-data-grid and I want to group columns, and each group should have its own header.
Something like this:
|-------------- Group A header ------------|-------------- Group B header---------------|
|------A1 column-----|-----A2 column----|-----B1 column-----|------B2 column------|
|-------A1 Data-------|------A2 Data-------|-------B1 Data------|-------B2 Data--------|
It should possibly be a not hacky way and all the functions of the library should be still supported (like horizontal scrolling).
I know it's possible to group rows, like this:
http://adazzle.github.io/react-data-grid/examples.html#/grouping
I want the same thing but with columns. Couldn't find it in the docs.
Would be grateful for any tip. Thanks.