scichart 3.2.0-beta → 3.2.442
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/buildSurface.d.ts +2 -2
- package/Builder/chartBuilder.d.ts +4 -4
- package/Charting/ChartModifiers/ChartModifierBase.d.ts +5 -5
- package/Charting/ChartModifiers/ChartModifierBase.js +2 -3
- package/Charting/ChartModifiers/CursorModifier.d.ts +9 -9
- package/Charting/ChartModifiers/CursorModifier.js +1 -1
- package/Charting/ChartModifiers/DataPointSelectionModifier.d.ts +1 -0
- package/Charting/ChartModifiers/DataPointSelectionModifier.js +6 -1
- package/Charting/ChartModifiers/LegendModifier.d.ts +9 -24
- package/Charting/ChartModifiers/LegendModifier.js +9 -21
- package/Charting/ChartModifiers/MouseWheelZoomModifier.js +20 -11
- package/Charting/ChartModifiers/OverviewRangeSelectionModifier.d.ts +5 -5
- package/Charting/ChartModifiers/PinchZoomModifier.js +9 -9
- package/Charting/ChartModifiers/RubberBandXyZoomModifier.d.ts +4 -7
- package/Charting/ChartModifiers/RubberBandXyZoomModifier.js +6 -8
- package/Charting/ChartModifiers/SeriesSelectionModifier.js +10 -8
- package/Charting/ChartModifiers/XAxisDragModifier.d.ts +1 -1
- package/Charting/ChartModifiers/XAxisDragModifier.js +3 -3
- package/Charting/ChartModifiers/YAxisDragModifier.d.ts +2 -4
- package/Charting/ChartModifiers/YAxisDragModifier.js +7 -8
- package/Charting/Drawing/BaseCache.js +13 -8
- package/Charting/Model/BaseDataSeries.d.ts +2 -2
- package/Charting/Model/Filters/HlcFilterBase.d.ts +6 -2
- package/Charting/Model/Filters/HlcFilterBase.js +17 -1
- package/Charting/Model/Filters/IFilterBase.d.ts +24 -0
- package/Charting/Model/Filters/IFilterBase.js +2 -0
- package/Charting/Model/Filters/OhlcFilterBase.d.ts +6 -2
- package/Charting/Model/Filters/OhlcFilterBase.js +17 -1
- package/Charting/Model/Filters/XyFilterBase.d.ts +6 -5
- package/Charting/Model/Filters/XyFilterBase.js +17 -1
- package/Charting/Model/Filters/XyyFilterBase.d.ts +6 -2
- package/Charting/Model/Filters/XyyFilterBase.js +17 -1
- package/Charting/Model/Filters/XyzFilterBase.d.ts +6 -2
- package/Charting/Model/Filters/XyzFilterBase.js +17 -1
- package/Charting/Model/XyyDataSeries.js +15 -16
- package/Charting/Visuals/Annotations/CursorTooltipSvgAnnotation.js +0 -4
- package/Charting/Visuals/Annotations/NativeTextAnnotation.js +4 -0
- package/Charting/Visuals/Axis/AxisBase2D.d.ts +3 -3
- package/Charting/Visuals/Axis/AxisCore.d.ts +2 -2
- package/Charting/Visuals/Axis/DeltaCalculator/DateTimeDeltaCalculator.js +15 -1
- package/Charting/Visuals/Legend/ManualLegend.d.ts +57 -0
- package/Charting/Visuals/Legend/ManualLegend.js +150 -0
- package/Charting/Visuals/Legend/SciChartLegend.js +4 -3
- package/Charting/Visuals/Legend/SciChartLegendBase.d.ts +62 -3
- package/Charting/Visuals/Legend/SciChartLegendBase.js +70 -11
- package/Charting/Visuals/PointMarkers/BasePointMarker.js +13 -8
- package/Charting/Visuals/RenderableSeries/BaseRenderableSeries.d.ts +1 -1
- package/Charting/Visuals/RenderableSeries/BaseRenderableSeries.js +3 -3
- package/Charting/Visuals/RenderableSeries/BaseStackedCollection.js +8 -3
- package/Charting/Visuals/RenderableSeries/DrawingProviders/BandSeriesDrawingProvider.js +6 -10
- package/Charting/Visuals/RenderableSeries/DrawingProviders/BaseSeriesDrawingProvider.d.ts +14 -3
- package/Charting/Visuals/RenderableSeries/DrawingProviders/BaseSeriesDrawingProvider.js +34 -10
- package/Charting/Visuals/RenderableSeries/DrawingProviders/BubbleSeriesDrawingProvider.js +3 -8
- package/Charting/Visuals/RenderableSeries/DrawingProviders/ColumnSeriesDrawingProvider.js +5 -10
- package/Charting/Visuals/RenderableSeries/DrawingProviders/LineSeriesDrawingProvider.js +5 -10
- package/Charting/Visuals/RenderableSeries/DrawingProviders/MountainSeriesDrawingProvider.js +5 -9
- package/Charting/Visuals/RenderableSeries/DrawingProviders/OhlcSeriesDrawingProvider.js +3 -8
- package/Charting/Visuals/RenderableSeries/DrawingProviders/PointMarkerDrawingProvider.js +5 -9
- package/Charting/Visuals/RenderableSeries/HoveredChangedArgs.d.ts +6 -1
- package/Charting/Visuals/RenderableSeries/HoveredChangedArgs.js +2 -1
- package/Charting/Visuals/RenderableSeries/IRenderableSeries.d.ts +1 -1
- package/Charting/Visuals/RenderableSeries/SelectionChangedArgs.d.ts +6 -1
- package/Charting/Visuals/RenderableSeries/SelectionChangedArgs.js +2 -1
- package/Charting/Visuals/RenderableSeries/SplineBandRenderableSeries.js +43 -1
- package/Charting/Visuals/RenderableSeries/SplineLineRenderableSeries.js +6 -1
- package/Charting/Visuals/RenderableSeries/SplineMountainRenderableSeries.js +6 -1
- package/Charting/Visuals/RubberBandSvgRect/RubberBandSvgRect.d.ts +4 -0
- package/Charting/Visuals/RubberBandSvgRect/RubberBandSvgRect.js +8 -2
- package/Charting/Visuals/SciChartPieSurface/SciChartPieSurface.d.ts +6 -0
- package/Charting/Visuals/SciChartPieSurface/SciChartPieSurface.js +7 -0
- package/Charting/Visuals/SciChartSurface.d.ts +0 -5
- package/Charting/Visuals/SciChartSurface.js +11 -12
- package/Charting/Visuals/SciChartSurfaceBase.d.ts +19 -1
- package/Charting/Visuals/SciChartSurfaceBase.js +45 -23
- package/Charting/Visuals/createMaster.d.ts +3 -0
- package/Charting/Visuals/createMaster.js +54 -23
- package/Charting/Visuals/createSingle.js +2 -2
- package/Charting/Visuals/licenseManager2D.js +9 -4
- package/Charting3D/ChartModifiers/ResetCamera3DModifier.d.ts +1 -1
- package/Charting3D/ChartModifiers/ResetCamera3DModifier.js +1 -2
- package/Charting3D/ChartModifiers/TooltipModifier3D.d.ts +35 -0
- package/Charting3D/ChartModifiers/TooltipModifier3D.js +41 -5
- package/Charting3D/Model/DataSeries/BaseGridDataSeries3D.d.ts +1 -1
- package/Charting3D/Model/DataSeries/BaseGridDataSeries3D.js +2 -2
- package/Charting3D/Model/DataSeries/IPointMetadata3D.d.ts +7 -2
- package/Charting3D/Visuals/Axis/AxisBase3D.d.ts +8 -1
- package/Charting3D/Visuals/Axis/AxisBase3D.js +0 -2
- package/Charting3D/Visuals/Axis/NumericAxis3D.d.ts +3 -2
- package/Charting3D/Visuals/Axis/NumericAxis3D.js +7 -3
- package/Charting3D/Visuals/Primitives/PointLine3DSceneEntity.js +4 -2
- package/Charting3D/Visuals/Primitives/ScatterPointsSceneEntity.js +5 -2
- package/Charting3D/Visuals/Primitives/SurfaceMeshSceneEntity.js +2 -1
- package/Charting3D/Visuals/RenderableSeries/BaseRenderableSeries3D.d.ts +5 -0
- package/Charting3D/Visuals/RenderableSeries/BaseRenderableSeries3D.js +19 -5
- package/Charting3D/Visuals/SciChart3DRenderer.d.ts +0 -1
- package/Charting3D/Visuals/SciChart3DRenderer.js +3 -26
- package/Charting3D/Visuals/SciChart3DSurface.d.ts +12 -5
- package/Charting3D/Visuals/SciChart3DSurface.js +35 -6
- package/Charting3D/Visuals/createMaster3d.js +9 -4
- package/Core/BuildStamp.d.ts +1 -1
- package/Core/BuildStamp.js +2 -2
- package/Core/DeletableEntity.d.ts +11 -5
- package/Core/DeletableEntity.js +42 -45
- package/Core/Mouse/MouseManager.js +6 -0
- package/Core/OneTimePerformanceWarning.d.ts +1 -1
- package/Core/OneTimePerformanceWarning.js +2 -1
- 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/constants/performanceWarnings.d.ts +1 -0
- package/constants/performanceWarnings.js +2 -1
- package/index.d.ts +5 -6
- package/index.dev.js +68886 -0
- package/index.js +13 -21
- package/index.min.js +1 -1
- package/package.json +1 -1
- package/utils/MemoryUsageHelper.d.ts +55 -8
- package/utils/MemoryUsageHelper.js +64 -14
- package/utils/colorUtil.d.ts +7 -0
- package/utils/colorUtil.js +13 -1
- package/utils/parseColor.js +19 -4
package/_wasm/scichart3d.wasm
CHANGED
|
Binary file
|
|
@@ -4,4 +4,5 @@ export declare const performanceWarnings: {
|
|
|
4
4
|
dataDistributionFlagSortedAscending: OneTimePerformanceWarning;
|
|
5
5
|
subchartBackgroundNotSimpleColor: OneTimePerformanceWarning;
|
|
6
6
|
dataLabelsSkippingMany: OneTimePerformanceWarning;
|
|
7
|
+
dateTimeDeltaCalculatorBadDelta: OneTimePerformanceWarning;
|
|
7
8
|
};
|
|
@@ -6,5 +6,6 @@ exports.performanceWarnings = {
|
|
|
6
6
|
dataDistributionFlagNaN: new OneTimePerformanceWarning_1.OneTimePerformanceWarning("Data Distribution flag (BaseDataSeries.containsNaN = false) can be applied to improve performance. Read this website article https://www.scichart.com/documentation/js/current/DataResampling.html for more info. To disable this warning set SciChartDefaults.performanceWarnings = false"),
|
|
7
7
|
dataDistributionFlagSortedAscending: new OneTimePerformanceWarning_1.OneTimePerformanceWarning("Data Distribution flag (BaseDataSeries.isSorted = true) can be applied to improve performance. Read this website article https://www.scichart.com/documentation/js/current/DataResampling.html for more info. To disable this warning set SciChartDefaults.performanceWarnings = false"),
|
|
8
8
|
subchartBackgroundNotSimpleColor: new OneTimePerformanceWarning_1.OneTimePerformanceWarning("When using isTransparent: false on a SubChart, the background needs to be a simple color, not an html gradient (which the default theme uses). To disable this warning set SciChartDefaults.performanceWarnings = false"),
|
|
9
|
-
dataLabelsSkippingMany: new OneTimePerformanceWarning_1.OneTimePerformanceWarning("DataLabelProvider generated many more labels than it could display. To improve performance consider increasing the pointGapThreshold, increasing the skipNumber, or decreasing the pointCountThreshold. To disable this warning set SciChartDefaults.performanceWarnings = false")
|
|
9
|
+
dataLabelsSkippingMany: new OneTimePerformanceWarning_1.OneTimePerformanceWarning("DataLabelProvider generated many more labels than it could display. To improve performance consider increasing the pointGapThreshold, increasing the skipNumber, or decreasing the pointCountThreshold. To disable this warning set SciChartDefaults.performanceWarnings = false"),
|
|
10
|
+
dateTimeDeltaCalculatorBadDelta: new OneTimePerformanceWarning_1.OneTimePerformanceWarning("The DateTimeDeltaCalculator could not find a suitable delta given the current settings. \n Either increase axis.maxAutoTicks, set axis.deltaCalculator.minTicks less than maxAutoTicks / 3, or set possibleDeltas to an array containing more closely spaced values.\n To disable this warning set SciChartDefaults.performanceWarnings = false")
|
|
10
11
|
};
|
package/index.d.ts
CHANGED
|
@@ -215,6 +215,7 @@ export { IHlcFilterOptions } from "./Charting/Model/Filters/HlcFilterBase";
|
|
|
215
215
|
export { HlcFilterBase } from "./Charting/Model/Filters/HlcFilterBase";
|
|
216
216
|
export { IHlcScaleOffsetFilterOptions } from "./Charting/Model/Filters/HlcScaleOffsetFilter";
|
|
217
217
|
export { HlcScaleOffsetFilter } from "./Charting/Model/Filters/HlcScaleOffsetFilter";
|
|
218
|
+
export { IFilterBase } from "./Charting/Model/Filters/IFilterBase";
|
|
218
219
|
export { IOhlcCustomFilterOptions } from "./Charting/Model/Filters/OhlcCustomFilter";
|
|
219
220
|
export { OhlcCustomFilter } from "./Charting/Model/Filters/OhlcCustomFilter";
|
|
220
221
|
export { IOhlcFilterOptions } from "./Charting/Model/Filters/OhlcFilterBase";
|
|
@@ -447,12 +448,15 @@ export { getNativeRect } from "./Charting/Visuals/Helpers/NativeObject";
|
|
|
447
448
|
export { getVector4 } from "./Charting/Visuals/Helpers/NativeObject";
|
|
448
449
|
export { getFontKey } from "./Charting/Visuals/Helpers/NativeObject";
|
|
449
450
|
export { getAllFontKeys } from "./Charting/Visuals/Helpers/NativeObject";
|
|
451
|
+
export { IManualLegendOptions } from "./Charting/Visuals/Legend/ManualLegend";
|
|
452
|
+
export { ManualLegend } from "./Charting/Visuals/Legend/ManualLegend";
|
|
450
453
|
export { SciChartLegend } from "./Charting/Visuals/Legend/SciChartLegend";
|
|
451
454
|
export { TLegendItem } from "./Charting/Visuals/Legend/SciChartLegendBase";
|
|
452
455
|
export { IEventSubscriptionItem } from "./Charting/Visuals/Legend/SciChartLegendBase";
|
|
453
456
|
export { ELegendOrientation } from "./Charting/Visuals/Legend/SciChartLegendBase";
|
|
454
457
|
export { ELegendPlacement } from "./Charting/Visuals/Legend/SciChartLegendBase";
|
|
455
458
|
export { ELegendType } from "./Charting/Visuals/Legend/SciChartLegendBase";
|
|
459
|
+
export { ILegendOptionsBase } from "./Charting/Visuals/Legend/SciChartLegendBase";
|
|
456
460
|
export { SciChartLegendBase } from "./Charting/Visuals/Legend/SciChartLegendBase";
|
|
457
461
|
export { getLegendItemHtml } from "./Charting/Visuals/Legend/SciChartLegendBase";
|
|
458
462
|
export { getLegendContainerHtml } from "./Charting/Visuals/Legend/SciChartLegendBase";
|
|
@@ -796,12 +800,6 @@ export { AnimationToken } from "./Core/AnimationToken";
|
|
|
796
800
|
export { libraryVersion } from "./Core/BuildStamp";
|
|
797
801
|
export { checkBuildStamp } from "./Core/BuildStamp";
|
|
798
802
|
export { DeletableEntity } from "./Core/DeletableEntity";
|
|
799
|
-
export { DeletableEntityWrapper } from "./Core/DeletableEntity";
|
|
800
|
-
export { wrapDeletableEntity } from "./Core/DeletableEntity";
|
|
801
|
-
export { DeletableEntityProxyHandler } from "./Core/DeletableEntity";
|
|
802
|
-
export { WasmObjectConstructorProxyHandler } from "./Core/DeletableEntity";
|
|
803
|
-
export { WasmContextProxyHandler } from "./Core/DeletableEntity";
|
|
804
|
-
export { createWasmContextRevocableProxy } from "./Core/DeletableEntity";
|
|
805
803
|
export { deleteSafe } from "./Core/Deleter";
|
|
806
804
|
export { IDictionary } from "./Core/Dictionary";
|
|
807
805
|
export { Dictionary } from "./Core/Dictionary";
|
|
@@ -939,6 +937,7 @@ export { uintArgbColorToAbgr } from "./utils/colorUtil";
|
|
|
939
937
|
export { uintArgbColorMultiplyOpacity } from "./utils/colorUtil";
|
|
940
938
|
export { uintArgbColorOverrideOpacity } from "./utils/colorUtil";
|
|
941
939
|
export { uintArgbColorIsTransparent } from "./utils/colorUtil";
|
|
940
|
+
export { applyOpacityToHtmlColor } from "./utils/colorUtil";
|
|
942
941
|
export { convertColor } from "./utils/convertColor";
|
|
943
942
|
export { convertRgbToHexColor } from "./utils/convertColor";
|
|
944
943
|
export { convertToPixel } from "./utils/convertToPixel";
|