I have an interactive report retrieving numbers and I want to make these numbers a little bigger.
How can I do that? Is that even a thing in apex?
How can I increase the report overall font size or a specific column font size?
I tried changing the region item size to Large and XLarge but that changed nothing.
I keep finding posts suggesting something like this:
<style type="text/css">
.apexir_WORKSHEET_DATA td{
font-size: 18px;
font-weight: bold;
}
</style>
but I don't know where to put it to apply it to the report/region or column I want to apply that font to.