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.
Files changed (89) hide show
  1. package/Builder/buildSeries.d.ts +1 -1
  2. package/Charting/ChartModifiers/LegendModifier.js +1 -0
  3. package/Charting/ChartModifiers/OverviewRangeSelectionModifier.d.ts +7 -2
  4. package/Charting/ChartModifiers/OverviewRangeSelectionModifier.js +18 -2
  5. package/Charting/ChartModifiers/RolloverModifier.d.ts +6 -0
  6. package/Charting/ChartModifiers/RolloverModifier.js +49 -15
  7. package/Charting/Model/BaseDataSeries.d.ts +2 -2
  8. package/Charting/Model/OhlcDataSeries.d.ts +2 -2
  9. package/Charting/Model/XyyDataSeries.d.ts +2 -2
  10. package/Charting/Model/XyzDataSeries.d.ts +2 -2
  11. package/Charting/Services/SciChartRenderer.d.ts +1 -0
  12. package/Charting/Services/SciChartRenderer.js +22 -6
  13. package/Charting/Visuals/Axis/AxisBase2D.d.ts +75 -52
  14. package/Charting/Visuals/Axis/AxisBase2D.js +53 -34
  15. package/Charting/Visuals/Axis/AxisCore.d.ts +7 -4
  16. package/Charting/Visuals/Axis/AxisCore.js +21 -5
  17. package/Charting/Visuals/Axis/AxisRenderer.d.ts +5 -0
  18. package/Charting/Visuals/Axis/AxisRenderer.js +58 -71
  19. package/Charting/Visuals/Axis/LogarithmicAxis.d.ts +1 -3
  20. package/Charting/Visuals/Axis/LogarithmicAxis.js +4 -11
  21. package/Charting/Visuals/RenderableSeries/Animations/BandAnimation.d.ts +2 -2
  22. package/Charting/Visuals/RenderableSeries/Animations/BandAnimation.js +2 -2
  23. package/Charting/Visuals/RenderableSeries/Animations/BubbleAnimation.d.ts +2 -2
  24. package/Charting/Visuals/RenderableSeries/Animations/BubbleAnimation.js +2 -2
  25. package/Charting/Visuals/RenderableSeries/Animations/CandlestickAnimation.d.ts +1 -1
  26. package/Charting/Visuals/RenderableSeries/Animations/ColumnAnimation.d.ts +2 -2
  27. package/Charting/Visuals/RenderableSeries/Animations/ColumnAnimation.js +2 -2
  28. package/Charting/Visuals/RenderableSeries/Animations/FadeAnimation.d.ts +2 -2
  29. package/Charting/Visuals/RenderableSeries/Animations/FadeAnimation.js +2 -2
  30. package/Charting/Visuals/RenderableSeries/Animations/LineAnimation.d.ts +2 -2
  31. package/Charting/Visuals/RenderableSeries/Animations/LineAnimation.js +2 -2
  32. package/Charting/Visuals/RenderableSeries/Animations/MountainAnimation.d.ts +2 -2
  33. package/Charting/Visuals/RenderableSeries/Animations/MountainAnimation.js +2 -2
  34. package/Charting/Visuals/RenderableSeries/Animations/OhlcAnimation.d.ts +2 -2
  35. package/Charting/Visuals/RenderableSeries/Animations/OhlcAnimation.js +2 -2
  36. package/Charting/Visuals/RenderableSeries/Animations/ScaleAnimation.d.ts +2 -2
  37. package/Charting/Visuals/RenderableSeries/Animations/ScaleAnimation.js +2 -2
  38. package/Charting/Visuals/RenderableSeries/Animations/ScatterAnimation.d.ts +2 -2
  39. package/Charting/Visuals/RenderableSeries/Animations/ScatterAnimation.js +2 -2
  40. package/Charting/Visuals/RenderableSeries/Animations/{BaseAnimation.d.ts → SeriesAnimation.d.ts} +3 -2
  41. package/Charting/Visuals/RenderableSeries/Animations/{BaseAnimation.js → SeriesAnimation.js} +13 -13
  42. package/Charting/Visuals/RenderableSeries/Animations/SweepAnimation.d.ts +2 -2
  43. package/Charting/Visuals/RenderableSeries/Animations/SweepAnimation.js +2 -2
  44. package/Charting/Visuals/RenderableSeries/Animations/WaveAnimation.d.ts +2 -2
  45. package/Charting/Visuals/RenderableSeries/Animations/WaveAnimation.js +2 -2
  46. package/Charting/Visuals/RenderableSeries/Animations/animationHelpers.d.ts +8 -8
  47. package/Charting/Visuals/RenderableSeries/BaseRenderableSeries.d.ts +9 -9
  48. package/Charting/Visuals/RenderableSeries/BaseRenderableSeries.js +3 -3
  49. package/Charting/Visuals/RenderableSeries/BaseStackedCollection.d.ts +7 -7
  50. package/Charting/Visuals/RenderableSeries/BaseStackedCollection.js +1 -1
  51. package/Charting/Visuals/RenderableSeries/BaseStackedRenderableSeries.d.ts +7 -7
  52. package/Charting/Visuals/RenderableSeries/BaseStackedRenderableSeries.js +1 -1
  53. package/Charting/Visuals/RenderableSeries/IBaseRenderableSeriesOptions.d.ts +2 -2
  54. package/Charting/Visuals/RenderableSeries/IRenderableSeries.d.ts +3 -3
  55. package/Charting/Visuals/RenderableSeries/RolloverModifier/RolloverModifierRenderableSeriesProps.d.ts +5 -0
  56. package/Charting/Visuals/RenderableSeries/RolloverModifier/RolloverModifierRenderableSeriesProps.js +29 -5
  57. package/Charting/Visuals/RenderableSeries/SplineBandRenderableSeries.d.ts +4 -4
  58. package/Charting/Visuals/RenderableSeries/SplineLineRenderableSeries.d.ts +4 -4
  59. package/Charting/Visuals/RenderableSeries/SplineMountainRenderableSeries.d.ts +4 -4
  60. package/Charting/Visuals/RenderableSeries/StackedColumnCollection.d.ts +1 -0
  61. package/Charting/Visuals/RenderableSeries/StackedColumnCollection.js +1 -0
  62. package/Charting/Visuals/RenderableSeries/StackedColumnRenderableSeries.d.ts +1 -0
  63. package/Charting/Visuals/RenderableSeries/StackedColumnRenderableSeries.js +1 -0
  64. package/Charting/Visuals/RenderableSeries/StackedMountainCollection.d.ts +1 -0
  65. package/Charting/Visuals/RenderableSeries/StackedMountainCollection.js +1 -0
  66. package/Charting/Visuals/RenderableSeries/StackedMountainRenderableSeries.d.ts +1 -0
  67. package/Charting/Visuals/RenderableSeries/StackedMountainRenderableSeries.js +1 -0
  68. package/Charting/Visuals/SciChartOverview.d.ts +5 -2
  69. package/Charting/Visuals/SciChartOverview.js +24 -15
  70. package/Charting/Visuals/SciChartSurface.d.ts +13 -0
  71. package/Charting/Visuals/SciChartSurface.js +38 -3
  72. package/Charting3D/Visuals/SciChart3DRenderer.js +1 -0
  73. package/Core/Animations/AnimationFiniteStateMachine.d.ts +27 -14
  74. package/Core/Animations/AnimationFiniteStateMachine.js +48 -15
  75. package/Core/Animations/Animator.d.ts +1 -9
  76. package/Core/Animations/Animator.js +1 -9
  77. package/Core/Animations/DoubleAnimator.d.ts +2 -8
  78. package/Core/Animations/DoubleAnimator.js +1 -7
  79. package/Core/Animations/GenericAnimation.d.ts +74 -0
  80. package/Core/Animations/GenericAnimation.js +74 -0
  81. package/Core/Animations/NumberRangeAnimator.d.ts +4 -3
  82. package/Core/Animations/NumberRangeAnimator.js +23 -3
  83. package/Core/NumberRange.js +6 -7
  84. package/_wasm/scichart.browser.js +1 -1
  85. package/_wasm/scichart2d.js +1 -1
  86. package/_wasm/scichart2d.wasm +0 -0
  87. package/_wasm/scichart3d.js +1 -1
  88. package/_wasm/scichart3d.wasm +0 -0
  89. package/package.json +2 -2
@@ -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:"b6d56e23-1c4c-4568-9906-b75564f17a3f"});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);
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;
Binary file
@@ -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:"b0cb586e-6b15-40c9-8f49-37269b361f57"});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);
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;
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "scichart",
3
- "version": "2.0.2127",
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
- "DataVizualization",
12
+ "DataVisualization",
13
13
  "WebGL",
14
14
  "Realtime",
15
15
  "Webassembly",