Hi all,
I have C# class called EventHandler that looks like this. StartTime and EndTime both represent the number of seconds since the start of its "parent", which is basically just a list of Events.
public
class
EventHandler
{
public
Event Event;
public
float
StartTime => Event.StartTime;
public
float
EndTime => Event.EndTime;
}
I'm trying to use RadGanttView to display the parent, (i.e. a List<Event>), but since StartTime and EndTime are both relative and don't have specific dates, I'm not sure where to begin. Values are both also typically below 5 seconds. Can anyone point me in the right direction?
Thanks in advance!