Pass locator
argument to matplotlib when calling plot.contourf
#4787
Labels
locator
argument to matplotlib when calling plot.contourf
#4787
Is your feature request related to a problem? Please describe.
Everytime I have to do a
contourf
I need to call it frommatplotlib
directly becauselocator
argument is not passed fromxarray.plot.contourf
tomatplotlib
.Describe the solution you'd like
Being
ds
axarray.DataArray
, I want to have the behaviour described here when passinglocator = ticker.LogLocator()
tods.plot.contourf
.Describe alternatives you've considered
I usually have to do
plt.contourf(ds.dim_0,ds.dim_1,ds.values,locator = ticker.LogLocator())
.The text was updated successfully, but these errors were encountered: