### Bug summary Autoscaled axis limits don't take into account text labels added by `Axes.pie()`. ### Code for reproduction ```python import matplotlib.pyplot as plt labels = 'Frogs', 'Hogs', 'Dogs', 'Logs' sizes = [15, 30, 45, 10] plt.pie(sizes, labels=labels, labeldistance=1.5, frame=True) plt.show() ``` ### Actual outcome  ### Expected outcome Text labels are taken into account when autoscaling the Axes, and limits are expanded to include the labels. ### Additional information _No response_ ### Operating system _No response_ ### Matplotlib Version 3.6.0.dev1129+ga35921c407 ### Matplotlib Backend _No response_ ### Python version _No response_ ### Jupyter version _No response_ ### Installation git checkout