scichart-engine 1.9.1 → 1.10.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -84,6 +84,7 @@ export declare class ChartImpl implements Chart {
84
84
  get themeEditor(): any;
85
85
  get sync(): any;
86
86
  get brokenAxis(): any;
87
+ get forecasting(): any;
87
88
  constructor(options: ChartOptions);
88
89
  /**
89
90
  * Start the chart initialization (called by queue system)
@@ -299,7 +300,7 @@ export declare class ChartImpl implements Chart {
299
300
  * Load state from URL hash
300
301
  */
301
302
  fromUrlHash(hash: string, compressed?: boolean): void;
302
- use(plugin: import('../../plugins').ChartPlugin): void;
303
+ use(plugin: any): Promise<void>;
303
304
  resize(): void;
304
305
  requestRender(): void;
305
306
  requestOverlayRender(): void;
@@ -57,6 +57,7 @@ export interface Chart {
57
57
  readonly themeEditor: any;
58
58
  readonly sync: any;
59
59
  readonly brokenAxis: any;
60
+ readonly forecasting: any;
60
61
  addAnnotation(annotation: Annotation): string;
61
62
  removeAnnotation(id: string): boolean;
62
63
  updateAnnotation(id: string, updates: Partial<Annotation>): void;
@@ -161,7 +162,7 @@ export interface Chart {
161
162
  setXScale(scale: any): void;
162
163
  setYScale(yAxisId: string, scale: any): void;
163
164
  /** Use a plugin */
164
- use(plugin: ChartPlugin): void;
165
+ use(plugin: ChartPlugin | any): Promise<void>;
165
166
  /** Destroy the chart and cleanup resources */
166
167
  destroy(): void;
167
168
  }