This repository was archived by the owner on Aug 29, 2025. It is now read-only.

Description
Currently, my date range is fed an existing date range based on the data being displayed, however, there is no way to individually set the initial visible month for each of the date pickers. Especially if the data displayed is historical this is problematic as you have to set either the start date / end date as the initial visible month

To replicate this:
dcc.DatePickerRange(
id='date-picker-range',
start_date = dt(2017, 1, 31),
end_date = dt(2018, 3, 21),
min_date_allowed = dt(2017, 1, 31),
max_date_allowed = dt(2018, 3, 21),
initial_visible_month = start_date=dt(2017, 1, 31)
)