Demetris Roumis
Demetris Roumis
Just checking which of my issues are still valid. This is still a valid issue.
Nice examples, @maximlt! Yes, we can work around the wheel zoom limitations with the discrete approach. Regarding which discrete approach: The toolbar approach is cleaner and could be automatic -...
@mattpap is it in scope of your [toolbar customization PR ](https://github.com/bokeh/bokeh/pull/13571) to support one custom tool (e.g. select) impacting the renderers of another tool (e.g. zoom), similar to what Maxime...
@maximlt, another consideration is to ensure that y-axis range scaling remains groupwise for the HoloViews implementation of subcoordinate_y (I don't think that's true for the pure Bokeh versions); the timeseries...
I was getting some test errors when an element didn't have an extents attribute, so I'm skipping when this is the case. I'm assuming hard bounds are irrelevant for such...
I'm also setting bounds to None for cases where the element.extents are identical (e.g. (10.0, 10.0)) to avoid some test errors like: example test error: ``` ____________________ TestPointPlot.test_op_ndoverlay_value _____________________ self...
I disabled hard bounds for one of the UI tests ([test_multi_axis_rangexy](https://github.com/holoviz/holoviews/pull/6056/commits/cff8c93862b212bfee0428e9d7979331c063337e)) in order to have it pass.
Several issues remain. We want it to use the largest of data + padding, xlim/ylim, dimension ranges, but it is not yet achieving that. This also does not seem to...
> We want it to use the largest of data + padding, xlim/ylim, dimension ranges, but it is not yet achieving that. We determined that dimension ranges are a special,...
> This also does not seem to work for y-axis with `subcoordinate_y` plots We determined that the it's best if the y-axis for `subcoordinate_y` plots remain unconstrained in all cases,...