Zoom only in x but not in y direction?
bokeh, python
Solution
I just added a PR for this feature: https://github.com/ContinuumIO/bokeh/pull/508
It should be in master tonight, and part of the upcoming release. Basically it adds new tool names: `xpan`, `ypan`, `xwheel_zoom`, `ywheel_zoom`
Sorry this took so long, sometimes small but important things get lost in the shuffle.
Problem
when displaying a figure produced by Bokeh in a web browser, it is possible to zoom in. Is it possible to zoom only in x-direction, say, but not in y-direction? I am thinking about displaying a time series f(t) where the range for f(t) is small and fixed, but the data is present for long periods of time t. It would be great to be able to focus in on particular moments in the history of the data, while maintaining the whole range of f(t) values. Many thanks, Hans