You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The rows and columns keyword arguments to gopen along with the gpos function allows one to create multiple subplot plots on one figure, but there is no built in-way to provide an overall title for the figure, to cover multiple plots.
We should support a simple, native way to add an overall title to the subplots. My suggestion is to allow this by providing a new keyword argument, overall_title or figure_title or similar, with a larger default font size that is configurable by another new keyword argument such as overalltitlefontsize.
Note at present, the only way to get an overall title is to defer to pyplot and use a suptitle (super title I believe this stands for), like so:
which is currently used for the second plot in the 12th documentation recipe as well as multiple new recipes in PR form, so as part of completing this we should update the recipes to use the new cf-plot built-in means to add the overall title.
The text was updated successfully, but these errors were encountered:
The
rows
andcolumns
keyword arguments togopen
along with thegpos
function allows one to create multiple subplot plots on one figure, but there is no built in-way to provide an overall title for the figure, to cover multiple plots.We should support a simple, native way to add an overall title to the subplots. My suggestion is to allow this by providing a new keyword argument,
overall_title
orfigure_title
or similar, with a larger default font size that is configurable by another new keyword argument such asoveralltitlefontsize
.Note at present, the only way to get an overall title is to defer to
pyplot
and use asuptitle
(super title I believe this stands for), like so:which is currently used for the second plot in the 12th documentation recipe as well as multiple new recipes in PR form, so as part of completing this we should update the recipes to use the new cf-plot built-in means to add the overall title.
The text was updated successfully, but these errors were encountered: