LegendConfig#

class pyopenms_viz._config.LegendConfig(*, loc: str = 'right', orientation: str = 'vertical', title: str = 'Legend', fontsize: int = 10, show: bool = True, onClick: Literal['hide', 'mute'] = 'mute', bbox_to_anchor: Tuple[float, float] = (1.2, 0.5))#

Bases: BaseConfig

Configuration for the legend in a plot.

Parameters:
  • loc (str) – Location of the legend. Default is “right”.

  • orientation (str) – Orientation of the legend. Default is “vertical”.

  • title (str) – Title of the legend. Default is “Legend”.

  • fontsize (int) – Font size of the legend text. Default is 10.

  • show (bool) – Whether to show the legend. Default is True.

  • onClick (Literal["hide", "mute"]) – Action on legend click. Only valid for Bokeh. Default is “mute”.

  • bbox_to_anchor (Tuple[float, float]) – Fine control for legend positioning in Matplotlib. Default is (1.2, 0.5).

Returns:

An instance of LegendConfig.

Return type:

LegendConfig

__eq__(other)#

Return self==value.

__hash__ = None#
__init__(*, loc: str = 'right', orientation: str = 'vertical', title: str = 'Legend', fontsize: int = 10, show: bool = True, onClick: Literal['hide', 'mute'] = 'mute', bbox_to_anchor: Tuple[float, float] = (1.2, 0.5)) None#
__repr__()#

Return repr(self).

static _matplotlibLegendLocationMapper(loc)#

Maps the legend location to the matplotlib equivalent

classmethod from_dict(legend_dict: Dict[str, Any]) LegendConfig#

Convert a dictionary to a LegendConfig instance.

Args: legend_dict (Dict[str, Any]): Dictionary containing legend configuration.

Returns: LegendConfig: An instance of LegendConfig with the specified settings.