How brokenaxes works and how to customize it
masterThe brokenaxes object is a high-level abstraction that manages several smaller matplotlib Axes objects.
bax.axs: A list containing the individualAxesobjects created for each range defined inxlimsandylims. To perform advanced customizations (like specific date formatting), iterate over this list and modify the axes directly.bax.big_ax: A large, invisibleAxesobject that spans the entire region occupied by the broken axes. This is used to render labels (likeset_xlabel) that should span the whole plot rather than a single segment.bax.diag_handles: A list of the diagonal lines used to indicate breaks. You can remove or manipulate these manually if needed.