Hello Syncfusion,
I want to specify the time in my project on the X axis, but not with DateTime but with TimeSpan.
My first point is at x=Timespan{00:00:00}, but the X axis shows 1900.
How can I use TimeSpan and format it correctly?
My class model:
public class Data
{
//Value
public float Value { get; set; } = 0;
//Time
public TimeSpan CurrentTimeSpan { get; set; }
}
With kind regards
Robert