portfolio_toolkit.plot.plot_base module

class portfolio_toolkit.plot.plot_base.PlotBase(title: str, grid: bool = True, figsize: tuple = (10, 6))[source]

Bases: ABC

Base class for all plot data structures

title: str
grid: bool = True
figsize: tuple = (10, 6)
abstractmethod get_plot_type() str[source]

Return the type of plot

__init__(title: str, grid: bool = True, figsize: tuple = (10, 6)) None