HoloMap with different axes

Hello, I am trying to create a HoloMap container to organize a set of histograms. I love how easy it is to generate all the objects using python dictionary compression. However, I have one small problem. All of these histograms’ processed data have different ranges for x and frequency, but the HoloMap by default places them all on the same axis range. Is there a way to make the axes different or to auto zoom to the relevant data range?

Here’s an example of what I’m talking about:


This histogram doesn’t have frequency greater than ~ 2200 nor x greater than ~2000 but the axes extend far beyond that.

Ideally I would like a setting where the axes were either generated separately and not shared, or an autozoom to the correct range for interpretation.

Is there any way I can do this? Thank you so much!

You’ll want to add .opts(framewise=True) which renormalizes the axes for each frame independently.

Trying that now!

PERFECT! That worked. Thanks so much.