class documentation

Base class for all responsive plots that can push/pull updates to a linked object.

Parameters
link_typethe link type of the plot
Method __init__ Undocumented
Method connect Connects this plot, if necessary.
Method disconnect Disconnects the plot, if necessary.
Method freeze Freezes the plot, replacing it with a static image.
Method reset Resets the plot to its default state.
Method show Shows the plot.
Property is_connected Whether this plot is currently connected.
Property is_disconnected Whether this plot is currently disconnected.
Property is_frozen Whether this plot is currently frozen.
Property link_type The link type between this plot and a connected session.
Property supports_session_updates Whether this plot supports automatic updates in response to session changes.
Method _connect Undocumented
Method _disconnect Undocumented
Method _freeze Undocumented
Method _reopen Undocumented
Method _show Undocumented
Instance Variable _connected Undocumented
Instance Variable _disconnected Undocumented
Instance Variable _frozen Undocumented
Instance Variable _link_type Undocumented

Inherited from Plot:

Method save Saves the plot.
Method _repr_pretty_ Undocumented
def connect(self): (source)

Connects this plot, if necessary.

def disconnect(self): (source)

Disconnects the plot, if necessary.

def freeze(self): (source)

Freezes the plot, replacing it with a static image.

The plot will also be disconnected.

Only applicable in notebook contexts.

def reset(self): (source)

Resets the plot to its default state.

def show(self, **kwargs): (source)

Shows the plot.

The plot will be connected if necessary.

Parameters
**kwargssubclass-specific keyword arguments
@property
is_connected = (source)

Whether this plot is currently connected.

@property
is_disconnected = (source)

Whether this plot is currently disconnected.

Whether this plot is currently frozen.

The link type between this plot and a connected session.

def _show(self, **kwargs): (source)
_connected: bool = (source)

Undocumented

_disconnected: bool = (source)

Undocumented

Undocumented

_link_type = (source)

Undocumented