I'm creating simple table report with column of TimeSpan type. I'm summing its values, which leads into values bigger than 24 hours, into Text componnent.
{SumTime(DataBand1,Records.time)}
I'm trying to format Text field like HH:mm:ss, but for 25 hours it gives me 01:00:00 (or 1.01:00:00 with general formatting) instead of 25:00:00 what is my goal.
Edit: The problem is not how to format timespan, but how to associate formatted value into Stimulsoft's Text component.
The
Hours
property has a maximum of 24h. You could format it yourself usingString.Format
andTimeSpan.TotalHours
: