scichart-engine 1.7.0 → 1.7.2
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/OverlayRenderer.d.ts +4 -0
- 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-CnuU1ey4.js} +885 -759
- package/dist/index.core-CnuU1ey4.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/index.d.ts +1 -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 +1 -1
- package/dist/index.core-Crr0-eUV.js.map +0 -1
|
@@ -19,6 +19,10 @@ export declare class OverlayRenderer {
|
|
|
19
19
|
* Draw the grid
|
|
20
20
|
*/
|
|
21
21
|
drawGrid(plotArea: PlotArea, xScale: Scale, yScale: Scale): void;
|
|
22
|
+
/**
|
|
23
|
+
* Draw polar grid (radial circles and angular spokes)
|
|
24
|
+
*/
|
|
25
|
+
drawPolarGrid(plotArea: PlotArea, xScale: Scale, yScale: Scale, radialDivisions?: number, angularDivisions?: number, angleMode?: 'degrees' | 'radians'): void;
|
|
22
26
|
/**
|
|
23
27
|
* Draw X axis with ticks and labels
|
|
24
28
|
*/
|
|
@@ -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;
|