Hello all.
I need to add a "%" to the suffix to a table with aggregation. It's a great module but there isn't a place to put prefixes or suffixes which my clients wanted the "%" at the end which is not un-reasonable.
I did it with css.
Find the css selector and copy it.
Here's my css code that places the sufix.Change the selector to match your selector.
#views-aggregator-datatable > tfoot > tr > th.views-field.views-field-nothing-1.views-align-center:after {
content: "%";
}
:)