Generating an image of atoms with charges from ase gui?

I saw a previous post about this and was just curious if there has been any workaround proposed for creating either a png or matplotlib image of an atoms object with certain labels (e.g. forces, charges) included?

There may not be an automatic way, but if you use plot_atoms() from ase.visualize.plot, you can probably obtain the matplotlib axes object and do any plotting you need on it.

Okay thank you.