Plugin
interface Plugin
An interface for defining a plugin in Mapbox Dash.
A plugin is a modular piece of functionality that can be dynamically added or removed from a Mapbox Dash instance. Plugins can provide a variety of features, such as custom Theming, Styling and integration with third-party services.
Plugins should implement this interface and provide properties for configuration values as needed. These properties can be accessed and modified at runtime through the Mapbox Dash UI or via code.
Plugins should be registered with Mapbox Dash using the install
method of the PluginManager
instance.
See also
PluginManager