scichart 3.2.461 → 3.2.463
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/Charting/Visuals/Axis/AxisCore.d.ts +1 -1
- package/Charting/Visuals/RenderableSeries/BaseRenderableSeries.d.ts +1 -1
- package/Core/BuildStamp.d.ts +1 -1
- package/Core/BuildStamp.js +2 -2
- package/_wasm/scichart.browser.js +1 -1
- package/_wasm/scichart2d.wasm +0 -0
- package/_wasm/scichart3d.wasm +0 -0
- package/index.dev.js +3 -3
- package/index.min.js +1 -1
- package/package.json +1 -1
|
@@ -388,7 +388,7 @@ export declare abstract class AxisCore extends DeletableEntity implements IAxisP
|
|
|
388
388
|
* axis.growBy = new NumberRange(0.1, 0.2);
|
|
389
389
|
* ```
|
|
390
390
|
*/
|
|
391
|
-
get growBy(): NumberRange;
|
|
391
|
+
get growBy(): NumberRange | undefined;
|
|
392
392
|
/**
|
|
393
393
|
* Gets or sets the GrowBy: a padding factor on the axis
|
|
394
394
|
* @description
|
|
@@ -129,7 +129,7 @@ export declare abstract class BaseRenderableSeries extends DeletableEntity imple
|
|
|
129
129
|
/** @inheritDoc */
|
|
130
130
|
set isVisible(isVisible: boolean);
|
|
131
131
|
/** @inheritDoc */
|
|
132
|
-
get pointMarker(): IPointMarker;
|
|
132
|
+
get pointMarker(): IPointMarker | undefined;
|
|
133
133
|
/** @inheritDoc */
|
|
134
134
|
set pointMarker(pointMarker: IPointMarker | undefined);
|
|
135
135
|
/** @inheritDoc */
|
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.2.
|
|
3
|
+
export declare const libraryVersion = "3.2.463";
|
|
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-09-05T00:00:00";
|
|
5
5
|
var result;
|
|
6
6
|
// tslint:disable-next-line:no-var-requires
|
|
7
|
-
exports.libraryVersion = "3.2.
|
|
7
|
+
exports.libraryVersion = "3.2.463";
|
|
8
8
|
var checkBuildStamp = function (wasmContext) {
|
|
9
9
|
if (result !== undefined)
|
|
10
10
|
return result;
|