Hi there,
I’m experimenting nestedHeaders
for the first time, and although it works as intended on simple jsfiddle samples, I have some holes in the first row of headers :
In this example, I’s like to create 2 sub-columns attribute1
and attribute2
for each month of the year (and a recap for the whole year on the two first sub-columns).
The nestedHeder object I use is this one :
[
[
{ "label": "2024", "colspan": 2 },
{ "label": "01/2024", "colspan": 2 },
{ "label": "02/2024", "colspan": 2 },
{ "label": "03/2024", "colspan": 2 },
{ "label": "04/2024", "colspan": 2 },
{ "label": "05/2024", "colspan": 2 },
{ "label": "06/2024", "colspan": 2 },
{ "label": "07/2024", "colspan": 2 },
{ "label": "08/2024", "colspan": 2 },
{ "label": "09/2024", "colspan": 2 },
{ "label": "10/2024", "colspan": 2 },
{ "label": "11/2024", "colspan": 2 },
{ "label": "12/2024", "colspan": 2 }
],
[
"attribute1",
"attribute2",
"attribute1",
"attribute2",
"attribute1",
"attribute2",
"attribute1",
"attribute2",
"attribute1",
"attribute2",
"attribute1",
"attribute2",
"attribute1",
"attribute2",
"attribute1",
"attribute2",
"attribute1",
"attribute2",
"attribute1",
"attribute2",
"attribute1",
"attribute2",
"attribute1",
"attribute2",
"attribute1",
"attribute2"
]
]
Our parametrization of HandsOnTable is quite heavy and reliant on other parts of our software, so I suppose there is some interaction with another feature. Any idea about what it might be ?
It’s not easy to share a jsfiddle to play with, sorry for that