You mean that this is missing?

If you run this script and hover over the bubble plot, is that still missing?
Names Default To Here(1);
dt = Open("$SAMPLE_DATA/PopAgeGroup.jmp");
obj = dt << Bubble Plot(X(:"Portion 0-19"n), Y(:"Portion60+"n), Sizes(:Pop), ID(:Country));
You can run the script by going to File > New > JSL Script. This will open new script window, then copy and paste that script there and press the Run icon. It should generate bubble plot for you
-Jarmo