I am currently creating a summary definition programmatically as follows:
e.FieldLayout.SummaryDefinitions.Add(
});
Is there a way to add a ValueConverter to the SummaryDefinition? My clients don't want to see numbers in the summary if they are 0. A custom value converter is handling this nicely for the fields (cells) themselves but need the same behavior in the summaries.
You could define a format that uses sections to define the negative and 0 value formats. E.g. "{0:C0;-C0; }"