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.
- package/dist/core/chart/ChartCore.d.ts +2 -1
- package/dist/core/chart/types.d.ts +2 -1
- package/dist/index-DSspeT94.js +2431 -0
- package/dist/index-DSspeT94.js.map +1 -0
- package/dist/{index.core-9MC7hRn3.js → index.core-BLkGsIq1.js} +6 -3
- package/dist/index.core-BLkGsIq1.js.map +1 -0
- package/dist/index.d.ts +2 -2
- package/dist/plugins/forecasting/algorithms.d.ts +6 -0
- package/dist/plugins/forecasting/exports.d.ts +3 -0
- package/dist/plugins/forecasting/index.d.ts +11 -0
- package/dist/plugins/forecasting/types.d.ts +88 -0
- package/dist/plugins/index.d.ts +1 -0
- package/dist/plugins/tools/tooltip/templates/AnnotationTemplate.d.ts +1 -1
- package/dist/plugins/tools/tooltip/templates/CrosshairTemplate.d.ts +10 -1
- package/dist/plugins/tools/tooltip/templates/DefaultTemplate.d.ts +1 -1
- package/dist/plugins/tools/tooltip/templates/HeatmapTemplate.d.ts +1 -1
- package/dist/plugins/tools/tooltip/templates/MinimalTemplate.d.ts +1 -1
- package/dist/plugins/tools/tooltip/templates/RangeTemplate.d.ts +1 -1
- package/dist/plugins/tools/tooltip/templates/ScientificTemplate.d.ts +1 -1
- package/dist/plugins/tools/tooltip/types.d.ts +1 -1
- package/dist/plugins/tools.js +1 -1
- package/dist/scichart-engine.full.js +2427 -2209
- package/dist/scichart-engine.full.js.map +1 -1
- package/dist/scichart-engine.js +1 -1
- package/package.json +5 -1
- package/dist/index-Btz_voey.js +0 -2403
- package/dist/index-Btz_voey.js.map +0 -1
- package/dist/index.core-9MC7hRn3.js.map +0 -1
|
@@ -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:
|
|
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
|
}
|