Is there a way to show the labels as DayOfWeek (Wednesday) instead of date (3/1) ?
1 Answer, 1 is accepted
0
Yanislav
Telerik team
answered on 15 May 2023, 07:51 AM
Hi Ilan,
You can show the name of the day of the week as text, but you need to set up a label template. This lets you turn the label value into a JavaScript Date object, which has a really handy method called getDay(). This method gives you a number that represents the day of the week. From there, you can use another function to turn that number into the day's name.