scichart-engine 1.6.2 → 1.7.1
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/series/Series.d.ts +4 -2
- package/dist/core/series/SeriesBounds.d.ts +2 -2
- package/dist/{index.core-Crr0-eUV.js → index.core-D8oB0ZkY.js} +855 -781
- package/dist/index.core-D8oB0ZkY.js.map +1 -0
- package/dist/index.d.ts +1 -1
- package/dist/plugins/anomaly-detection/algorithms.d.ts +38 -0
- package/dist/plugins/anomaly-detection/index.d.ts +16 -0
- package/dist/plugins/anomaly-detection/types.d.ts +57 -0
- package/dist/plugins/context-menu/index.d.ts +12 -0
- package/dist/plugins/context-menu/renderer.d.ts +43 -0
- package/dist/plugins/context-menu/types.d.ts +202 -0
- package/dist/plugins/context-menu.d.ts +3 -0
- package/dist/plugins/context-menu.js +621 -0
- package/dist/plugins/context-menu.js.map +1 -0
- package/dist/plugins/data-export/formatters.d.ts +34 -0
- package/dist/plugins/data-export/index.d.ts +15 -0
- package/dist/plugins/data-export/types.d.ts +166 -0
- package/dist/plugins/data-export.d.ts +3 -0
- package/dist/plugins/data-export.js +463 -0
- package/dist/plugins/data-export.js.map +1 -0
- package/dist/plugins/index.d.ts +3 -0
- package/dist/renderer/PolarRenderer.d.ts +64 -0
- package/dist/renderer/index.d.ts +1 -0
- package/dist/scichart-engine.full.js +2 -2
- package/dist/scichart-engine.js +1 -1
- package/dist/types.d.ts +39 -1
- package/package.json +9 -1
- package/dist/index.core-Crr0-eUV.js.map +0 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { SeriesOptions, SeriesData, SeriesStyle, SeriesUpdateData, Bounds, SeriesType, HeatmapOptions, HeatmapData, HeatmapStyle } from '../../types';
|
|
1
|
+
import { SeriesOptions, SeriesData, SeriesStyle, SeriesUpdateData, Bounds, SeriesType, HeatmapOptions, HeatmapData, HeatmapStyle, PolarOptions, PolarData } from '../../types';
|
|
2
2
|
|
|
3
3
|
export declare class Series {
|
|
4
4
|
private id;
|
|
@@ -15,13 +15,14 @@ export declare class Series {
|
|
|
15
15
|
bearishCount: number;
|
|
16
16
|
private heatmapData?;
|
|
17
17
|
private heatmapStyle?;
|
|
18
|
+
private polarData?;
|
|
18
19
|
private lastAppendCount;
|
|
19
20
|
private cachedBounds;
|
|
20
21
|
private boundsNeedsUpdate;
|
|
21
22
|
private _needsBufferUpdate;
|
|
22
23
|
private smoothedData;
|
|
23
24
|
private smoothingNeedsUpdate;
|
|
24
|
-
constructor(options: SeriesOptions | HeatmapOptions);
|
|
25
|
+
constructor(options: SeriesOptions | HeatmapOptions | PolarOptions);
|
|
25
26
|
getId: () => string;
|
|
26
27
|
getName: () => string;
|
|
27
28
|
getType: () => SeriesType;
|
|
@@ -33,6 +34,7 @@ export declare class Series {
|
|
|
33
34
|
getStyle: () => SeriesStyle;
|
|
34
35
|
getHeatmapData: () => HeatmapData | undefined;
|
|
35
36
|
getHeatmapStyle: () => HeatmapStyle | undefined;
|
|
37
|
+
getPolarData: () => PolarData | undefined;
|
|
36
38
|
getCycle: () => number | undefined;
|
|
37
39
|
getPointCount: () => number;
|
|
38
40
|
getLastAppendCount: () => number;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { SeriesData, Bounds, SeriesType, HeatmapData } from '../../types';
|
|
1
|
+
import { SeriesData, Bounds, SeriesType, HeatmapData, PolarData } from '../../types';
|
|
2
2
|
|
|
3
|
-
export declare function calculateSeriesBounds(type: SeriesType, data: SeriesData, heatmapData?: HeatmapData): Bounds;
|
|
3
|
+
export declare function calculateSeriesBounds(type: SeriesType, data: SeriesData, heatmapData?: HeatmapData, polarData?: PolarData): Bounds;
|