hello, i have aproblem, im triying to make sharex to make screenshoots in JPG format, i changed the settings in Task Settings > Image > Image format, but its still captuting it as PNG, any way to change it to jpg ? thanks
The web documentation for matplotlib.axes.Axes.sharex state that
Axes.sharex(ax) "is equivalent to passing sharex=ax when
constructing the axes"
I found it's not really true, at least in interactive mode.
When we use add_axes(..., sharex=...), the Axis is shared and the
xlims and ticks are also shared.
If we use Axes.sharex=ax the xlims and xticks are not shared.
Maybe there's a purpose for the discrepancy, but I can't
understand it.
Comments please!
PS: tested with mpl3.3.4 and python3.8
In case subplots=True, share x axis and set some x axis labels toinvisible; defaults to True if ax is None otherwise False if an axis passed in; Be aware, that passing in both an ax and sharex=Truewill alter all x axis labels for all subplots in a figure!
df19127ead