I have created to datashader plots with holoviews:
datashade(hv.Points(df[
    [
        'PS Engine-% Load', 
        'PS Engine-Fuel Rate',
    ]
])) + datashade(hv.Points(df[
    [
        'SB Engine-% Load', 
        'SB Engine-Fuel Rate',
    ]
]))
Both graphs are plotted fine, now I want to link the ranges of the axis so when I zoom in one graph the other graph is also zoomed in the same way. From what I understand normally axis are linked when the source values are the same. In this case the sources for both the X and Y axis are different (note the PS and SB values) but the ranges are the same. How can I link these axis?

