DCC.Datepickerrange.datepickerrange

DCC.Datepickerrange.datepickerrange is a component for rendering calendars from which users can select a range of dates.

You have to use strings in the form YYYY-MM-DD to provide dates to Dash components and you will get strings in callback as well.

Month and Display Format

The monthFormat property determines how calendar headers are displayed when the calendar is opened.
The displayFormat property determines how selected dates are displayed in the DCC.Datepickerrange.datepickerrange component.

Both of these properties are configured through strings that use a combination of any of the following tokens.

String Token Example Description
YYYY 2014 4 or 2 digit year
YY 14 2 digit year
Y -25 Year with any number of digits and sign
Q 1..4 Quarter of year. Sets month to first month in quarter.
M MM 1..12 Month number
MMM MMMM Jan..December Month name
D DD 1..31 Day of month
Do 1st..31st Day of month with ordinal
DDD DDDD 1..365 Day of year
X 1410715640.579 Unix timestamp
x 1410715640579 Unix ms timestamp

Examples

Find a few usage examples below.

Simple DatePickerRange Example

This is a simple example of a DCC.Datepickerrange.datepickerrange component tied to a callback.

The DatePickerRange.Attr.minDateAllowed and DatePickerRange.Attr.maxDateAllowed properties define the minimum and maximum selectable dates on the calendar while initialVisibleMonth defines the calendar month that is first displayed when the DCC.Datepickerrange.datepickerrange component is opened.

open Dash.NET.Html
open Dash.NET.Suave
open Dash.NET.DCC
open Dash.NET
open System


let layout = 
  Html.div [
    Attr.children [
      DatePickerRange.datePickerRange
             "my-date-picker-range"
             [
                DatePickerRange.Attr.minDateAllowed  "1995-8-5"
                DatePickerRange.Attr.maxDateAllowed "2017-9-19"
                DatePickerRange.Attr.initialVisibleMonth  "2017-8-5"
                DatePickerRange.Attr.endDate  "2017-8-25"
             ]
      Html.div [ Attr.id "output-container-date-picker-range" ];
    ]
  ]


let callback =
  Callback.singleOut(
      [
        "my-date-picker-range" @. CustomProperty "start_date"
        "my-date-picker-range" @. CustomProperty "end_date" 
      ],
      "output-container-date-picker-range" @. Children,
      (fun (startDate : string) (endDate: string) ->

          let prefix = "You have selected: "

          let startLabel = match startDate with
                           | null ->  prefix
                           | _    ->  prefix + DateTime.Parse(startDate).ToString("MMM dd, yyyy") + " | "


          let endLabel  = match endDate with
                           | null ->  startLabel
                           | _    ->  startLabel + "End Date: "  + DateTime.Parse(endDate).ToString("MMM dd, yyyy")

          let label = if endLabel = prefix 
                      then "Select a date to see it displayed here" 
                      else endLabel

          "output-container-date-picker-range" @. Children => label
      ))


[<EntryPoint>]
let main args =
    DashApp.initDefault()
    |> DashApp.withLayout layout
    |> DashApp.addCallback callback
    |> DashApp.run args

Month Format Examples

You can set monthFormat to any permutation of the string tokens shown in Month and Display Format above to change how calendar titles are displayed in the DCC.Datepickerrange.datepickerrange component.

let layout = DatePickerRange.datePickerRange
                    "my-date-picker-range"
                    [
                        DatePickerRange.Attr.monthFormat "MMM Do, YY"
                        DatePickerRange.Attr.endDatePlaceholderText "MMM Do, YY" 
                        DatePickerRange.Attr.startDate "2017-6-21"
                    ]
let layout = DatePickerRange.datePickerRange
                    "my-date-picker-range"
                    [
                        DatePickerRange.Attr.monthFormat "M-D-Y-Q"
                        DatePickerRange.Attr.endDatePlaceholderText "M-D-Y-Q"
                        DatePickerRange.Attr.startDate "2017-6-21"
                    ]
let layout = DatePickerRange.datePickerRange
                    "my-date-picker-range"
                    [
                        DatePickerRange.Attr.monthFormat "MMMM Y"
                        DatePickerRange.Attr.endDatePlaceholderText "MMMM Y"
                        DatePickerRange.Attr.startDate "2017-6-21" 
                    ]
let layout = DatePickerRange.datePickerRange
                    "my-date-picker-range"
                    [
                        DatePickerRange.Attr.monthFormat "X" 
                        DatePickerRange.Attr.endDatePlaceholderText "X"
                        DatePickerRange.Attr.startDate "2017-6-21"
                    ]

Display Format Examples

You can use any permutation of the string tokens shown in Month and Display Format above to change how selected dates are displayed in the DCC.Datepickerrange.datepickerrange component.

let layout = DatePickerRange.datePickerRange
                    "my-date-picker-range"
                    [
                        DatePickerRange.Attr.endDate "2017-6-21" 
                        DatePickerRange.Attr.displayFormat "MMM Do, YY"
                        DatePickerRange.Attr.startDatePlaceholderText "MMM Do, YY"
                    ]
let layout = DatePickerRange.datePickerRange
                    "my-date-picker-range"
                    [
                        DatePickerRange.Attr.endDate "2017-6-21"
                        DatePickerRange.Attr.displayFormat "M-D-Y-Q"
                        DatePickerRange.Attr.startDatePlaceholderText "M-D-Y-Q" 
                    ]
let layout = DatePickerRange.datePickerRange
                    "my-date-picker-range"
                    [
                        DatePickerRange.Attr.endDate "2017-6-21" 
                        DatePickerRange.Attr.displayFormat "MMMM Y, DD"
                        DatePickerRange.Attr.startDatePlaceholderText "MMMM Y, DD"
                    ]
let layout =  DatePickerRange.datePickerRange
                  "my-date-picker-range"
                  [
                     DatePickerRange.Attr.endDate "2017-6-21"
                     DatePickerRange.Attr.displayFormat "X"
                     DatePickerRange.Attr.startDatePlaceholderText "X" 
                  ]

Vertical Calendar and Placeholder Text

The DCC.Datepickerrange.datepickerrange component can be rendered in two orientations, either horizontally or vertically. If calendarOrientation is set to DatePickerRange.CalendarOrientationType.Vertical, it will be rendered vertically and will default to DatePickerRange.CalendarOrientationType.Horizontal if not defined.

startDatePlaceholderText and endDatePlaceholderText define the grey default text defined in the calendar input boxes when no date is selected.

let layout = DatePickerRange.datePickerRange
                    "my-date-picker-range"
                    [
                        DatePickerRange.Attr.startDatePlaceholderText "Start Period" 
                        DatePickerRange.Attr.endDatePlaceholderText "End Period"
                        DatePickerRange.Attr.calendarOrientation DatePickerRange.CalendarOrientationType.Vertical
                    ]

Minimum Nights, Calendar Clear, and Portals

The minimumNights property defines the number of nights that must be in between the range of two selected dates.

When the clearable property is set to true, the DCC.Datepickerrange.datepickerrange renders with a small ‘x’ that the user can select to remove selected dates.

The DCC.Datepickerrange.datepickerrange component supports two different portal types, one being a full screen portal (withFullScreenPortal) and another being a simple screen overlay, like the one shown below (withPortal).

let layout = DatePickerRange.datePickerRange
                    "my-date-picker-range"
                    [
                        DatePickerRange.Attr.minimumNights 5
                        DatePickerRange.Attr.clearable true
                        DatePickerRange.Attr.withPortal true
                        DatePickerRange.Attr.startDate "2017-6-21"
                    ]

Right to Left Calendars and First Day of Week

When the isRTL property is set to true the calendar will be rendered from right to left.

The firstDayOfWeek property allows you to define which day of the week will be set as the first day of the week. In the example below, Tuesday is the first day of the week.

let layout = DatePickerRange.datePickerRange
                    "my-date-picker-range"
                    [
                        DatePickerRange.Attr.isRTL true 
                        DatePickerRange.Attr.firstDayOfWeek DatePickerRange.FirstDayOfWeekType.Prop3
                        DatePickerRange.Attr.startDate  "2017-6-21"
                    ]

DatePickerRange Properties

Our recommended IDE for writing Dash apps is Dash Enterprise’s
Data Science Workspaces,
which has typeahead support for Dash Component Properties.
Find out if your company is using
Dash Enterprise
.

start_date (string; optional):
Specifies the starting date for the component. Accepts
datetime.datetime objects or strings in the format ‘YYYY-MM-DD’.

end_date (string; optional):
Specifies the ending date for the component. Accepts datetime.datetime
objects or strings in the format ‘YYYY-MM-DD’.

min_date_allowed (string; optional):
Specifies the lowest selectable date for the component. Accepts
datetime.datetime objects or strings in the format ‘YYYY-MM-DD’.

max_date_allowed (string; optional):
Specifies the highest selectable date for the component. Accepts
datetime.datetime objects or strings in the format ‘YYYY-MM-DD’.

disabled_days (list of strings; optional):
Specifies additional days between min_date_allowed and
max_date_allowed that should be disabled. Accepted datetime.datetime
objects or strings in the format ‘YYYY-MM-DD’.

minimum_nights (number; optional):
Specifies a minimum number of nights that must be selected between the
startDate and the endDate.

updatemode (a value equal to: ‘singledate’ or ‘bothdates’; default 'singledate'):
Determines when the component should update its value. If bothdates,
then the DatePicker will only trigger its value when the user has
finished picking both dates. If singledate, then the DatePicker will
update its value as one date is picked.

start_date_placeholder_text (string; optional):
Text that will be displayed in the first input box of the date picker
when no date is selected. Default value is ‘Start Date’.

end_date_placeholder_text (string; optional):
Text that will be displayed in the second input box of the date picker
when no date is selected. Default value is ‘End Date’.

initial_visible_month (string; optional):
Specifies the month that is initially presented when the user opens
the calendar. Accepts datetime.datetime objects or strings in the
format ‘YYYY-MM-DD’.

clearable (bool; default false):
Whether or not the dropdown is “clearable”, that is, whether or not a
small “x” appears on the right of the dropdown that removes the
selected value.

reopen_calendar_on_clear (bool; default false):
If True, the calendar will automatically open when cleared.

display_format (string; optional):
Specifies the format that the selected dates will be displayed valid
formats are variations of “MM YY DD”. For example: “MM YY DD” renders
as ‘05 10 97’ for May 10th 1997 “MMMM, YY” renders as ‘May, 1997’ for
May 10th 1997 “M, D, YYYY” renders as ‘07, 10, 1997’ for September
10th 1997 “MMMM” renders as ‘May’ for May 10 1997.

month_format (string; optional):
Specifies the format that the month will be displayed in the calendar,
valid formats are variations of “MM YY”. For example: “MM YY” renders
as ‘05 97’ for May 1997 “MMMM, YYYY” renders as ‘May, 1997’ for May
1997 “MMM, YY” renders as ‘Sep, 97’ for September 1997.

first_day_of_week (a value equal to: 0, 1, 2, 3, 4, 5 or 6; default 0):
Specifies what day is the first day of the week, values must be from
[0, …, 6] with 0 denoting Sunday and 6 denoting Saturday.

show_outside_days (bool; optional):
If True the calendar will display days that rollover into the next
month.

stay_open_on_select (bool; default false):
If True the calendar will not close when the user has selected a value
and will wait until the user clicks off the calendar.

calendar_orientation (a value equal to: ‘vertical’ or ‘horizontal’; default 'horizontal'):
Orientation of calendar, either vertical or horizontal. Valid options
are ‘vertical’ or ‘horizontal’.

number_of_months_shown (number; default 1):
Number of calendar months that are shown when calendar is opened.

with_portal (bool; default false):
If True, calendar will open in a screen overlay portal, not supported
on vertical calendar.

with_full_screen_portal (bool; default false):
If True, calendar will open in a full screen overlay portal, will take
precedent over ‘withPortal’ if both are set to true, not supported on
vertical calendar.

day_size (number; default 39):
Size of rendered calendar days, higher number means bigger day size
and larger calendar overall.

is_RTL (bool; default false):
Determines whether the calendar and days operate from left to right or
from right to left.

disabled (bool; default false):
If True, no dates can be selected.

start_date_id (string; optional):
The HTML element ID of the start date input field. Not used by Dash,
only by CSS.

end_date_id (string; optional):
The HTML element ID of the end date input field. Not used by Dash,
only by CSS.

style (record; optional):
CSS styles appended to wrapper div.

className (string; optional):
Appends a CSS class to the wrapper div component.

id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components in
an app.

loading_state (record; optional):
Object that holds the loading state object coming from dash-renderer.

loading_state is a record with keys:

  • component_name (string; optional):
    Holds the name of the component that is loading.

  • is_loading (bool; optional):
    Determines if the component is loading or not.

  • prop_name (string; optional):
    Holds which property is loading.

persistence (bool | string | number; optional):
Used to allow user interactions in this component to be persisted when
the component - or the page - is refreshed. If persisted is truthy
and hasn’t changed from its previous value, any persisted_props that
the user has changed while using the app will keep those changes, as
long as the new prop value also matches what was given originally.
Used in conjunction with persistence_type and persisted_props.

persisted_props (list of values equal to: ‘start_date’ or ‘end_date’; default ['start_date', 'end_date']):
Properties whose user interactions will persist after refreshing the
component or the page.

persistence_type (a value equal to: ‘local’, ‘session’ or ‘memory’; default 'local'):
Where persisted user changes will be stored: memory: only kept in
memory, reset on page refresh. local: window.localStorage, data is
kept after the browser quit. session: window.sessionStorage, data is
cleared once the browser quit.