scichart 3.2.538 → 3.2.543
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/IPaletteProvider.d.ts +1 -0
- package/Charting/Visuals/RenderableSeries/DrawingProviders/BaseSeriesDrawingProvider.js +3 -2
- package/Core/BuildStamp.d.ts +1 -1
- package/Core/BuildStamp.js +2 -2
- package/README.md +17 -8
- package/_wasm/scichart.browser.js +1 -1
- package/_wasm/scichart2d.wasm +0 -0
- package/_wasm/scichart3d.wasm +0 -0
- package/index.dev.js +6 -5
- package/index.min.js +1 -1
- package/package.json +1 -1
|
@@ -28,6 +28,7 @@ export interface IPaletteProvider {
|
|
|
28
28
|
/**
|
|
29
29
|
* Called once before the per-vertex loop starts.
|
|
30
30
|
* @Returns true if paletting should be forced to run. If this exists and returns false, the existing paletting state is reused if possible.
|
|
31
|
+
* If this does NOT exist, the palette will be recalculated on every render. This default will change in v4.
|
|
31
32
|
* Use this to force the palette to be recalculated if some external parameter to it changes.
|
|
32
33
|
*/
|
|
33
34
|
shouldUpdatePalette?(): boolean;
|
|
@@ -75,7 +75,7 @@ var BaseSeriesDrawingProvider = /** @class */ (function (_super) {
|
|
|
75
75
|
var xCount = xValues.size();
|
|
76
76
|
var count = Math.min(pointSeries ? pointSeries.xValues.size() : xCount, xCount);
|
|
77
77
|
var startIndex = 0;
|
|
78
|
-
if (shouldClip && !(pointSeries === null || pointSeries === void 0 ? void 0 : pointSeries.resampled) && ((_c = renderPassData === null || renderPassData === void 0 ? void 0 : renderPassData.indexRange) === null || _c === void 0 ? void 0 : _c.diff)
|
|
78
|
+
if (shouldClip && !(pointSeries === null || pointSeries === void 0 ? void 0 : pointSeries.resampled) && ((_c = renderPassData === null || renderPassData === void 0 ? void 0 : renderPassData.indexRange) === null || _c === void 0 ? void 0 : _c.diff) >= 0) {
|
|
79
79
|
if (renderPassData.indexRange.diff + 1 < count) {
|
|
80
80
|
startIndex = renderPassData.indexRange.min;
|
|
81
81
|
}
|
|
@@ -356,7 +356,8 @@ var BaseSeriesDrawingProvider = /** @class */ (function (_super) {
|
|
|
356
356
|
this.palettingState.paletteStartIndex = startIndex - this.palettingState.lastStartIndex;
|
|
357
357
|
}
|
|
358
358
|
}
|
|
359
|
-
|
|
359
|
+
// Default to always update for back compatability
|
|
360
|
+
if (!paletteProvider.shouldUpdatePalette || paletteProvider.shouldUpdatePalette()) {
|
|
360
361
|
this.palettingState.requiresUpdate = true;
|
|
361
362
|
}
|
|
362
363
|
};
|
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.543";
|
|
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-12-
|
|
4
|
+
var buildStamp = "2023-12-21T00: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.543";
|
|
8
8
|
var checkBuildStamp = function (wasmContext) {
|
|
9
9
|
if (result !== undefined)
|
|
10
10
|
return result;
|
package/README.md
CHANGED
|
@@ -4,8 +4,15 @@
|
|
|
4
4
|
>
|
|
5
5
|
> Find out what's new in every Major and Minor release at the [Change Log here](https://www.scichart.com/changelog/scichart-js/)
|
|
6
6
|
|
|
7
|
-
|
|
8
|
-
|
|
7
|
+
SciChart.js is a High Performance [JavaScript Chart library](https://www.scichart.com/javascript-chart-features). Leveraging WebGL and WebAssembly to achieve incredible big-data and real-time performance.
|
|
8
|
+
Fast and able to draw millions of datapoints in realtime, our charts will never cause your app to slow down again!
|
|
9
|
+
|
|
10
|
+
## Useful Links
|
|
11
|
+
|
|
12
|
+
- Learn why we propose SciChart as the [Best JavaScript Chart Library in 2024](https://www.scichart.com/blog/the-best-javascript-chart-10-reasons/) for Big-Data, complex enterprise apps.
|
|
13
|
+
- Read performance test results showing SciChart beating Chart.js, HighCharts, Plotly by a wide margin in a [JavaScript Chart Performance Comparison](https://www.scichart.com/blog/scichart-is-the-fastest-js-chart-library-available-and-why-that-matters-in-todays-world/)
|
|
14
|
+
- Learn the features and key differences of SciChart.js [JS Charts](https://www.scichart.com/javascript-chart-features) library.
|
|
15
|
+
- Browse the demos of [JavaScript Charts](https://demo.scichart.com) and [JavaScript 3D Charts](https://demo.scichart.com) in our interactive React showcase.
|
|
9
16
|
|
|
10
17
|
> SciChart has an extremely configurable and extensible API and is
|
|
11
18
|
> **perfect for scientific, financial, medical, engineering and enterprise applications**,
|
|
@@ -22,18 +29,19 @@ SciChart.JS v3.2 is released! Check out
|
|
|
22
29
|
|
|
23
30
|
## License
|
|
24
31
|
|
|
25
|
-
> SciChart.js is commercial software with a free
|
|
32
|
+
> SciChart.js is commercial software which ships with a free community edition for personal, non-commercial, educational or blogger/tutorial use.
|
|
26
33
|
>
|
|
27
34
|
> **Licensing Links**
|
|
28
35
|
>
|
|
29
|
-
> - [
|
|
30
|
-
> - [
|
|
36
|
+
> - [Free Community Licensing FAQs](https://www.scichart.com/community-licensing/)
|
|
37
|
+
> - [Read about our **commercial license terms** here](https://www.scichart.com/scichart-eula)
|
|
38
|
+
> - [**Get Started** by following steps here](https://scichart.com/getting-started/scichart-javascript)
|
|
31
39
|
> - [**Purchase commercial licenses** here](https://store.scichart.com)
|
|
32
|
-
> - Academic usage, universities and schools qualify for a free license. Read more about this [here](https://www.scichart.com/educational-discount-programme).
|
|
40
|
+
> - Academic usage, universities and schools qualify for a free non-watermarked license. Read more about this [here](https://www.scichart.com/educational-discount-programme).
|
|
33
41
|
|
|
34
42
|
## Demo Application
|
|
35
43
|
|
|
36
|
-
- We've published
|
|
44
|
+
- We've published over 100 [JavaScript Chart Demos](https://demo.scichart.com) with ~100 examples you can try in browser.
|
|
37
45
|
- You can clone the repo for the demo app at Github: [github.com/abtsoftware/scichart.js.examples](https://github.com/abtsoftware/scichart.js.examples)
|
|
38
46
|
- Or, checkout our boilerplates for various popular Js frameworks:
|
|
39
47
|
- [React](https://github.com/ABTSoftware/SciChart.JS.Examples/tree/master/Sandbox/demo-react-scichart) + SciChart boilerplate
|
|
@@ -47,7 +55,7 @@ SciChart.JS v3.2 is released! Check out
|
|
|
47
55
|
|
|
48
56
|
> We've prepared a short [Getting Started guide here](https://scichart.com/getting-started/scichart-javascript).
|
|
49
57
|
>
|
|
50
|
-
> This will walk you through the entire process of starting
|
|
58
|
+
> This will walk you through the entire process of starting in your favourite framework and show you where tutorials and documentation are and examples.
|
|
51
59
|
|
|
52
60
|
## Useful Links
|
|
53
61
|
|
|
@@ -230,5 +238,6 @@ Check out what's new in SciChart.js at the below pages:
|
|
|
230
238
|
- [What's New in SciChart.js v2.1](https://www.scichart.com/documentation/js/current/WhatsNewInSciChart2_1.html)
|
|
231
239
|
- [What's New in SciChart.js v2.2](https://www.scichart.com/documentation/js/current/What's%20New%20in%20SciChart.js%20SDK%20v2.2.html)
|
|
232
240
|
- [What's New in SciChart.js v3.0](https://www.scichart.com/scichart-js-v3-0-released)
|
|
241
|
+
- [ChangeLog (v3 onwards)](https://www.scichart.com/changelog/scichart-js/)
|
|
233
242
|
|
|
234
243
|
We release often and if you want to report a bug, request a feature or give general feedback [contact us](https://scichart.com/contact-us)!
|