import datetime as dt
import panel as pn
pn.extension()
The DateRangePicker
widget allows selecting a date range using a text box and the browser's date-picking utility.
Discover more on using widgets to add interactivity to your applications in the how-to guides on interactivity. Alternatively, learn how to set up callbacks and (JS-)links between parameters or how to use them as part of declarative UIs with Param.
For details on other options for customizing the component see the layout and styling how-to guides.
end
(date): The latest selectable datestart
(date): The earliest selectable datevalue
(tuple): Tuple of upper and lower bounds of the selected range expressed as date typesdisabled
(boolean): Whether the widget is editablename
(str): The title of the widgetdisabled_dates
(list): dates to make unavailable for selection; others will be availableenabled_dates
(list): dates to make available for selection; others will be unavailableDateRangePicker
uses a browser-dependent calendar widget to select the date range:
date_range_picker = pn.widgets.DateRangePicker(
name='Date Range Picker', value=(dt.date(2020, 1, 1), dt.date(2020, 1, 10))
)
pn.Column(date_range_picker, height=400)
To ensure it is visible in a notebook we have placed it in a Column
with a fixed height.
DateRangePicker.value
returns a tuple of date values type that can be read out or set like other widgets:
date_range_picker.value
The DateRangePicker
widget exposes a number of options which can be changed from both Python and Javascript. Try out
the effect of these parameters interactively:
pn.Row(date_range_picker.controls(jslink=True), date_range_picker)