
We recommend you to follow these instructions, as they are faster and more direct than the ones we have posted on this blog.

Note 2: In the same comment the author tells us a simpler way to turn off the watermarks that were inserted by the program in the images. Note 1: Thanks to a comment posted by Jaex, who is the author of this software, we have known that in the latest version of the program the watermark option is not turned on by default. It certainly offers great functionality and allows us to take screenshots in a simple way and quickly. ShareX is free software that allows us to make screenshots in Windows. The other answer has code for dealing with a list of axes: axes.get_shared_x_axes().How to delete ShareX watermark Updated on Febru8:54:48 PM How-To # ax2.autoscale() # call autoscale if needed In contrast to the sharing at creation time, you will have to set the xticklabels off manually for one of the axes (in case that is wanted).

Using ax1.get_shared_x_axes().join(ax1, ax2)Ĭreates a link between the two axes, ax1 and ax2. However if for any reason, you need to share axes after they have been created (actually, using a different library which creates some subplots, like here might be a reason), there would still be a solution: Sharing the axes after they have been created should therefore not be necessary. Or fig, (ax1, ax2) = plt.subplots(nrows=2, sharex=True) The usual way to share axes is to create the shared properties at creation.
