graphinglib.MultiFigure.show#
- MultiFigure.show(general_legend: bool = False, legend_loc: str | tuple = 'outside lower center', legend_cols: int = 1) None[source]#
Displays the
MultiFigure.- Parameters:
- general_legendbool
Whether or not to display an overall legend for the
MultiFigurecontaining the labels of everyFigureinside it. Note that enabling this option will disable the individual legends for everySubFigure. Defaults toFalse.- legend_locstr or tuple
The location of the legend in the MultiFigure. Possible placement keywords are: for vertical placement:
{"upper", "center", "lower"}, for horizontal placement:{"left", "center", "right"}. The keyword"outside"can be added to put the legend outside of the axes. Tuple contains floats relative to the plots size;(1, 1)is equivalent to the upper right corner. Defaults to"outside lower center".- legend_colsint
Number of colums in which to arrange the legend items. Defaults to 1.