@@ -432,6 +432,21 @@ Example
432432 fig.autofmt_xdate(bottom=0.2, rotation=30, ha='right', which='minor')
433433
434434
435+ New Figure Parameter for subplot2grid
436+ -------------------------------------
437+
438+ A ``fig `` parameter now exists for the function
439+ :func: `~matplotlib.pyplot.subplot2grid `. This allows a user to specify the
440+ figure where the subplots will be created. If ``fig `` is ``None `` (default)
441+ then the method will use the current figure retrieved by
442+ :func: `~matplotlib.pyplot.gcf `.
443+
444+ Example
445+ ~~~~~~~
446+ ::
447+
448+ subplot2grid(shape, loc, rowspan=1, colspan=1, fig=myfig)
449+
435450
436451
437452Internals
@@ -498,21 +513,6 @@ Pending
498513
499514
500515
501- New Figure Parameter for subplot2grid
502- -------------------------------------
503-
504- A ``fig `` parameter now exists for the function
505- :func: `~matplotlib.pyplot.subplot2grid `. This allows a user to specify the
506- figure where the subplots will be created. If ``fig `` is ``None `` (default)
507- then the method will use the current figure retrieved by
508- :func: `~matplotlib.pyplot.gcf `.
509-
510- Example
511- ~~~~~~~
512- ::
513-
514- subplot2grid(shape, loc, rowspan=1, colspan=1, fig=myfig)
515-
516516
517517Interpolation in fill_betweenx
518518------------------------------
0 commit comments