We've decided to only use the ThemeBuilder for styling.
I haven't been able to change the background and text color of the footer using the ThemeBuilder. Is there a way?
I define my footer in the Column (MVC)
I haven't been able to change the background and text color of the footer using the ThemeBuilder. Is there a way?
I define my footer in the Column (MVC)
columns.Bound(e => e.Client)
.FooterTemplate(@<
text
>
@foreach (var acct in accountsRollups)
{
@Formatters.FormatCurrency(acct.UnrealizedGainLoss)
<
br
/>
}
</
text
>)