Skip to content

Latest commit

 

History

History
45 lines (39 loc) · 1.33 KB

kb-datetimepicker-hide-week-numbers.md

File metadata and controls

45 lines (39 loc) · 1.33 KB
title description type page_title slug position tags ticketid res_type
Hide the Week Numbers in RadDateTimePicker
How to hide the week numbers in the calendar of RadDateTimePicker.
how-to
Change the Visibility of the Week Numbers in DateTimePicker's Calendar
kb-datetimepicker-hide-week-numbers
0
raddatetimepicker, week, numbers, areweeknumbersvisible
0
kb

Environment

Product Version 2020.2.511
Product RadDateTimePicker for WPF

Description

How to hide the week numbers in the calendar of RadDateTimePicker.

Solution

To hide the week numbers, set the AreWeekNumbersVisible property of the RadCalendar control hosted in the RadDateTimePicker. You can do this using the CalendarStyle property of RadDateTimePicker.

[XAML]

{{region kb-datetimepicker-hide-week-numbers-0}} <telerik:RadDateTimePicker InputMode="DatePicker"> telerik:RadDateTimePicker.CalendarStyle <Style TargetType="telerik:RadCalendar"> </Style> </telerik:RadDateTimePicker.CalendarStyle> </telerik:RadDateTimePicker> {{endregion}}