MCPcopy
hub / github.com/TargetProcess/tauCharts / Plot

Class Plot

types/index.d.ts:144–161  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

142}
143
144declare class Plot implements Emitter {
145 addHandler(callbacks: EventHandlerMap, context?: any): void;
146 removeHandler(callbacks: EventHandlerMap, context?: any): void;
147 on(name: string, callback: EventCallback, context?: any): EventHandlerMap;
148 fire(name: string, data: any): void;
149 destroy(): void;
150
151 constructor(config: ChartSpec);
152
153 renderTo(targetOrSelector: Element | string, size?: PlotSize): void;
154 getSVG(): SVGSVGElement;
155 addFilter(filter: any): number;
156 removeFilter(id: number): this;
157 refresh(): void;
158 updateConfig(config: ChartSpec): void;
159 resize(size?: PlotSize): void;
160 getLayout(): PlotLayout;
161}
162
163declare class Chart extends Plot {
164 constructor(config: ChartSpec);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected