The QSlider uses an integer. The largest integer represents a timestamp resulting in the maximum possible date shown above.
Increase the range of the DateTimeRangeSlider widget by converting the slider to use integer days rather than integer seconds. A pair of conversion methods will help.
The DateTimeRangeSlider is limited to maximum possible date of: 2038-01-18 21:14:07 (UTC).
Attempts to set the maximum to later dates result in this exception:
This limitation is imposed by using integer seconds with the slider (from the underlying Qt C++ library): https://github.com/BCDA-APS/tiled-viz2023/blob/fd52533d5aed91d29fd9c9e2b651f74477986255/gemviz23/demo/date_time_range_slider.py#L129
The QSlider uses an integer. The largest integer represents a timestamp resulting in the maximum possible date shown above.
Increase the range of the DateTimeRangeSlider widget by converting the slider to use integer days rather than integer seconds. A pair of conversion methods will help.