scichart 3.2.476 → 3.2.477
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/Model/OhlcDataSeries.js +3 -3
- 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 +6 -6
- package/index.min.js +1 -1
- package/package.json +1 -1
|
@@ -472,9 +472,9 @@ var OhlcDataSeries = /** @class */ (function (_super) {
|
|
|
472
472
|
for (var i = 0; i < dataSize; i++) {
|
|
473
473
|
xValues[i] = this.xValues.get(i);
|
|
474
474
|
openValues[i] = this.openValues.get(i);
|
|
475
|
-
closeValues[i] = this.
|
|
476
|
-
highValues[i] = this.
|
|
477
|
-
lowValues[i] = this.
|
|
475
|
+
closeValues[i] = this.yValues.get(i);
|
|
476
|
+
highValues[i] = this.highValues.get(i);
|
|
477
|
+
lowValues[i] = this.lowValues.get(i);
|
|
478
478
|
}
|
|
479
479
|
}
|
|
480
480
|
var options = {
|
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.477";
|
|
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-09-
|
|
4
|
+
var buildStamp = "2023-09-29T00: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.477";
|
|
8
8
|
var checkBuildStamp = function (wasmContext) {
|
|
9
9
|
if (result !== undefined)
|
|
10
10
|
return result;
|