After resizing bins, "re-size" the range once (it should start auto-scaling). That seems to work for me in JMP16.
Names Default To Here(1);
dt = Open("$SAMPLE_DATA/Big Class.jmp");
gb = dt << Graph Builder(
Variables(X(:name), Y(:height)),
Elements(Points(X, Y, Legend(295))),
Local Data Filter(
Show Modes(1),
Add Filter(
columns(:weight),
Where(:weight >= 93.12 & :weight <= 115.88),
Display(:weight, NBins(5))
),
Animation(Animate Column(:weight))
)
);
Maybe some sort of "Lock Range" or similar could be useful feature when using animations? Or maybe even in general for filters.
Other option could be to create Nominal/ordinal column and use that for the local data filter.
-Jarmo