scichart 2.0.2127 → 2.0.2146
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/buildSeries.d.ts +1 -1
- package/Charting/ChartModifiers/LegendModifier.js +1 -0
- package/Charting/ChartModifiers/OverviewRangeSelectionModifier.d.ts +7 -2
- package/Charting/ChartModifiers/OverviewRangeSelectionModifier.js +18 -2
- package/Charting/ChartModifiers/RolloverModifier.d.ts +6 -0
- package/Charting/ChartModifiers/RolloverModifier.js +49 -15
- package/Charting/Model/BaseDataSeries.d.ts +2 -2
- package/Charting/Model/OhlcDataSeries.d.ts +2 -2
- package/Charting/Model/XyyDataSeries.d.ts +2 -2
- package/Charting/Model/XyzDataSeries.d.ts +2 -2
- package/Charting/Services/SciChartRenderer.d.ts +1 -0
- package/Charting/Services/SciChartRenderer.js +22 -6
- package/Charting/Visuals/Axis/AxisBase2D.d.ts +75 -52
- package/Charting/Visuals/Axis/AxisBase2D.js +53 -34
- package/Charting/Visuals/Axis/AxisCore.d.ts +7 -4
- package/Charting/Visuals/Axis/AxisCore.js +21 -5
- package/Charting/Visuals/Axis/AxisRenderer.d.ts +5 -0
- package/Charting/Visuals/Axis/AxisRenderer.js +58 -71
- package/Charting/Visuals/Axis/LogarithmicAxis.d.ts +1 -3
- package/Charting/Visuals/Axis/LogarithmicAxis.js +4 -11
- package/Charting/Visuals/RenderableSeries/Animations/BandAnimation.d.ts +2 -2
- package/Charting/Visuals/RenderableSeries/Animations/BandAnimation.js +2 -2
- package/Charting/Visuals/RenderableSeries/Animations/BubbleAnimation.d.ts +2 -2
- package/Charting/Visuals/RenderableSeries/Animations/BubbleAnimation.js +2 -2
- package/Charting/Visuals/RenderableSeries/Animations/CandlestickAnimation.d.ts +1 -1
- package/Charting/Visuals/RenderableSeries/Animations/ColumnAnimation.d.ts +2 -2
- package/Charting/Visuals/RenderableSeries/Animations/ColumnAnimation.js +2 -2
- package/Charting/Visuals/RenderableSeries/Animations/FadeAnimation.d.ts +2 -2
- package/Charting/Visuals/RenderableSeries/Animations/FadeAnimation.js +2 -2
- package/Charting/Visuals/RenderableSeries/Animations/LineAnimation.d.ts +2 -2
- package/Charting/Visuals/RenderableSeries/Animations/LineAnimation.js +2 -2
- package/Charting/Visuals/RenderableSeries/Animations/MountainAnimation.d.ts +2 -2
- package/Charting/Visuals/RenderableSeries/Animations/MountainAnimation.js +2 -2
- package/Charting/Visuals/RenderableSeries/Animations/OhlcAnimation.d.ts +2 -2
- package/Charting/Visuals/RenderableSeries/Animations/OhlcAnimation.js +2 -2
- package/Charting/Visuals/RenderableSeries/Animations/ScaleAnimation.d.ts +2 -2
- package/Charting/Visuals/RenderableSeries/Animations/ScaleAnimation.js +2 -2
- package/Charting/Visuals/RenderableSeries/Animations/ScatterAnimation.d.ts +2 -2
- package/Charting/Visuals/RenderableSeries/Animations/ScatterAnimation.js +2 -2
- package/Charting/Visuals/RenderableSeries/Animations/{BaseAnimation.d.ts → SeriesAnimation.d.ts} +3 -2
- package/Charting/Visuals/RenderableSeries/Animations/{BaseAnimation.js → SeriesAnimation.js} +13 -13
- package/Charting/Visuals/RenderableSeries/Animations/SweepAnimation.d.ts +2 -2
- package/Charting/Visuals/RenderableSeries/Animations/SweepAnimation.js +2 -2
- package/Charting/Visuals/RenderableSeries/Animations/WaveAnimation.d.ts +2 -2
- package/Charting/Visuals/RenderableSeries/Animations/WaveAnimation.js +2 -2
- package/Charting/Visuals/RenderableSeries/Animations/animationHelpers.d.ts +8 -8
- package/Charting/Visuals/RenderableSeries/BaseRenderableSeries.d.ts +9 -9
- package/Charting/Visuals/RenderableSeries/BaseRenderableSeries.js +3 -3
- package/Charting/Visuals/RenderableSeries/BaseStackedCollection.d.ts +7 -7
- package/Charting/Visuals/RenderableSeries/BaseStackedCollection.js +1 -1
- package/Charting/Visuals/RenderableSeries/BaseStackedRenderableSeries.d.ts +7 -7
- package/Charting/Visuals/RenderableSeries/BaseStackedRenderableSeries.js +1 -1
- package/Charting/Visuals/RenderableSeries/IBaseRenderableSeriesOptions.d.ts +2 -2
- package/Charting/Visuals/RenderableSeries/IRenderableSeries.d.ts +3 -3
- package/Charting/Visuals/RenderableSeries/RolloverModifier/RolloverModifierRenderableSeriesProps.d.ts +5 -0
- package/Charting/Visuals/RenderableSeries/RolloverModifier/RolloverModifierRenderableSeriesProps.js +29 -5
- package/Charting/Visuals/RenderableSeries/SplineBandRenderableSeries.d.ts +4 -4
- package/Charting/Visuals/RenderableSeries/SplineLineRenderableSeries.d.ts +4 -4
- package/Charting/Visuals/RenderableSeries/SplineMountainRenderableSeries.d.ts +4 -4
- package/Charting/Visuals/RenderableSeries/StackedColumnCollection.d.ts +1 -0
- package/Charting/Visuals/RenderableSeries/StackedColumnCollection.js +1 -0
- package/Charting/Visuals/RenderableSeries/StackedColumnRenderableSeries.d.ts +1 -0
- package/Charting/Visuals/RenderableSeries/StackedColumnRenderableSeries.js +1 -0
- package/Charting/Visuals/RenderableSeries/StackedMountainCollection.d.ts +1 -0
- package/Charting/Visuals/RenderableSeries/StackedMountainCollection.js +1 -0
- package/Charting/Visuals/RenderableSeries/StackedMountainRenderableSeries.d.ts +1 -0
- package/Charting/Visuals/RenderableSeries/StackedMountainRenderableSeries.js +1 -0
- package/Charting/Visuals/SciChartOverview.d.ts +5 -2
- package/Charting/Visuals/SciChartOverview.js +24 -15
- package/Charting/Visuals/SciChartSurface.d.ts +13 -0
- package/Charting/Visuals/SciChartSurface.js +38 -3
- package/Charting3D/Visuals/SciChart3DRenderer.js +1 -0
- package/Core/Animations/AnimationFiniteStateMachine.d.ts +27 -14
- package/Core/Animations/AnimationFiniteStateMachine.js +48 -15
- package/Core/Animations/Animator.d.ts +1 -9
- package/Core/Animations/Animator.js +1 -9
- package/Core/Animations/DoubleAnimator.d.ts +2 -8
- package/Core/Animations/DoubleAnimator.js +1 -7
- package/Core/Animations/GenericAnimation.d.ts +74 -0
- package/Core/Animations/GenericAnimation.js +74 -0
- package/Core/Animations/NumberRangeAnimator.d.ts +4 -3
- package/Core/Animations/NumberRangeAnimator.js +23 -3
- package/Core/NumberRange.js +6 -7
- package/_wasm/scichart.browser.js +1 -1
- package/_wasm/scichart2d.js +1 -1
- package/_wasm/scichart2d.wasm +0 -0
- package/_wasm/scichart3d.js +1 -1
- package/_wasm/scichart3d.wasm +0 -0
- package/package.json +2 -2
package/_wasm/scichart2d.js
CHANGED
|
@@ -13,7 +13,7 @@ n);};t.onload=function(){if(200==t.status||304==t.status||206==t.status||0==t.st
|
|
|
13
13
|
0;q<u.length;++q)n.prototype.Ai[u[q].filename].onload();h.removeRunDependency("datafile_scichart2d.data")}h.FS_createPath("/","assets",!0,!0);n.prototype={Ai:{},open:function(u,q){this.name=q;this.Ai[q]=this;h.addRunDependency("fp "+this.name)},onload:function(){this.rj(this.Fj.subarray(this.start,this.end))},rj:function(u){h.FS_createDataFile(this.name,null,u,!0,!0,!0);h.removeRunDependency("fp "+this.name);this.Ai[this.name]=null}};for(var r=a.files,t=0;t<r.length;++t)(new n(r[t].start,r[t].end,
|
|
14
14
|
r[t].audio)).open("GET",r[t].filename);h.addRunDependency("datafile_scichart2d.data");h.Zj||(h.Zj={});h.Zj["scichart2d.data"]={ml:!1};m?(p(m),m=null):g=p}"object"===typeof window?window.encodeURIComponent(window.location.pathname.toString().substring(0,window.location.pathname.toString().lastIndexOf("/"))+"/"):"undefined"===typeof process&&"undefined"!==typeof location&&encodeURIComponent(location.pathname.toString().substring(0,location.pathname.toString().lastIndexOf("/"))+"/");"function"!==typeof h.locateFilePackage||
|
|
15
15
|
h.locateFile||(h.locateFile=h.locateFilePackage,k("warning: you defined Module.locateFilePackage, that has been renamed to Module.locateFile (using your locateFilePackage for now)"));var e=h.locateFile?h.locateFile("scichart2d.data",""):"scichart2d.data",f=a.remote_package_size,g=null,m=h.getPreloadedPackage?h.getPreloadedPackage(e,f):null;m||b(e,f,function(n){g?(g(n),g=null):m=n},c);h.calledRun?d():(h.preRun||(h.preRun=[]),h.preRun.push(d))})({files:[{filename:"/assets/TSRAssets.web.pkg",start:0,
|
|
16
|
-
end:606921,audio:0},{filename:"/assets/SCRTNAssets.web.pkg",start:606921,end:780540,audio:0}],remote_package_size:780540,package_uuid:"
|
|
16
|
+
end:606921,audio:0},{filename:"/assets/SCRTNAssets.web.pkg",start:606921,end:780540,audio:0}],remote_package_size:780540,package_uuid:"d70f194a-5f86-4467-8c4c-3994bd5dc109"});l&&(l=function(a){a=ca(a);var b=ea[a]||document.querySelector(a);"#canvas"===a&&(b=b||h.canvas);return b});var fa={},ha;for(ha in h)h.hasOwnProperty(ha)&&(fa[ha]=h[ha]);var ia=[],ja="./this.program";function ka(a,b){throw b;}var la="",ma,na,oa;"undefined"!==typeof document&&document.currentScript&&(la=document.currentScript.src);
|
|
17
17
|
_scriptDir&&(la=_scriptDir);0!==la.indexOf("blob:")?la=la.substr(0,la.lastIndexOf("/")+1):la="";ma=function(a){var b=new XMLHttpRequest;b.open("GET",a,!1);b.send(null);return b.responseText};na=function(a,b,c){var d=new XMLHttpRequest;d.open("GET",a,!0);d.responseType="arraybuffer";d.onload=function(){200==d.status||0==d.status&&d.response?b(d.response):c()};d.onerror=c;d.send(null)};oa=function(a){document.title=a};var pa=h.print||console.log.bind(console),k=h.printErr||console.warn.bind(console);
|
|
18
18
|
for(ha in fa)fa.hasOwnProperty(ha)&&(h[ha]=fa[ha]);fa=null;h.arguments&&(ia=h.arguments);h.thisProgram&&(ja=h.thisProgram);h.quit&&(ka=h.quit);function qa(a){ra||(ra={});ra[a]||(ra[a]=1,k(a))}var ra,sa=0,ta;h.wasmBinary&&(ta=h.wasmBinary);var noExitRuntime=h.noExitRuntime||!0;"object"!==typeof WebAssembly&&v("no native wasm support detected");
|
|
19
19
|
function ua(a,b){var c="float";"*"===c.charAt(c.length-1)&&(c="i32");switch(c){case "i1":w[a>>0]=b;break;case "i8":w[a>>0]=b;break;case "i16":y[a>>1]=b;break;case "i32":z[a>>2]=b;break;case "i64":wa=[b>>>0,(A=b,1<=+Math.abs(A)?0<A?(Math.min(+Math.floor(A/4294967296),4294967295)|0)>>>0:~~+Math.ceil((A-+(~~A>>>0))/4294967296)>>>0:0)];z[a>>2]=wa[0];z[a+4>>2]=wa[1];break;case "float":C[a>>2]=b;break;case "double":xa[a>>3]=b;break;default:v("invalid type for setValue: "+c)}}var ya,za=!1,Aa;
|
package/_wasm/scichart2d.wasm
CHANGED
|
Binary file
|
package/_wasm/scichart3d.js
CHANGED
|
@@ -13,7 +13,7 @@ n);};t.onload=function(){if(200==t.status||304==t.status||206==t.status||0==t.st
|
|
|
13
13
|
0;q<u.length;++q)n.prototype.Ai[u[q].filename].onload();h.removeRunDependency("datafile_scichart3d.data")}h.FS_createPath("/","assets",!0,!0);n.prototype={Ai:{},open:function(u,q){this.name=q;this.Ai[q]=this;h.addRunDependency("fp "+this.name)},onload:function(){this.rj(this.Fj.subarray(this.start,this.end))},rj:function(u){h.FS_createDataFile(this.name,null,u,!0,!0,!0);h.removeRunDependency("fp "+this.name);this.Ai[this.name]=null}};for(var r=a.files,t=0;t<r.length;++t)(new n(r[t].start,r[t].end,
|
|
14
14
|
r[t].audio)).open("GET",r[t].filename);h.addRunDependency("datafile_scichart3d.data");h.Zj||(h.Zj={});h.Zj["scichart3d.data"]={ml:!1};m?(p(m),m=null):g=p}"object"===typeof window?window.encodeURIComponent(window.location.pathname.toString().substring(0,window.location.pathname.toString().lastIndexOf("/"))+"/"):"undefined"===typeof process&&"undefined"!==typeof location&&encodeURIComponent(location.pathname.toString().substring(0,location.pathname.toString().lastIndexOf("/"))+"/");"function"!==typeof h.locateFilePackage||
|
|
15
15
|
h.locateFile||(h.locateFile=h.locateFilePackage,k("warning: you defined Module.locateFilePackage, that has been renamed to Module.locateFile (using your locateFilePackage for now)"));var e=h.locateFile?h.locateFile("scichart3d.data",""):"scichart3d.data",f=a.remote_package_size,g=null,m=h.getPreloadedPackage?h.getPreloadedPackage(e,f):null;m||b(e,f,function(n){g?(g(n),g=null):m=n},c);h.calledRun?d():(h.preRun||(h.preRun=[]),h.preRun.push(d))})({files:[{filename:"/assets/TSRAssets.web.pkg",start:0,
|
|
16
|
-
end:606921,audio:0},{filename:"/assets/SCRTAssets.web.pkg",start:606921,end:1039929,audio:0}],remote_package_size:1039929,package_uuid:"
|
|
16
|
+
end:606921,audio:0},{filename:"/assets/SCRTAssets.web.pkg",start:606921,end:1039929,audio:0}],remote_package_size:1039929,package_uuid:"e91b2d34-413a-4e69-bd80-04fcd2ef2791"});l&&(l=function(a){a=ca(a);var b=ea[a]||document.querySelector(a);"#canvas"===a&&(b=b||h.canvas);return b});var fa={},ha;for(ha in h)h.hasOwnProperty(ha)&&(fa[ha]=h[ha]);var ia=[],ja="./this.program";function ka(a,b){throw b;}var la="",ma,na,oa;"undefined"!==typeof document&&document.currentScript&&(la=document.currentScript.src);
|
|
17
17
|
_scriptDir&&(la=_scriptDir);0!==la.indexOf("blob:")?la=la.substr(0,la.lastIndexOf("/")+1):la="";ma=function(a){var b=new XMLHttpRequest;b.open("GET",a,!1);b.send(null);return b.responseText};na=function(a,b,c){var d=new XMLHttpRequest;d.open("GET",a,!0);d.responseType="arraybuffer";d.onload=function(){200==d.status||0==d.status&&d.response?b(d.response):c()};d.onerror=c;d.send(null)};oa=function(a){document.title=a};var pa=h.print||console.log.bind(console),k=h.printErr||console.warn.bind(console);
|
|
18
18
|
for(ha in fa)fa.hasOwnProperty(ha)&&(h[ha]=fa[ha]);fa=null;h.arguments&&(ia=h.arguments);h.thisProgram&&(ja=h.thisProgram);h.quit&&(ka=h.quit);function qa(a){ra||(ra={});ra[a]||(ra[a]=1,k(a))}var ra,sa=0,ta;h.wasmBinary&&(ta=h.wasmBinary);var noExitRuntime=h.noExitRuntime||!0;"object"!==typeof WebAssembly&&v("no native wasm support detected");
|
|
19
19
|
function ua(a,b){var c="float";"*"===c.charAt(c.length-1)&&(c="i32");switch(c){case "i1":w[a>>0]=b;break;case "i8":w[a>>0]=b;break;case "i16":y[a>>1]=b;break;case "i32":z[a>>2]=b;break;case "i64":wa=[b>>>0,(A=b,1<=+Math.abs(A)?0<A?(Math.min(+Math.floor(A/4294967296),4294967295)|0)>>>0:~~+Math.ceil((A-+(~~A>>>0))/4294967296)>>>0:0)];z[a>>2]=wa[0];z[a+4>>2]=wa[1];break;case "float":C[a>>2]=b;break;case "double":xa[a>>3]=b;break;default:v("invalid type for setValue: "+c)}}var ya,za=!1,Aa;
|
package/_wasm/scichart3d.wasm
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "scichart",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.2146",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"types": "index.d.ts",
|
|
6
6
|
"description": "SciChartJS Charting Library",
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"Charts",
|
|
10
10
|
"Graph",
|
|
11
11
|
"Graphs",
|
|
12
|
-
"
|
|
12
|
+
"DataVisualization",
|
|
13
13
|
"WebGL",
|
|
14
14
|
"Realtime",
|
|
15
15
|
"Webassembly",
|