scichart 3.0.280 → 3.0.284
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/Builder/chartBuilder.d.ts +7 -7
- package/Charting/LayoutManager/BaseCenteredAxisLayoutStrategy.d.ts +1 -1
- package/Charting/LayoutManager/CentralAxesLayoutManager.d.ts +1 -1
- package/Charting/Visuals/Axis/AxisBase2D.d.ts +1 -1
- package/Charting/Visuals/Axis/LogarithmicAxis.d.ts +2 -2
- package/Charting/Visuals/PointMarkers/SpritePointMarker.d.ts +1 -1
- package/Charting/Visuals/RenderableSeries/BaseBandRenderableSeries.d.ts +1 -1
- package/Charting/Visuals/RenderableSeries/BaseHeatmapRenderableSeries.d.ts +1 -1
- package/Charting/Visuals/RenderableSeries/BaseLineRenderableSeries.d.ts +1 -1
- package/Charting/Visuals/RenderableSeries/BaseMountainRenderableSeries.d.ts +1 -1
- package/Charting/Visuals/RenderableSeries/DataLabels/BandSeriesDataLabelProvider.d.ts +1 -1
- package/Charting/Visuals/RenderableSeries/DataLabels/ColumnSeriesDataLabelProvider.d.ts +1 -1
- package/Charting/Visuals/RenderableSeries/DataLabels/ContoursDataLabelProvider.d.ts +1 -1
- package/Charting/Visuals/RenderableSeries/DataLabels/DataLabelProvider.d.ts +1 -1
- package/Charting/Visuals/RenderableSeries/DataLabels/DataLabelState.d.ts +1 -1
- package/Charting/Visuals/RenderableSeries/DataLabels/HeatMapDataLabelProvider.d.ts +1 -1
- package/Charting/Visuals/RenderableSeries/DataLabels/LineSeriesDataLabelProvider.d.ts +1 -1
- package/Charting/Visuals/RenderableSeries/FastCandlestickRenderableSeries.d.ts +1 -1
- package/Charting/Visuals/RenderableSeries/FastColumnRenderableSeries.d.ts +1 -1
- package/Charting/Visuals/RenderableSeries/FastErrorBarsRenderableSeries.d.ts +1 -1
- package/Charting/Visuals/RenderableSeries/FastImpulseRenderableSeries.d.ts +1 -1
- package/Charting/Visuals/RenderableSeries/FastOhlcRenderableSeries.d.ts +1 -1
- package/Charting/Visuals/RenderableSeries/SplineBandRenderableSeries.d.ts +1 -1
- package/Charting/Visuals/RenderableSeries/SplineLineRenderableSeries.d.ts +1 -1
- package/Charting/Visuals/RenderableSeries/SplineMountainRenderableSeries.d.ts +1 -1
- package/Charting/Visuals/RenderableSeries/StackedColumnRenderableSeries.d.ts +1 -1
- package/Charting/Visuals/RenderableSeries/UniformContoursRenderableSeries.d.ts +1 -1
- package/Charting/Visuals/SciChartSurface.d.ts +2 -1
- package/Charting3D/Visuals/Axis/NumericAxis3D.d.ts +1 -1
- package/Charting3D/Visuals/SciChart3DSurface.d.ts +2 -1
- package/Core/BuildStamp.d.ts +1 -1
- package/Core/BuildStamp.js +2 -2
- package/README.md +8 -2
- package/_wasm/scichart.browser.js +1 -1
- package/_wasm/scichart2d.js +7 -7
- package/_wasm/scichart2d.wasm +0 -0
- package/_wasm/scichart3d.js +1 -1
- package/_wasm/scichart3d.wasm +0 -0
- package/index.d.ts +958 -0
- package/index.js +1298 -2
- package/index.min.js +1 -0
- package/package.json +1 -1
|
@@ -50,19 +50,19 @@ export declare const chartBuilder: {
|
|
|
50
50
|
/** @inheritdoc */
|
|
51
51
|
configureChart: (sciChartSurface: SciChartSurfaceBase, wasmContext: TSciChart, definition: string | TSurfaceDefinition) => void;
|
|
52
52
|
/** @inheritdoc */
|
|
53
|
-
buildSeries: (wasmContext: TSciChart, definition: import("./buildSeries").TSeriesDefinition | import("./buildSeries").TSeriesDefinition[], sharedData?: import("./buildDataSeries").TSharedDataDefinition) => import("
|
|
53
|
+
buildSeries: (wasmContext: TSciChart, definition: import("./buildSeries").TSeriesDefinition | import("./buildSeries").TSeriesDefinition[], sharedData?: import("./buildDataSeries").TSharedDataDefinition) => import("..").IRenderableSeries[];
|
|
54
54
|
/** @inheritdoc */
|
|
55
|
-
buildDataSeries: (wasmContext: TSciChart, seriesDefinition: import("./buildSeries").TSeriesDefinition, sharedData?: import("./buildDataSeries").TSharedDataDefinition) => import("
|
|
55
|
+
buildDataSeries: (wasmContext: TSciChart, seriesDefinition: import("./buildSeries").TSeriesDefinition, sharedData?: import("./buildDataSeries").TSharedDataDefinition) => import("..").IDataSeries;
|
|
56
56
|
/** @inheritdoc */
|
|
57
|
-
buildModifiers: (definition: import("./buildModifiers").TModifierDefinition | import("./buildModifiers").TModifierDefinition[]) => import("
|
|
57
|
+
buildModifiers: (definition: import("./buildModifiers").TModifierDefinition | import("./buildModifiers").TModifierDefinition[]) => import("..").ChartModifierBase2D[];
|
|
58
58
|
/** @inheritdoc */
|
|
59
|
-
buildAxes: (wasmContext: TSciChart, definition: import("./buildAxis").TAxisDefinition | import("./buildAxis").TAxisDefinition[]) => import("
|
|
59
|
+
buildAxes: (wasmContext: TSciChart, definition: import("./buildAxis").TAxisDefinition | import("./buildAxis").TAxisDefinition[]) => import("..").AxisBase2D[];
|
|
60
60
|
/** @inheritdoc */
|
|
61
61
|
buildAnnotations: (definition: import("./buildAnnotations").TAnnotationDefinition | import("./buildAnnotations").TAnnotationDefinition[]) => any[];
|
|
62
62
|
/** @inheritdoc */
|
|
63
|
-
registerType: <T extends object>(baseType: import("
|
|
63
|
+
registerType: <T extends object>(baseType: import("..").EBaseType, type: string, constructor: (options?: any) => T, overWrite?: boolean) => void;
|
|
64
64
|
/** @inheritdoc */
|
|
65
|
-
registerWasmType: <T_1 extends object>(baseType: import("
|
|
65
|
+
registerWasmType: <T_1 extends object>(baseType: import("..").EBaseType, type: string, constructor: (wasmContext: TSciChart | TSciChart3D, options?: any) => T_1, overWrite?: boolean) => void;
|
|
66
66
|
/** @inheritdoc */
|
|
67
|
-
registerFunction: <T_2 extends Function>(baseType: import("
|
|
67
|
+
registerFunction: <T_2 extends Function>(baseType: import("..").EBaseType, type: string, constructor: T_2, overWrite?: boolean) => void;
|
|
68
68
|
};
|
|
@@ -68,7 +68,7 @@ export declare abstract class BaseCenteredAxisLayoutStrategy extends BaseAxisLay
|
|
|
68
68
|
*/
|
|
69
69
|
constructor(options?: IInnerAxisLayoutStrategyOptions);
|
|
70
70
|
toJSON(): {
|
|
71
|
-
type: import("
|
|
71
|
+
type: import("../..").ELayoutStrategyType;
|
|
72
72
|
options: Required<Omit<IInnerAxisLayoutStrategyOptions, never>>;
|
|
73
73
|
};
|
|
74
74
|
/**
|
|
@@ -65,7 +65,7 @@ export declare class CentralAxesLayoutManager extends LayoutManager {
|
|
|
65
65
|
* @remarks The axisPosition obeys {@link coordinateMode} which defines whether it is a pixel, data-value or relative coordinate
|
|
66
66
|
*/
|
|
67
67
|
set verticalAxisPosition(value: number);
|
|
68
|
-
toJSON(): import("
|
|
68
|
+
toJSON(): import("../..").TLayoutManagerDefinition;
|
|
69
69
|
/**
|
|
70
70
|
* @summary Notifies subscribers that a property has changed and the chart requires redrawing
|
|
71
71
|
* @description SciChart provides fully reactive components, changing any property or changing data will cause the {@link SciChartSurface} to
|
|
@@ -437,7 +437,7 @@ export declare abstract class AxisBase2D extends AxisCore implements IThemeable
|
|
|
437
437
|
/**
|
|
438
438
|
* @inheritDoc
|
|
439
439
|
*/
|
|
440
|
-
animateVisibleRange(visibleRange: NumberRange, durationMs: number, easingFunction?: TEasingFn, onCompleted?: () => void): import("
|
|
440
|
+
animateVisibleRange(visibleRange: NumberRange, durationMs: number, easingFunction?: TEasingFn, onCompleted?: () => void): import("../../..").IGenericAnimation;
|
|
441
441
|
/**
|
|
442
442
|
* @inheritDoc
|
|
443
443
|
*/
|
|
@@ -96,9 +96,9 @@ export declare class LogarithmicAxis extends AxisBase2D {
|
|
|
96
96
|
/**
|
|
97
97
|
* @inheritdoc
|
|
98
98
|
*/
|
|
99
|
-
animateVisibleRange(visibleRange: NumberRange, durationMs: number, easingFunction?: TEasingFn, onCompleted?: () => void): import("
|
|
99
|
+
animateVisibleRange(visibleRange: NumberRange, durationMs: number, easingFunction?: TEasingFn, onCompleted?: () => void): import("../../..").IGenericAnimation;
|
|
100
100
|
scale(initialRange: NumberRange, delta: number, isMoreThanHalf: boolean): void;
|
|
101
|
-
toJSON(): import("
|
|
101
|
+
toJSON(): import("../../..").TAxisDefinition;
|
|
102
102
|
protected getCurrentCoordinateCalculatorInternal(): CoordinateCalculatorBase;
|
|
103
103
|
protected getMaxXRange(): NumberRange;
|
|
104
104
|
private get logTickProvider();
|
|
@@ -55,5 +55,5 @@ export declare class SpritePointMarker extends BasePointMarker {
|
|
|
55
55
|
*/
|
|
56
56
|
drawSprite(context: CanvasRenderingContext2D, spriteWidth: number, spriteHeight: number, stroke: string, strokeThickness: number, fill: string): void;
|
|
57
57
|
getPointMarkerStyle(): CustomPointMarkerStyle;
|
|
58
|
-
toJSON(): import("
|
|
58
|
+
toJSON(): import("../../..").TPointMarkerDefinition;
|
|
59
59
|
}
|
|
@@ -107,7 +107,7 @@ export declare abstract class BaseBandRenderableSeries extends BaseRenderableSer
|
|
|
107
107
|
/** @inheritDoc */
|
|
108
108
|
toPointSeries(rp?: ResamplingParams): IXyyPointSeries;
|
|
109
109
|
/** @inheritDoc */
|
|
110
|
-
toJSON(excludeData?: boolean): import("
|
|
110
|
+
toJSON(excludeData?: boolean): import("../../..").TSeriesDefinition;
|
|
111
111
|
/** @inheritDoc */
|
|
112
112
|
resolveAutoColors(index: number, maxSeries: number, theme: IThemeProvider): void;
|
|
113
113
|
/** @inheritDoc */
|
|
@@ -118,7 +118,7 @@ export declare abstract class BaseHeatmapRenderableSeries extends BaseRenderable
|
|
|
118
118
|
/** @inheritDoc */
|
|
119
119
|
toPointSeries(resamplingParams?: ResamplingParams): IPointSeries;
|
|
120
120
|
/** @inheritDoc */
|
|
121
|
-
toJSON(excludeData?: boolean): import("
|
|
121
|
+
toJSON(excludeData?: boolean): import("../../..").TSeriesDefinition;
|
|
122
122
|
/**
|
|
123
123
|
* Called when a property changes on {@link HeatmapColorMap}, and notifies the parent {@link SciChartSurface}
|
|
124
124
|
* that a redraw is required.
|
|
@@ -52,7 +52,7 @@ export declare abstract class BaseLineRenderableSeries extends BaseRenderableSer
|
|
|
52
52
|
*/
|
|
53
53
|
set lineType(lineType: ELineType);
|
|
54
54
|
/** @inheritDoc */
|
|
55
|
-
toJSON(excludeData?: boolean): import("
|
|
55
|
+
toJSON(excludeData?: boolean): import("../../..").TSeriesDefinition;
|
|
56
56
|
/**
|
|
57
57
|
* @inheritDoc
|
|
58
58
|
*/
|
|
@@ -76,7 +76,7 @@ export declare abstract class BaseMountainRenderableSeries extends BaseRenderabl
|
|
|
76
76
|
*/
|
|
77
77
|
set strokeDashArray(strokeDashArray: number[]);
|
|
78
78
|
/** @inheritDoc */
|
|
79
|
-
toJSON(excludeData?: boolean): import("
|
|
79
|
+
toJSON(excludeData?: boolean): import("../../..").TSeriesDefinition;
|
|
80
80
|
/** @inheritDoc */
|
|
81
81
|
resolveAutoColors(index: number, maxSeries: number, theme: IThemeProvider): void;
|
|
82
82
|
/**
|
|
@@ -36,7 +36,7 @@ export declare class BandSeriesDataLabelProvider extends LineSeriesDataLabelProv
|
|
|
36
36
|
toJSON(): {
|
|
37
37
|
type: EDataLabelProviderType;
|
|
38
38
|
options: {
|
|
39
|
-
style: import("
|
|
39
|
+
style: import("../../../..").TDataLabelStyle;
|
|
40
40
|
color: string;
|
|
41
41
|
};
|
|
42
42
|
};
|
|
@@ -40,7 +40,7 @@ export declare class ColumnSeriesDataLabelProvider extends DataLabelProvider {
|
|
|
40
40
|
toJSON(): {
|
|
41
41
|
type: EDataLabelProviderType;
|
|
42
42
|
options: {
|
|
43
|
-
style: import("
|
|
43
|
+
style: import("../../../..").TDataLabelStyle;
|
|
44
44
|
color: string;
|
|
45
45
|
};
|
|
46
46
|
};
|
|
@@ -64,7 +64,7 @@ export declare class ContoursDataLabelProvider extends BaseDataLabelProvider {
|
|
|
64
64
|
toJSON(): {
|
|
65
65
|
type: EDataLabelProviderType;
|
|
66
66
|
options: {
|
|
67
|
-
style: import("
|
|
67
|
+
style: import("../../../..").TDataLabelStyle;
|
|
68
68
|
color: string;
|
|
69
69
|
};
|
|
70
70
|
};
|
|
@@ -199,7 +199,7 @@ export declare class DataLabelProvider extends BaseDataLabelProvider {
|
|
|
199
199
|
toJSON(): {
|
|
200
200
|
type: EDataLabelProviderType;
|
|
201
201
|
options: {
|
|
202
|
-
style: import("
|
|
202
|
+
style: import("../../../..").TDataLabelStyle;
|
|
203
203
|
color: string;
|
|
204
204
|
};
|
|
205
205
|
};
|
|
@@ -35,7 +35,7 @@ export declare class DataLabelState {
|
|
|
35
35
|
yCoord(index?: number): number;
|
|
36
36
|
hasNext(index?: number): boolean;
|
|
37
37
|
get lastLabel(): TDataLabel;
|
|
38
|
-
getMetaData(): import("
|
|
38
|
+
getMetaData(): import("../../../..").IPointMetadata;
|
|
39
39
|
get isVerticalChart(): boolean;
|
|
40
40
|
private xCoordInternal;
|
|
41
41
|
private yCoordInternal;
|
|
@@ -56,7 +56,7 @@ export declare class HeatMapDataLabelProvider extends BaseDataLabelProvider {
|
|
|
56
56
|
toJSON(): {
|
|
57
57
|
type: EDataLabelProviderType;
|
|
58
58
|
options: {
|
|
59
|
-
style: import("
|
|
59
|
+
style: import("../../../..").TDataLabelStyle;
|
|
60
60
|
color: string;
|
|
61
61
|
};
|
|
62
62
|
};
|
|
@@ -28,7 +28,7 @@ export declare class LineSeriesDataLabelProvider extends DataLabelProvider {
|
|
|
28
28
|
toJSON(): {
|
|
29
29
|
type: EDataLabelProviderType;
|
|
30
30
|
options: {
|
|
31
|
-
style: import("
|
|
31
|
+
style: import("../../../..").TDataLabelStyle;
|
|
32
32
|
color: string;
|
|
33
33
|
};
|
|
34
34
|
};
|
|
@@ -66,7 +66,7 @@ export declare class FastCandlestickRenderableSeries extends BaseOhlcRenderableS
|
|
|
66
66
|
* Gets or sets the fill when candlestick close is less than open, as an HTML color code
|
|
67
67
|
*/
|
|
68
68
|
set brushDown(htmlColorCode: string);
|
|
69
|
-
toJSON(excludeData?: boolean): import("
|
|
69
|
+
toJSON(excludeData?: boolean): import("../../..").TSeriesDefinition;
|
|
70
70
|
/** @inheritDoc */
|
|
71
71
|
resolveAutoColors(index: number, maxSeries: number, theme: IThemeProvider): void;
|
|
72
72
|
}
|
|
@@ -118,7 +118,7 @@ export declare class FastColumnRenderableSeries extends BaseRenderableSeries {
|
|
|
118
118
|
/** @inheritDoc */
|
|
119
119
|
resolveAutoColors(index: number, maxSeries: number, theme: IThemeProvider): void;
|
|
120
120
|
/** @inheritDoc */
|
|
121
|
-
toJSON(excludeData?: boolean): import("
|
|
121
|
+
toJSON(excludeData?: boolean): import("../../..").TSeriesDefinition;
|
|
122
122
|
/** @inheritDoc */
|
|
123
123
|
protected newHitTestProvider(): IHitTestProvider;
|
|
124
124
|
}
|
|
@@ -175,7 +175,7 @@ export declare class FastErrorBarsRenderableSeries extends BaseRenderableSeries
|
|
|
175
175
|
/** @inheritDoc */
|
|
176
176
|
getYRange(xVisibleRange: NumberRange, isXCategoryAxis?: boolean): NumberRange;
|
|
177
177
|
/** @inheritDoc */
|
|
178
|
-
toJSON(excludeData?: boolean): import("
|
|
178
|
+
toJSON(excludeData?: boolean): import("../../..").TSeriesDefinition;
|
|
179
179
|
/** @inheritDoc */
|
|
180
180
|
toPointSeries(rp?: ResamplingParams): IHlcPointSeries;
|
|
181
181
|
/**
|
|
@@ -81,7 +81,7 @@ export declare class FastImpulseRenderableSeries extends FastColumnRenderableSer
|
|
|
81
81
|
*/
|
|
82
82
|
getYRange(xVisibleRange: NumberRange, isXCategoryAxis?: boolean): NumberRange;
|
|
83
83
|
/** @inheritDoc */
|
|
84
|
-
toJSON(excludeData?: boolean): import("
|
|
84
|
+
toJSON(excludeData?: boolean): import("../../..").TSeriesDefinition;
|
|
85
85
|
/** @inheritDoc */
|
|
86
86
|
applyTheme(themeProvider: IThemeProvider): void;
|
|
87
87
|
/** @inheritDoc */
|
|
@@ -32,5 +32,5 @@ export declare class FastOhlcRenderableSeries extends BaseOhlcRenderableSeries {
|
|
|
32
32
|
* @param options optional parameters of type {@link IOhlcRenderableSeriesOptions} applied when constructing the series type
|
|
33
33
|
*/
|
|
34
34
|
constructor(webAssemblyContext: TSciChart, options?: IOhlcRenderableSeriesOptions);
|
|
35
|
-
toJSON(excludeData?: boolean): import("
|
|
35
|
+
toJSON(excludeData?: boolean): import("../../..").TSeriesDefinition;
|
|
36
36
|
}
|
|
@@ -74,7 +74,7 @@ export declare class SplineBandRenderableSeries extends BaseBandRenderableSeries
|
|
|
74
74
|
/** @inheritDoc */
|
|
75
75
|
getYRange(xVisibleRange: NumberRange, isXCategoryAxis?: boolean): NumberRange;
|
|
76
76
|
/** @inheritDoc */
|
|
77
|
-
toJSON(excludeData?: boolean): import("
|
|
77
|
+
toJSON(excludeData?: boolean): import("../../..").TSeriesDefinition;
|
|
78
78
|
/** @inheritDoc */
|
|
79
79
|
protected setAnimationVectors(animation: SeriesAnimation): void;
|
|
80
80
|
/** @inheritDoc */
|
|
@@ -69,7 +69,7 @@ export declare class SplineLineRenderableSeries extends BaseLineRenderableSeries
|
|
|
69
69
|
/** @inheritDoc */
|
|
70
70
|
getYRange(xVisibleRange: NumberRange, isXCategoryAxis?: boolean): NumberRange;
|
|
71
71
|
/** @inheritDoc */
|
|
72
|
-
toJSON(excludeData?: boolean): import("
|
|
72
|
+
toJSON(excludeData?: boolean): import("../../..").TSeriesDefinition;
|
|
73
73
|
/**
|
|
74
74
|
* @param color The color for palette
|
|
75
75
|
* @param palettingState The palleting state
|
|
@@ -71,7 +71,7 @@ export declare class SplineMountainRenderableSeries extends BaseMountainRenderab
|
|
|
71
71
|
/** @inheritDoc */
|
|
72
72
|
getYRange(xVisibleRange: NumberRange, isXCategoryAxis?: boolean): NumberRange;
|
|
73
73
|
/** @inheritDoc */
|
|
74
|
-
toJSON(excludeData?: boolean): import("
|
|
74
|
+
toJSON(excludeData?: boolean): import("../../..").TSeriesDefinition;
|
|
75
75
|
/** @inheritDoc */
|
|
76
76
|
protected setAnimationVectors(animation: SeriesAnimation): void;
|
|
77
77
|
/** @inheritDoc */
|
|
@@ -188,7 +188,7 @@ export declare class StackedColumnRenderableSeries extends BaseStackedRenderable
|
|
|
188
188
|
* {@link StackedColumnCollection} to DIFFERENT values
|
|
189
189
|
*/
|
|
190
190
|
set stackedGroupId(value: string);
|
|
191
|
-
toJSON(excludeData?: boolean): import("
|
|
191
|
+
toJSON(excludeData?: boolean): import("../../..").TSeriesDefinition;
|
|
192
192
|
/** @inheritDoc */
|
|
193
193
|
resolveAutoColors(index: number, maxSeries: number, theme: IThemeProvider): void;
|
|
194
194
|
/** @inheritDoc */
|
|
@@ -116,7 +116,7 @@ export declare class UniformContoursRenderableSeries extends BaseRenderableSerie
|
|
|
116
116
|
/** @inheritDoc */
|
|
117
117
|
toPointSeries(resamplingParams?: ResamplingParams): IPointSeries;
|
|
118
118
|
/** @inheritDoc */
|
|
119
|
-
toJSON(excludeData?: boolean): import("
|
|
119
|
+
toJSON(excludeData?: boolean): import("../../..").TSeriesDefinition;
|
|
120
120
|
/**
|
|
121
121
|
* Called when a property changes on {@link HeatmapColorMap}, and notifies the parent {@link SciChartSurface}
|
|
122
122
|
* that a redraw is required.
|
|
@@ -9,7 +9,7 @@ import { EAutoColorMode } from "../../types/AutoColorMode";
|
|
|
9
9
|
import { Size } from "../../types/Size";
|
|
10
10
|
import { ESvgClippingMode } from "../../types/SvgClippingMode";
|
|
11
11
|
import { TBorder } from "../../types/TBorder";
|
|
12
|
-
import { TSciChart } from "../../types/TSciChart";
|
|
12
|
+
import { TSciChart as TWasmContext } from "../../types/TSciChart";
|
|
13
13
|
import { TSciChartSurfaceCanvases } from "../../types/TSciChartSurfaceCanvases";
|
|
14
14
|
import { EZoomState } from "../../types/ZoomState";
|
|
15
15
|
import { IChartModifierBase } from "../ChartModifiers/ChartModifierBase";
|
|
@@ -28,6 +28,7 @@ import { IRenderableSeries } from "./RenderableSeries/IRenderableSeries";
|
|
|
28
28
|
import { ESurfaceType, SciChartSurfaceBase, TSciChartConfig } from "./SciChartSurfaceBase";
|
|
29
29
|
import { TDpiChangedEventArgs } from "./TextureManager/DpiHelper";
|
|
30
30
|
import { Point } from "../../Core/Point";
|
|
31
|
+
export declare type TSciChart = TWasmContext;
|
|
31
32
|
export declare type TWebAssemblyChart = {
|
|
32
33
|
wasmContext: TSciChart;
|
|
33
34
|
sciChartSurface: SciChartSurface;
|
|
@@ -35,7 +35,7 @@ export declare class NumericAxis3D extends AxisBase3D {
|
|
|
35
35
|
/**
|
|
36
36
|
* @inheritDoc
|
|
37
37
|
*/
|
|
38
|
-
animateVisibleRange(visibleRange: NumberRange, durationMs: number, easingFunction?: TEasingFn, onCompleted?: () => void): import("
|
|
38
|
+
animateVisibleRange(visibleRange: NumberRange, durationMs: number, easingFunction?: TEasingFn, onCompleted?: () => void): import("../../..").IGenericAnimation;
|
|
39
39
|
/**
|
|
40
40
|
* @inheritDoc
|
|
41
41
|
*/
|
|
@@ -5,7 +5,7 @@ import { ESurfaceType, SciChartSurfaceBase, TSciChartConfig } from "../../Charti
|
|
|
5
5
|
import { TDpiChangedEventArgs } from "../../Charting/Visuals/TextureManager/DpiHelper";
|
|
6
6
|
import { IGenericAnimation } from "../../Core/Animations/GenericAnimation";
|
|
7
7
|
import { ObservableArray } from "../../Core/ObservableArray";
|
|
8
|
-
import { SCRTSceneWorld, TSciChart3D } from "../../types/TSciChart3D";
|
|
8
|
+
import { SCRTSceneWorld, TSciChart3D as TWasmContext } from "../../types/TSciChart3D";
|
|
9
9
|
import { TSciChartSurfaceCanvases } from "../../types/TSciChartSurfaceCanvases";
|
|
10
10
|
import { ICameraController } from "../CameraController";
|
|
11
11
|
import { Vector3 } from "../Vector3";
|
|
@@ -14,6 +14,7 @@ import { AxisCubeEntity } from "./Axis/AxisCubeEntity";
|
|
|
14
14
|
import { IRenderableSeries3D } from "./RenderableSeries/BaseRenderableSeries3D";
|
|
15
15
|
import { RootSceneEntity } from "./RootSceneEntity";
|
|
16
16
|
import { ViewportManager3DBase } from "./ViewportManager3DBase";
|
|
17
|
+
export declare type TSciChart3D = TWasmContext;
|
|
17
18
|
export declare type TWebAssemblyChart3D = {
|
|
18
19
|
wasmContext: TSciChart3D;
|
|
19
20
|
sciChart3DSurface: SciChart3DSurface;
|
package/Core/BuildStamp.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { TSciChart } from "../types/TSciChart";
|
|
2
2
|
import { TSciChart3D } from "../types/TSciChart3D";
|
|
3
|
-
export declare const libraryVersion = "3.0.
|
|
3
|
+
export declare const libraryVersion = "3.0.284";
|
|
4
4
|
export declare const checkBuildStamp: (wasmContext: TSciChart | TSciChart3D) => boolean;
|
package/Core/BuildStamp.js
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.checkBuildStamp = exports.libraryVersion = void 0;
|
|
4
|
-
var buildStamp = "2023-
|
|
4
|
+
var buildStamp = "2023-02-02T00:00:00";
|
|
5
5
|
var result;
|
|
6
6
|
// tslint:disable-next-line:no-var-requires
|
|
7
|
-
exports.libraryVersion = "3.0.
|
|
7
|
+
exports.libraryVersion = "3.0.284";
|
|
8
8
|
var checkBuildStamp = function (wasmContext) {
|
|
9
9
|
if (result !== undefined)
|
|
10
10
|
return result;
|
package/README.md
CHANGED
|
@@ -142,8 +142,12 @@ If your environment does not include a bundler like Parcel or Webpack, you can s
|
|
|
142
142
|
1. **Include SciChart.browser.js in your webpage**
|
|
143
143
|
|
|
144
144
|
```html
|
|
145
|
-
<!--
|
|
146
|
-
<script src="https://cdn.jsdelivr.net/npm/scichart
|
|
145
|
+
<!-- Always include latest scichart.js version -->
|
|
146
|
+
<script src="https://cdn.jsdelivr.net/npm/scichart/_wasm/scichart.browser.js" crossorigin="anonymous"></script>
|
|
147
|
+
<!-- or, choose specific version -->
|
|
148
|
+
<script src="https://cdn.jsdelivr.net/npm/scichart@3.0.280/_wasm/scichart.browser.js" crossorigin="anonymous"></script>
|
|
149
|
+
<!-- or, choosing latest version from 3.x -->
|
|
150
|
+
<script src="https://cdn.jsdelivr.net/npm/scichart@3/_wasm/scichart.browser.js" crossorigin="anonymous"></script>
|
|
147
151
|
```
|
|
148
152
|
|
|
149
153
|
2.**Create scichart-example.js file with a simple chart**
|
|
@@ -199,6 +203,8 @@ async function initSciChartProgrammaticApi() {
|
|
|
199
203
|
// See deployment options for WebAssembly at https://www.scichart.com/documentation/js/current/Deploying%20Wasm%20or%20WebAssembly%20and%20Data%20Files%20with%20your%20app.html
|
|
200
204
|
// call useWasmFromCDN once before SciChart.js is initialised to load Wasm files from our CDN
|
|
201
205
|
SciChartSurface.useWasmFromCDN();
|
|
206
|
+
// Also, call & set runtime license key here once before scichart shown
|
|
207
|
+
SciChartSurface.setRuntimeLicenseKey("-- Your license key here --");
|
|
202
208
|
|
|
203
209
|
initSciChartBuilderApi();
|
|
204
210
|
initSciChartProgrammaticApi();
|