I'm attempting to achieve seamless panning on a basic highstock chart by clicking and dragging within the plot area.
Interestingly, I have found that this works flawlessly when my data is not based on timestamps:
data: [-25.1,-23.8,-19.9,-19.1,-19.1,-20.7,-20.7,-21.6,-21.6,-22.2,-22.2,-22.6,-22.6,-22.9,-22.9,-23.2,-23.2,-23.7,-23.8,-23.8,-24,-24,-24.1,-24.2,-24.2,-24.4,-24.5,-25.7,-25.8,-25.8,-25.8,-25.2,-25.2,-25.3,-25.3,-25.4,-25.5,-25.5,-25.5,-25.5,-25.6,-25.6,-25.2,-24.6,-24.6,-24.2,-24.2,-24.8,-25.1,-25.1,-25.3,-25.3,-25.4]
Visit https://jsfiddle.net/jhartnag/vrq396ja/ to see it in action.
However, when I introduce timestamps into the data, the smooth panning stops and instead occurs in increments: https://jsfiddle.net/jhartnag/e8w72o4z/
(Additionally, there seems to be an issue with the navigator window changing as well, but that's another challenge altogether)
How can I achieve uninterrupted panning with timestamped data in Highstock?