Hi, is it possible to define the DatePickerRange in such a way that the user can only see and select the years in the dropdown calendar (without date and month)? My data is an annual series.
Thanks in advance for any help.
Hi, is it possible to define the DatePickerRange in such a way that the user can only see and select the years in the dropdown calendar (without date and month)? My data is an annual series.
Thanks in advance for any help.
I think it would be better to just use a Dropdown with the year you want.
dcc.Dropdown(options=[{'label':x, 'value': x} for x in range(1999, 2018)])
Thanks, that makes sense!
(Sorry, still new to this plotly/pandas/python thing)