LineChart - one day chart

I'm doing a application that must show the today data. I have a List with datetime and all are from the same day only change the time. I need a 15 minutes LineChart. I searched in a lot of pages, repositories and documentations and I cant found a CategoryProperty types. So how can I show one day chart with a 15 minutes marks?

I don't want a X values saying the date i just want a time there.

Look at the Enumerable:
DataItem[] receivedEvents = new DataItem[] {
new DataItem
{
Date = DateTime.Parse("2020-01-01 08:00:00"),
TotalEvents = 62
},
new DataItem
{
Date = DateTime.Parse("2020-01-01 08:15:00"),
TotalEvents = 52
},
new DataItem
{
Date = DateTime.Parse("2020-01-01 08:30:00"),
TotalEvents = 44
},
new DataItem
{
Date = DateTime.Parse("2020-01-01 08:45:00"),
TotalEvents = 66
}
};

Hi @Angel_David_Marte,

You can check this thread which shows how to format the values displayed by the category axis: RadzenChart FormatString: Need single digit hour format

1 Like

Yes, it's all I needed. Thanks a lot!