Skip to content
EliteChart

AnyPlugin

Documentation


Documentation / @elitechart/core / AnyPlugin

code
type AnyPlugin = 
  | IndicatorPlugin
  | OverlayPlugin
  | DrawingPlugin;

Defined in: plugin/types.ts:174

Union of all supported plugin shapes — accepted by chart.registerPlugin(...).

Example

code
const p: AnyPlugin = sma20Plugin;
chart.registerPlugin(p);