Problem
In an A12 overview table, column styles can be configured for header and content cells:
However, there is currently no equivalent support for footer cells. When an overview table uses a footer summary, for example:
"summary": [
{
"operation": "sum"
}
]
the generated footer cells can’t receive any column-specific style from the column configuration.
i would very much want something like
"styles": {
"header": [
"style_a"
],
"content": [
"style_b"
],
"footer": [
"style_c"
]
}
Hi @tulio-smooth-packet, right now the Overview Engine has no footer styling option built in yet, but there is a workaround that doesn’t require changing the engine: customize the footer cell via the OE componentMap.TableFootCellContent, which is a public override point.
In case you would like to have a modeller support for it, please help us raise a ticket for that.
Best regards,
Nam
i believe you should raise a ticket for modeller support. I think it would be good to have consistent styling support across header, content, and footer cells, so they all work in the same way.
i will try the workaround in the meantime.