When I use pgfplots to draw into a 3D axis, the drawn objects outside the axis are sometimes clipped, although I use clip=false. This only happens when I use the TikZ externalization library and I think this is caused by pdflatex cropping the external pdf to the bounding box. For example,
\documentclass[border=2pt]{standalone}
\usepackage{pgfplots}
\pgfplotsset{compat=1.11}
\usetikzlibrary{external}
\tikzexternalize
\begin{document}
\begin{tikzpicture}
\begin{axis}[xmin=-1,xmax=1,
ymin=-1,ymax=1,
zmin=0,zmax=1,
clip=false]
\draw (0,0,0) circle (3);
\end{axis}
\end{tikzpicture}
\end{document}
results in the following external pdf:

However, I want the whole circle to be shown. So, the question is whether there is a way to automatically adjust the bounding box to include all drawn objects.
