I have a large dataset of scattered x,y,z coordinates. I am trying to use ListPointPlot3D to identify outliers in 3D. This involves generating a plot and then rotating it to visualise the 'data cloud' and then trying to pick individual triples of interest. Here is an example of my data:

Using the example from the Document Center (for everyone else's benefit):
ListPointPlot3D[
Table[Sin[i] Cos[j], {i, -5, 5, .25}, {j, -5, 5, .25}],
ColorFunction -> "Rainbow"]


When the graphic is rotated (using a mouse) the cell size changes which causes the whole notebook to re-adjust when the mouse is released making it hard to stay focussed on a particular part of the graphic. Is it possible to prevent the cell size from changing when a 3D graphic is rotated?
SphericalRegion -> True– xslittlegrass May 16 '13 at 00:57ImagePadding -> 15or some other value, in addition toSphericalRegion -> True. (Without this, the changing axes labels can cause the image to shift.) – Michael E2 May 16 '13 at 01:29