scichart 2.0.2139 → 2.0.2185
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/buildAnnotations.js +11 -10
- package/Builder/buildAxis.js +7 -6
- package/Builder/buildDataSeries.js +3 -6
- package/Builder/buildModifiers.js +17 -16
- package/Builder/buildSeries.d.ts +1 -1
- package/Builder/buildSeries.js +21 -20
- package/Builder/buildSurface.js +29 -27
- package/Builder/chartBuilder.d.ts +10 -162
- package/Builder/chartBuilder.js +9 -6
- package/Builder/classFactory.js +12 -6
- package/Charting/ChartModifiers/ChartModifierBase.js +1 -1
- package/Charting/ChartModifiers/ChartModifierBase2D.d.ts +1 -1
- package/Charting/ChartModifiers/ChartModifierBase2D.js +11 -6
- package/Charting/ChartModifiers/CursorModifier.d.ts +23 -3
- package/Charting/ChartModifiers/CursorModifier.js +72 -40
- package/Charting/ChartModifiers/DataPointSelectionModifier.d.ts +1 -1
- package/Charting/ChartModifiers/DataPointSelectionModifier.js +18 -16
- package/Charting/ChartModifiers/LegendModifier.d.ts +1 -1
- package/Charting/ChartModifiers/LegendModifier.js +4 -1
- package/Charting/ChartModifiers/ModifierMouseArgs.js +4 -3
- package/Charting/ChartModifiers/MouseWheelZoomModifier.d.ts +52 -2
- package/Charting/ChartModifiers/MouseWheelZoomModifier.js +105 -10
- package/Charting/ChartModifiers/OverviewRangeSelectionModifier.d.ts +2 -2
- package/Charting/ChartModifiers/OverviewRangeSelectionModifier.js +13 -10
- package/Charting/ChartModifiers/PinchZoomModifier.d.ts +1 -1
- package/Charting/ChartModifiers/PinchZoomModifier.js +4 -2
- package/Charting/ChartModifiers/RolloverModifier.d.ts +1 -1
- package/Charting/ChartModifiers/RolloverModifier.js +27 -20
- package/Charting/ChartModifiers/RubberBandXyZoomModifier.d.ts +1 -1
- package/Charting/ChartModifiers/RubberBandXyZoomModifier.js +11 -9
- package/Charting/ChartModifiers/SeriesSelectionModifier.d.ts +1 -1
- package/Charting/ChartModifiers/SeriesSelectionModifier.js +9 -7
- package/Charting/ChartModifiers/XAxisDragModifier.d.ts +1 -1
- package/Charting/ChartModifiers/XAxisDragModifier.js +12 -10
- package/Charting/ChartModifiers/YAxisDragModifier.d.ts +1 -1
- package/Charting/ChartModifiers/YAxisDragModifier.js +12 -10
- package/Charting/ChartModifiers/ZoomExtentsModifier.d.ts +17 -1
- package/Charting/ChartModifiers/ZoomExtentsModifier.js +65 -10
- package/Charting/ChartModifiers/ZoomPanModifier.d.ts +4 -2
- package/Charting/ChartModifiers/ZoomPanModifier.js +25 -21
- package/Charting/Drawing/BaseCache.js +2 -2
- package/Charting/Drawing/BrushCache.js +12 -7
- package/Charting/Drawing/PaletteCache.js +4 -2
- package/Charting/Drawing/Pen2DCache.js +14 -9
- package/Charting/Drawing/SolidBrushCache.js +2 -2
- package/Charting/Drawing/TextureCache.js +4 -2
- package/Charting/Drawing/WebGlBrush.js +1 -1
- package/Charting/Drawing/WebGlPen.js +2 -2
- package/Charting/Drawing/WebGlRenderContext2D.js +5 -5
- package/Charting/LayoutManager/AxisLayoutHelpers.js +6 -4
- package/Charting/LayoutManager/BaseAxisLayoutStrategy.js +4 -4
- package/Charting/LayoutManager/BaseCenteredAxisLayoutStrategy.d.ts +1 -1
- package/Charting/LayoutManager/BaseCenteredAxisLayoutStrategy.js +3 -1
- package/Charting/LayoutManager/BottomAlignedInnerAxisLayoutStrategy.js +6 -4
- package/Charting/LayoutManager/BottomAlignedOuterAxisLayoutStrategy.js +6 -4
- package/Charting/LayoutManager/BottomAlignedOuterHorizontallyStackedAxisLayoutStrategy.js +7 -5
- package/Charting/LayoutManager/CentralAxesLayoutManager.js +7 -3
- package/Charting/LayoutManager/LayoutManager.js +2 -2
- package/Charting/LayoutManager/LeftAlignedInnerAxisLayoutStrategy.js +6 -4
- package/Charting/LayoutManager/LeftAlignedOuterAxisLayoutStrategy.js +6 -4
- package/Charting/LayoutManager/LeftAlignedOuterVerticallyStackedAxisLayoutStrategy.js +7 -5
- package/Charting/LayoutManager/RightAlignedInnerAxisLayoutStrategy.js +6 -4
- package/Charting/LayoutManager/RightAlignedOuterAxisLayoutStrategy.js +6 -4
- package/Charting/LayoutManager/RightAlignedOuterVerticallyStackedAxisLayoutStrategy.js +7 -5
- package/Charting/LayoutManager/SynchronizedLayoutManager.js +4 -2
- package/Charting/LayoutManager/TopAlignedInnerAxisLayoutStrategy.js +6 -4
- package/Charting/LayoutManager/TopAlignedOuterAxisLayoutStrategy.js +6 -4
- package/Charting/LayoutManager/TopAlignedOuterHorizontallyStackedAxisLayoutStrategy.js +7 -5
- package/Charting/Model/BaseDataSeries.d.ts +2 -2
- package/Charting/Model/BaseDataSeries.js +23 -20
- package/Charting/Model/BaseHeatmapDataSeries.js +5 -5
- package/Charting/Model/ChartData/HeatmapSeriesInfo.js +4 -2
- package/Charting/Model/ChartData/OhlcSeriesInfo.js +3 -1
- package/Charting/Model/ChartData/SeriesInfo.d.ts +1 -0
- package/Charting/Model/ChartData/SeriesInfo.js +15 -0
- package/Charting/Model/ChartData/StackedXySeriesInfo.js +3 -1
- package/Charting/Model/ChartData/XySeriesInfo.js +3 -1
- package/Charting/Model/ChartData/XyySeriesInfo.js +3 -1
- package/Charting/Model/DataPointSelectionPaletteProvider.js +2 -2
- package/Charting/Model/Filters/OhlcCustomFilter.js +7 -2
- package/Charting/Model/Filters/OhlcFilterBase.js +3 -1
- package/Charting/Model/Filters/OhlcScaleOffsetFilter.js +3 -1
- package/Charting/Model/Filters/XyCustomFilter.js +3 -1
- package/Charting/Model/Filters/XyFilterBase.js +9 -6
- package/Charting/Model/Filters/XyLinearTrendFilter.js +3 -1
- package/Charting/Model/Filters/XyMovingAverageFilter.js +3 -1
- package/Charting/Model/Filters/XyRatioFilter.js +6 -4
- package/Charting/Model/Filters/XyScaleOffsetFilter.js +3 -1
- package/Charting/Model/Filters/XyyCustomFilter.js +3 -1
- package/Charting/Model/Filters/XyyFilterBase.js +7 -5
- package/Charting/Model/Filters/XyyScaleOffsetFilter.js +3 -1
- package/Charting/Model/Filters/XyzCustomFilter.js +3 -1
- package/Charting/Model/Filters/XyzFilterBase.js +7 -5
- package/Charting/Model/Filters/XyzScaleOffsetFilter.js +3 -1
- package/Charting/Model/OhlcDataSeries.d.ts +2 -2
- package/Charting/Model/OhlcDataSeries.js +27 -25
- package/Charting/Model/PaletteFactory.js +3 -3
- package/Charting/Model/UniformHeatmapDataSeries.js +3 -1
- package/Charting/Model/XyDataSeries.js +9 -7
- package/Charting/Model/XyyDataSeries.d.ts +2 -2
- package/Charting/Model/XyyDataSeries.js +15 -13
- package/Charting/Model/XyzDataSeries.d.ts +2 -2
- package/Charting/Model/XyzDataSeries.js +15 -13
- package/Charting/Numerics/CoordinateCalculators/CategoryCoordinateCalculator.js +3 -1
- package/Charting/Numerics/CoordinateCalculators/FlippedCategoryCoordinateCalculator.js +3 -1
- package/Charting/Numerics/CoordinateCalculators/FlippedNumericCoordinateCalculator.js +3 -1
- package/Charting/Numerics/CoordinateCalculators/LogarithmicCoordinateCalculator.js +3 -1
- package/Charting/Numerics/CoordinateCalculators/NumericCoordinateCalculator.js +3 -1
- package/Charting/Numerics/TickCoordinateProviders/DefaultTickCoordinatesProvider.js +3 -1
- package/Charting/Numerics/TickProviders/LogarithmicTickProvider.js +7 -5
- package/Charting/Numerics/TickProviders/NumericTickProvider.js +4 -2
- package/Charting/Services/SciChartRenderer.d.ts +1 -0
- package/Charting/Services/SciChartRenderer.js +41 -22
- package/Charting/Services/Workers/TextureWorker.d.ts +16 -0
- package/Charting/Services/Workers/TextureWorker.js +138 -0
- package/Charting/Services/Workers/TextureWorkerSource.d.ts +1 -0
- package/Charting/Services/Workers/TextureWorkerSource.js +133 -0
- package/Charting/Themes/SciChartJSDarkTheme.js +3 -1
- package/Charting/Themes/SciChartJSDarkv2Theme.js +3 -1
- package/Charting/Themes/SciChartJSLightTheme.js +3 -1
- package/Charting/Visuals/Annotations/AnnotationBase.d.ts +1 -1
- package/Charting/Visuals/Annotations/AnnotationBase.js +71 -41
- package/Charting/Visuals/Annotations/AxisMarkerAnnotation.d.ts +28 -1
- package/Charting/Visuals/Annotations/AxisMarkerAnnotation.js +11 -9
- package/Charting/Visuals/Annotations/BoxAnnotation.d.ts +1 -1
- package/Charting/Visuals/Annotations/BoxAnnotation.js +18 -16
- package/Charting/Visuals/Annotations/CursorTooltipSvgAnnotation.d.ts +1 -1
- package/Charting/Visuals/Annotations/CursorTooltipSvgAnnotation.js +36 -14
- package/Charting/Visuals/Annotations/CustomAnnotation.d.ts +1 -1
- package/Charting/Visuals/Annotations/CustomAnnotation.js +3 -1
- package/Charting/Visuals/Annotations/HorizontalLineAnnotation.js +8 -6
- package/Charting/Visuals/Annotations/LineAnnotation.d.ts +1 -1
- package/Charting/Visuals/Annotations/LineAnnotation.js +21 -17
- package/Charting/Visuals/Annotations/OverviewCustomResizableAnnotation.js +20 -17
- package/Charting/Visuals/Annotations/RenderContextAnnotationBase.js +3 -1
- package/Charting/Visuals/Annotations/RolloverLegendSvgAnnotation.js +3 -1
- package/Charting/Visuals/Annotations/RolloverMarkerSvgAnnotation.js +4 -2
- package/Charting/Visuals/Annotations/RolloverTooltipSvgAnnotation.js +17 -15
- package/Charting/Visuals/Annotations/SvgAnnotationBase.d.ts +1 -1
- package/Charting/Visuals/Annotations/SvgAnnotationBase.js +23 -13
- package/Charting/Visuals/Annotations/TextAnnotation.d.ts +1 -1
- package/Charting/Visuals/Annotations/TextAnnotation.js +4 -2
- package/Charting/Visuals/Annotations/VerticalLineAnnotation.js +8 -6
- package/Charting/Visuals/Axis/AxisBase2D.d.ts +89 -58
- package/Charting/Visuals/Axis/AxisBase2D.js +118 -66
- package/Charting/Visuals/Axis/AxisCore.d.ts +7 -4
- package/Charting/Visuals/Axis/AxisCore.js +18 -32
- package/Charting/Visuals/Axis/AxisRenderer.d.ts +63 -0
- package/Charting/Visuals/Axis/AxisRenderer.js +92 -16
- package/Charting/Visuals/Axis/AxisTitleRenderer.js +7 -3
- package/Charting/Visuals/Axis/CategoryAxis.js +5 -2
- package/Charting/Visuals/Axis/CategoryAxisBase.js +10 -8
- package/Charting/Visuals/Axis/DeltaCalculator/CategoryDeltaCalculator.js +3 -1
- package/Charting/Visuals/Axis/DeltaCalculator/LogarithmicDeltaCalculator.js +3 -1
- package/Charting/Visuals/Axis/DeltaCalculator/NumericDeltaCalculator.js +3 -1
- package/Charting/Visuals/Axis/LabelProvider/DateLabelProvider.js +5 -3
- package/Charting/Visuals/Axis/LabelProvider/LabelCache.d.ts +41 -0
- package/Charting/Visuals/Axis/LabelProvider/LabelCache.js +164 -0
- package/Charting/Visuals/Axis/LabelProvider/LabelProvider.d.ts +1 -1
- package/Charting/Visuals/Axis/LabelProvider/LabelProviderBase2D.d.ts +57 -7
- package/Charting/Visuals/Axis/LabelProvider/LabelProviderBase2D.js +171 -74
- package/Charting/Visuals/Axis/LabelProvider/LogarithmicLabelProvider.js +5 -3
- package/Charting/Visuals/Axis/LabelProvider/NumericLabelProvider.js +5 -3
- package/Charting/Visuals/Axis/LabelProvider/SmartDateLabelProvider.js +30 -37
- package/Charting/Visuals/Axis/LabelProvider/TextLabelProvider.d.ts +5 -2
- package/Charting/Visuals/Axis/LabelProvider/TextLabelProvider.js +86 -5
- package/Charting/Visuals/Axis/LogarithmicAxis.d.ts +1 -3
- package/Charting/Visuals/Axis/LogarithmicAxis.js +14 -14
- package/Charting/Visuals/Axis/NumericAxis.js +5 -2
- package/Charting/Visuals/Axis/getAxisById.js +1 -1
- package/Charting/Visuals/Helpers/createNativeRect.js +2 -1
- package/Charting/Visuals/Helpers/createPen.js +4 -3
- package/Charting/Visuals/Helpers/createSolidBrush.js +5 -4
- package/Charting/Visuals/Helpers/drawBorder.js +6 -5
- package/Charting/Visuals/Helpers/drawLabel.js +10 -6
- package/Charting/Visuals/Legend/SciChartLegend.js +4 -2
- package/Charting/Visuals/Legend/SciChartLegendBase.js +16 -14
- package/Charting/Visuals/Legend/SciChartPieLegend.js +6 -4
- package/Charting/Visuals/PointMarkers/BasePointMarker.js +3 -3
- package/Charting/Visuals/PointMarkers/CrossPointMarker.js +3 -1
- package/Charting/Visuals/PointMarkers/EllipsePointMarker.js +3 -1
- package/Charting/Visuals/PointMarkers/SpritePointMarker.js +3 -1
- package/Charting/Visuals/PointMarkers/SquarePointMarker.js +3 -1
- package/Charting/Visuals/PointMarkers/TrianglePointMarker.js +3 -1
- package/Charting/Visuals/PointMarkers/XPointMarker.js +3 -1
- package/Charting/Visuals/RenderableSeries/Animations/BandAnimation.d.ts +2 -2
- package/Charting/Visuals/RenderableSeries/Animations/BandAnimation.js +8 -6
- package/Charting/Visuals/RenderableSeries/Animations/BandAnimationStyle.js +6 -4
- package/Charting/Visuals/RenderableSeries/Animations/BaseAnimationStyle.js +1 -1
- package/Charting/Visuals/RenderableSeries/Animations/BubbleAnimation.d.ts +2 -2
- package/Charting/Visuals/RenderableSeries/Animations/BubbleAnimation.js +5 -3
- package/Charting/Visuals/RenderableSeries/Animations/CandlestickAnimation.d.ts +1 -1
- package/Charting/Visuals/RenderableSeries/Animations/CandlestickAnimation.js +5 -3
- package/Charting/Visuals/RenderableSeries/Animations/CandlestickAnimationStyle.js +5 -3
- package/Charting/Visuals/RenderableSeries/Animations/ColumnAnimation.d.ts +2 -2
- package/Charting/Visuals/RenderableSeries/Animations/ColumnAnimation.js +6 -4
- package/Charting/Visuals/RenderableSeries/Animations/ColumnAnimationStyle.js +4 -2
- package/Charting/Visuals/RenderableSeries/Animations/CustomPointMarkerStyle.js +3 -1
- package/Charting/Visuals/RenderableSeries/Animations/FadeAnimation.d.ts +2 -2
- package/Charting/Visuals/RenderableSeries/Animations/FadeAnimation.js +5 -3
- package/Charting/Visuals/RenderableSeries/Animations/LineAnimation.d.ts +2 -2
- package/Charting/Visuals/RenderableSeries/Animations/LineAnimation.js +5 -3
- package/Charting/Visuals/RenderableSeries/Animations/MountainAnimation.d.ts +2 -2
- package/Charting/Visuals/RenderableSeries/Animations/MountainAnimation.js +6 -4
- package/Charting/Visuals/RenderableSeries/Animations/MountainAnimationStyle.js +4 -2
- package/Charting/Visuals/RenderableSeries/Animations/OhlcAnimation.d.ts +2 -2
- package/Charting/Visuals/RenderableSeries/Animations/OhlcAnimation.js +7 -5
- package/Charting/Visuals/RenderableSeries/Animations/OhlcAnimationStyle.js +5 -3
- package/Charting/Visuals/RenderableSeries/Animations/PointMarkerStyle.js +5 -3
- package/Charting/Visuals/RenderableSeries/Animations/ScaleAnimation.d.ts +3 -3
- package/Charting/Visuals/RenderableSeries/Animations/ScaleAnimation.js +5 -3
- package/Charting/Visuals/RenderableSeries/Animations/ScatterAnimation.d.ts +2 -2
- package/Charting/Visuals/RenderableSeries/Animations/ScatterAnimation.js +5 -3
- package/Charting/Visuals/RenderableSeries/Animations/{BaseAnimation.d.ts → SeriesAnimation.d.ts} +4 -3
- package/Charting/Visuals/RenderableSeries/Animations/{BaseAnimation.js → SeriesAnimation.js} +16 -16
- package/Charting/Visuals/RenderableSeries/Animations/SweepAnimation.d.ts +2 -2
- package/Charting/Visuals/RenderableSeries/Animations/SweepAnimation.js +5 -3
- package/Charting/Visuals/RenderableSeries/Animations/WaveAnimation.d.ts +3 -3
- package/Charting/Visuals/RenderableSeries/Animations/WaveAnimation.js +5 -3
- package/Charting/Visuals/RenderableSeries/Animations/animationHelpers.d.ts +8 -8
- package/Charting/Visuals/RenderableSeries/Animations/animationHelpers.js +2 -2
- package/Charting/Visuals/RenderableSeries/BaseBandRenderableSeries.js +3 -1
- package/Charting/Visuals/RenderableSeries/BaseLineRenderableSeries.js +3 -1
- package/Charting/Visuals/RenderableSeries/BaseMountainRenderableSeries.js +3 -1
- package/Charting/Visuals/RenderableSeries/BaseOhlcRenderableSeries.js +3 -1
- package/Charting/Visuals/RenderableSeries/BaseRenderableSeries.d.ts +9 -9
- package/Charting/Visuals/RenderableSeries/BaseRenderableSeries.js +18 -17
- package/Charting/Visuals/RenderableSeries/BaseStackedCollection.d.ts +7 -7
- package/Charting/Visuals/RenderableSeries/BaseStackedCollection.js +8 -6
- package/Charting/Visuals/RenderableSeries/BaseStackedRenderableSeries.d.ts +7 -7
- package/Charting/Visuals/RenderableSeries/BaseStackedRenderableSeries.js +4 -4
- package/Charting/Visuals/RenderableSeries/DrawingProviders/BandSeriesDrawingProvider.js +20 -18
- package/Charting/Visuals/RenderableSeries/DrawingProviders/BaseSeriesDrawingProvider.js +12 -12
- package/Charting/Visuals/RenderableSeries/DrawingProviders/BubbleSeriesDrawingProvider.js +4 -2
- package/Charting/Visuals/RenderableSeries/DrawingProviders/ColumnSeriesDrawingProvider.js +12 -10
- package/Charting/Visuals/RenderableSeries/DrawingProviders/LineSeriesDrawingProvider.js +9 -7
- package/Charting/Visuals/RenderableSeries/DrawingProviders/MountainSeriesDrawingProvider.js +10 -8
- package/Charting/Visuals/RenderableSeries/DrawingProviders/OhlcSeriesDrawingProvider.js +20 -18
- package/Charting/Visuals/RenderableSeries/DrawingProviders/PointMarkerDrawingProvider.js +6 -4
- package/Charting/Visuals/RenderableSeries/DrawingProviders/UniformContoursDrawingProvider.js +9 -7
- package/Charting/Visuals/RenderableSeries/DrawingProviders/UniformHeatmapDrawingProvider.js +6 -4
- package/Charting/Visuals/RenderableSeries/FastBandRenderableSeries.js +3 -1
- package/Charting/Visuals/RenderableSeries/FastBubbleRenderableSeries.js +3 -1
- package/Charting/Visuals/RenderableSeries/FastCandlestickRenderableSeries.js +3 -1
- package/Charting/Visuals/RenderableSeries/FastColumnRenderableSeries.js +6 -3
- package/Charting/Visuals/RenderableSeries/FastLineRenderableSeries.js +3 -1
- package/Charting/Visuals/RenderableSeries/FastMountainRenderableSeries.js +3 -1
- package/Charting/Visuals/RenderableSeries/FastOhlcRenderableSeries.js +3 -1
- package/Charting/Visuals/RenderableSeries/GlowEffect.js +3 -1
- package/Charting/Visuals/RenderableSeries/HitTest/BandSeriesHitTestProvider.js +3 -1
- package/Charting/Visuals/RenderableSeries/HitTest/BaseHitTestProvider.js +1 -1
- package/Charting/Visuals/RenderableSeries/HitTest/BubbleSeriesHitTestProvider.js +4 -2
- package/Charting/Visuals/RenderableSeries/HitTest/ColumnSeriesHitTestProvider.js +4 -2
- package/Charting/Visuals/RenderableSeries/HitTest/LineSeriesHitTestProvider.js +8 -6
- package/Charting/Visuals/RenderableSeries/HitTest/MountainSeriesHitTestProvider.js +3 -1
- package/Charting/Visuals/RenderableSeries/HitTest/OhlcSeriesHitTestProvider.js +4 -2
- package/Charting/Visuals/RenderableSeries/HitTest/ScatterSeriesHitTestProvider.js +6 -4
- package/Charting/Visuals/RenderableSeries/HitTest/StackedColumnSeriesHitTestProvider.js +7 -5
- package/Charting/Visuals/RenderableSeries/HitTest/StackedMountainSeriesHitTestProvider.js +3 -1
- package/Charting/Visuals/RenderableSeries/HitTest/UniformHeatmapHitTestProvider.js +3 -1
- package/Charting/Visuals/RenderableSeries/HitTest/hitTestHelpers.js +12 -12
- 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 +31 -7
- package/Charting/Visuals/RenderableSeries/ShaderEffect.js +4 -4
- package/Charting/Visuals/RenderableSeries/ShadowEffect.js +4 -2
- package/Charting/Visuals/RenderableSeries/SplineBandRenderableSeries.d.ts +4 -4
- package/Charting/Visuals/RenderableSeries/SplineBandRenderableSeries.js +6 -4
- package/Charting/Visuals/RenderableSeries/SplineLineRenderableSeries.d.ts +4 -4
- package/Charting/Visuals/RenderableSeries/SplineLineRenderableSeries.js +5 -3
- package/Charting/Visuals/RenderableSeries/SplineMountainRenderableSeries.d.ts +4 -4
- package/Charting/Visuals/RenderableSeries/SplineMountainRenderableSeries.js +5 -3
- package/Charting/Visuals/RenderableSeries/StackedColumnCollection.js +6 -4
- package/Charting/Visuals/RenderableSeries/StackedColumnRenderableSeries.js +11 -9
- package/Charting/Visuals/RenderableSeries/StackedMountainCollection.js +7 -5
- package/Charting/Visuals/RenderableSeries/StackedMountainRenderableSeries.js +11 -9
- package/Charting/Visuals/RenderableSeries/UniformContoursRenderableSeries.js +6 -4
- package/Charting/Visuals/RenderableSeries/UniformHeatmapRenderableSeries.js +5 -2
- package/Charting/Visuals/RenderableSeries/XyScatterRenderableSeries.js +3 -1
- package/Charting/Visuals/RubberBandSvgRect/RubberBandSvgRect.js +3 -3
- package/Charting/Visuals/SciChartDefaults.d.ts +11 -0
- package/Charting/Visuals/SciChartDefaults.js +18 -0
- package/Charting/Visuals/SciChartOverview.js +13 -7
- package/Charting/Visuals/SciChartPieSurface/PieSegment/PieSegment.js +1 -1
- package/Charting/Visuals/SciChartPieSurface/SciChartPieSurface.js +27 -24
- package/Charting/Visuals/SciChartSurface.d.ts +13 -0
- package/Charting/Visuals/SciChartSurface.js +52 -14
- package/Charting/Visuals/SciChartSurfaceBase.js +15 -11
- package/Charting/Visuals/TextureManager/CanvasTexture.js +5 -5
- package/Charting/Visuals/TextureManager/DpiHelper.js +3 -3
- package/Charting/Visuals/TextureManager/TextureManager.d.ts +1 -0
- package/Charting/Visuals/TextureManager/TextureManager.js +16 -12
- package/Charting/Visuals/createMaster.js +6 -5
- package/Charting/Visuals/createSingle.js +6 -4
- package/Charting/Visuals/licenseManager2D.js +65 -48
- package/Charting/Visuals/loader.js +1 -1
- package/Charting/Visuals/sciChartInitCommon.js +12 -12
- package/Charting3D/CameraController.js +6 -6
- package/Charting3D/ChartModifiers/ChartModifierBase3D.js +3 -1
- package/Charting3D/ChartModifiers/MouseWheelZoomModifier3D.js +3 -1
- package/Charting3D/ChartModifiers/OrbitModifier3D.js +3 -1
- package/Charting3D/ChartModifiers/ResetCamera3DModifier.d.ts +79 -0
- package/Charting3D/ChartModifiers/ResetCamera3DModifier.js +143 -0
- package/Charting3D/Model/DataSeries/BaseGridDataSeries3D.js +4 -2
- package/Charting3D/Model/DataSeries/UniformGridDataSeries3D.js +3 -1
- package/Charting3D/Model/DataSeries/XyzDataSeries3D.js +6 -4
- package/Charting3D/Vector3.js +1 -1
- package/Charting3D/Visuals/Axis/AxisBase3D.js +9 -7
- package/Charting3D/Visuals/Axis/AxisCubeEntity.js +20 -15
- package/Charting3D/Visuals/Axis/NumericAxis3D.d.ts +5 -0
- package/Charting3D/Visuals/Axis/NumericAxis3D.js +29 -1
- package/Charting3D/Visuals/DefaultViewportManager3D.js +3 -1
- package/Charting3D/Visuals/GizmoEntity.js +3 -1
- package/Charting3D/Visuals/PointMarkers/BaseMeshPointMarker3D.js +3 -1
- package/Charting3D/Visuals/PointMarkers/BaseTexturePointMarker3D.js +3 -1
- package/Charting3D/Visuals/PointMarkers/DefaultPointMarkers.js +3 -1
- package/Charting3D/Visuals/Primitives/BaseSceneEntity3D.js +2 -2
- package/Charting3D/Visuals/Primitives/RenderableSeriesSceneEntity.js +3 -1
- package/Charting3D/Visuals/Primitives/ScatterPointsSceneEntity.js +7 -5
- package/Charting3D/Visuals/Primitives/SurfaceMeshSceneEntity.js +22 -20
- package/Charting3D/Visuals/RenderableSeries/BaseRenderableSeries3D.js +3 -3
- package/Charting3D/Visuals/RenderableSeries/ScatterRenderableSeries3D.js +3 -1
- package/Charting3D/Visuals/RenderableSeries/SurfaceMesh/GradientColorPalette.js +3 -1
- package/Charting3D/Visuals/RenderableSeries/SurfaceMesh/SolidColorBrushPalette.js +5 -3
- package/Charting3D/Visuals/RenderableSeries/SurfaceMesh/SurfaceMeshRenderableSeries3D.js +3 -1
- package/Charting3D/Visuals/RootSceneEntity.js +3 -1
- package/Charting3D/Visuals/SciChart3DRenderer.d.ts +1 -0
- package/Charting3D/Visuals/SciChart3DRenderer.js +11 -2
- package/Charting3D/Visuals/SciChart3DSurface.d.ts +22 -0
- package/Charting3D/Visuals/SciChart3DSurface.js +64 -11
- package/Charting3D/Visuals/createMaster3d.js +8 -7
- package/Charting3D/Visuals/createSingle3d.js +5 -4
- package/Charting3D/Visuals/licenseManager3D.js +7 -6
- package/Core/Animations/AnimationFiniteStateMachine.d.ts +27 -14
- package/Core/Animations/AnimationFiniteStateMachine.js +51 -16
- 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 +2 -8
- 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/Guard.js +4 -4
- package/Core/Mouse/MouseManager.js +1 -1
- package/Core/NumberRange.js +8 -9
- package/Core/Point.js +1 -1
- package/_wasm/scichart.browser.js +1 -1
- package/_wasm/scichart2d.js +1 -1
- package/_wasm/scichart2d.wasm +0 -0
- package/_wasm/scichart3d.js +95 -95
- package/_wasm/scichart3d.wasm +0 -0
- package/index.js +1 -0
- package/package.json +2 -2
- package/types/AxisAlignment.js +6 -4
- package/types/ChartModifierType.d.ts +2 -1
- package/types/ChartModifierType.js +1 -0
- package/utils/array.js +2 -1
- package/utils/calcAverage.js +4 -2
- package/utils/colorUtil.js +4 -4
- package/utils/convertColor.js +6 -4
- package/utils/convertToPixel.js +2 -1
- package/utils/date.js +26 -17
- package/utils/font.js +4 -3
- package/utils/guid.js +2 -1
- package/utils/hasAllProperties.js +2 -1
- package/utils/includedAxis.d.ts +3 -0
- package/utils/includedAxis.js +23 -0
- package/utils/math.js +6 -3
- package/utils/number.js +18 -13
- package/utils/parseColor.js +7 -5
- package/utils/pointUtil.js +24 -15
- package/utils/random.js +2 -1
- package/utils/randomPricesDataSource.js +7 -5
- package/utils/svgString.js +2 -1
- package/utils/translate.js +10 -5
- package/utils/tsrExtensions.js +4 -2
- package/utils/zeroArray2D.js +3 -2
|
@@ -47,9 +47,9 @@ var BaseRenderableSeries = /** @class */ (function () {
|
|
|
47
47
|
/** @inheritDoc */
|
|
48
48
|
this.isStacked = false;
|
|
49
49
|
/** @inheritDoc */
|
|
50
|
-
this.rolloverModifierProps = new RolloverModifierRenderableSeriesProps_1.RolloverModifierRenderableSeriesProps();
|
|
50
|
+
this.rolloverModifierProps = new RolloverModifierRenderableSeriesProps_1.RolloverModifierRenderableSeriesProps(this);
|
|
51
51
|
/** @inheritDoc */
|
|
52
|
-
this.rolloverModifierProps1 = new RolloverModifierRenderableSeriesProps_1.RolloverModifierRenderableSeriesProps();
|
|
52
|
+
this.rolloverModifierProps1 = new RolloverModifierRenderableSeriesProps_1.RolloverModifierRenderableSeriesProps(this, true);
|
|
53
53
|
/** @inheritDoc */
|
|
54
54
|
this.drawingProviders = [];
|
|
55
55
|
/** @inheritDoc */
|
|
@@ -69,7 +69,7 @@ var BaseRenderableSeries = /** @class */ (function () {
|
|
|
69
69
|
this.paletteProviderProperty = IPaletteProvider_1.DefaultPaletteProvider.createEmpty();
|
|
70
70
|
this.isDigitalLineProperty = false;
|
|
71
71
|
this.webAssemblyContext = webAssemblyContext;
|
|
72
|
-
this.id = (_a = options === null || options === void 0 ? void 0 : options.id) !== null && _a !== void 0 ? _a : guid_1.generateGuid();
|
|
72
|
+
this.id = (_a = options === null || options === void 0 ? void 0 : options.id) !== null && _a !== void 0 ? _a : (0, guid_1.generateGuid)();
|
|
73
73
|
// It is very important to add bind(this) first line in constructor,
|
|
74
74
|
// otherwise dataSeries passed through the options does not work!
|
|
75
75
|
this.dataSeriesDataChanged = this.dataSeriesDataChanged.bind(this);
|
|
@@ -84,10 +84,10 @@ var BaseRenderableSeries = /** @class */ (function () {
|
|
|
84
84
|
if (options === null || options === void 0 ? void 0 : options.pointMarker) {
|
|
85
85
|
if (!("drawSprite" in options.pointMarker)) {
|
|
86
86
|
if (options.pointMarker.type === PointMarkerType_1.EPointMarkerType.Custom) {
|
|
87
|
-
options.pointMarker = classFactory_1.createType(BaseType_1.EBaseType.PointMarker, options.pointMarker.customType, webAssemblyContext, options.pointMarker.options);
|
|
87
|
+
options.pointMarker = (0, classFactory_1.createType)(BaseType_1.EBaseType.PointMarker, options.pointMarker.customType, webAssemblyContext, options.pointMarker.options);
|
|
88
88
|
}
|
|
89
89
|
else {
|
|
90
|
-
options.pointMarker = classFactory_1.createType(BaseType_1.EBaseType.PointMarker, options.pointMarker.type, webAssemblyContext, options.pointMarker.options);
|
|
90
|
+
options.pointMarker = (0, classFactory_1.createType)(BaseType_1.EBaseType.PointMarker, options.pointMarker.type, webAssemblyContext, options.pointMarker.options);
|
|
91
91
|
}
|
|
92
92
|
}
|
|
93
93
|
}
|
|
@@ -101,17 +101,17 @@ var BaseRenderableSeries = /** @class */ (function () {
|
|
|
101
101
|
this.isDigitalLineProperty = (_k = options === null || options === void 0 ? void 0 : options.isDigitalLine) !== null && _k !== void 0 ? _k : this.isDigitalLineProperty;
|
|
102
102
|
if (options === null || options === void 0 ? void 0 : options.effect) {
|
|
103
103
|
if (!("getNativeEffect" in options.effect)) {
|
|
104
|
-
options.effect = classFactory_1.createType(BaseType_1.EBaseType.ShaderEffect, options.effect.type, webAssemblyContext, options.effect.options);
|
|
104
|
+
options.effect = (0, classFactory_1.createType)(BaseType_1.EBaseType.ShaderEffect, options.effect.type, webAssemblyContext, options.effect.options);
|
|
105
105
|
}
|
|
106
106
|
}
|
|
107
107
|
this.effect = options === null || options === void 0 ? void 0 : options.effect;
|
|
108
108
|
if (options === null || options === void 0 ? void 0 : options.paletteProvider) {
|
|
109
109
|
if (!("onAttached" in options.paletteProvider)) {
|
|
110
110
|
if (options.paletteProvider.type === PaletteProviderType_1.EPaletteProviderType.Custom) {
|
|
111
|
-
options.paletteProvider = classFactory_1.createType(BaseType_1.EBaseType.PaletteProvider, options.paletteProvider.customType, webAssemblyContext, options.paletteProvider.options);
|
|
111
|
+
options.paletteProvider = (0, classFactory_1.createType)(BaseType_1.EBaseType.PaletteProvider, options.paletteProvider.customType, webAssemblyContext, options.paletteProvider.options);
|
|
112
112
|
}
|
|
113
113
|
else {
|
|
114
|
-
options.paletteProvider = classFactory_1.createType(BaseType_1.EBaseType.PaletteProvider, options.paletteProvider.type, webAssemblyContext, options.paletteProvider.options);
|
|
114
|
+
options.paletteProvider = (0, classFactory_1.createType)(BaseType_1.EBaseType.PaletteProvider, options.paletteProvider.type, webAssemblyContext, options.paletteProvider.options);
|
|
115
115
|
}
|
|
116
116
|
}
|
|
117
117
|
}
|
|
@@ -124,7 +124,7 @@ var BaseRenderableSeries = /** @class */ (function () {
|
|
|
124
124
|
if (options === null || options === void 0 ? void 0 : options.onSelectedChanged) {
|
|
125
125
|
if (typeof options.onSelectedChanged === "string") {
|
|
126
126
|
this.typeMap.set("onSelectedChanged", options.onSelectedChanged);
|
|
127
|
-
var selectionChanged_1 = classFactory_1.getFunction(BaseType_1.EBaseType.OptionFunction, options.onSelectedChanged);
|
|
127
|
+
var selectionChanged_1 = (0, classFactory_1.getFunction)(BaseType_1.EBaseType.OptionFunction, options.onSelectedChanged);
|
|
128
128
|
this.selected.subscribe(function (args) {
|
|
129
129
|
return selectionChanged_1(args.sourceSeries, args.isSelected);
|
|
130
130
|
});
|
|
@@ -139,7 +139,7 @@ var BaseRenderableSeries = /** @class */ (function () {
|
|
|
139
139
|
if (options === null || options === void 0 ? void 0 : options.onHoveredChanged) {
|
|
140
140
|
if (typeof options.onHoveredChanged === "string") {
|
|
141
141
|
this.typeMap.set("onHoveredChanged", options.onHoveredChanged);
|
|
142
|
-
var hoveredChanged_1 = classFactory_1.getFunction(BaseType_1.EBaseType.OptionFunction, options.onHoveredChanged);
|
|
142
|
+
var hoveredChanged_1 = (0, classFactory_1.getFunction)(BaseType_1.EBaseType.OptionFunction, options.onHoveredChanged);
|
|
143
143
|
this.hovered.subscribe(function (args) { return hoveredChanged_1(args.sourceSeries, args.hovered); });
|
|
144
144
|
}
|
|
145
145
|
else {
|
|
@@ -150,10 +150,10 @@ var BaseRenderableSeries = /** @class */ (function () {
|
|
|
150
150
|
if (options === null || options === void 0 ? void 0 : options.animation) {
|
|
151
151
|
if (!("toJSON" in options.animation)) {
|
|
152
152
|
if (options.animation.type === AnimationType_1.EAnimationType.Custom) {
|
|
153
|
-
options.animation = classFactory_1.createType(BaseType_1.EBaseType.Animation, options.animation.customType, webAssemblyContext, options.animation.options);
|
|
153
|
+
options.animation = (0, classFactory_1.createType)(BaseType_1.EBaseType.Animation, options.animation.customType, webAssemblyContext, options.animation.options);
|
|
154
154
|
}
|
|
155
155
|
else {
|
|
156
|
-
options.animation = classFactory_1.createType(BaseType_1.EBaseType.Animation, options.animation.type, webAssemblyContext, options.animation.options);
|
|
156
|
+
options.animation = (0, classFactory_1.createType)(BaseType_1.EBaseType.Animation, options.animation.type, webAssemblyContext, options.animation.options);
|
|
157
157
|
}
|
|
158
158
|
}
|
|
159
159
|
}
|
|
@@ -434,8 +434,8 @@ var BaseRenderableSeries = /** @class */ (function () {
|
|
|
434
434
|
var _a;
|
|
435
435
|
this.drawingProviders.forEach(function (dp) { return dp.delete(); });
|
|
436
436
|
this.drawingProviders = [];
|
|
437
|
-
this.dataSeries = Deleter_1.deleteSafe(this.dataSeries);
|
|
438
|
-
this.effect = Deleter_1.deleteSafe(this.effect);
|
|
437
|
+
this.dataSeries = (0, Deleter_1.deleteSafe)(this.dataSeries);
|
|
438
|
+
this.effect = (0, Deleter_1.deleteSafe)(this.effect);
|
|
439
439
|
(_a = this.pointMarker) === null || _a === void 0 ? void 0 : _a.delete();
|
|
440
440
|
};
|
|
441
441
|
/** @inheritDoc */
|
|
@@ -464,7 +464,7 @@ var BaseRenderableSeries = /** @class */ (function () {
|
|
|
464
464
|
var xValues = this.dataSeries.getNativeXValues();
|
|
465
465
|
var seriesViewRectWidth = this.parentSurface.seriesViewRect.width;
|
|
466
466
|
var isCategoryAxis = this.parentSurface.xAxes.size() !== 0 && this.xAxis.isCategoryAxis;
|
|
467
|
-
return exports.getDataPointWidth(xValues, xCoordCalc, seriesViewRectWidth, widthFraction, isCategoryAxis);
|
|
467
|
+
return (0, exports.getDataPointWidth)(xValues, xCoordCalc, seriesViewRectWidth, widthFraction, isCategoryAxis);
|
|
468
468
|
};
|
|
469
469
|
/** @inheritDoc */
|
|
470
470
|
BaseRenderableSeries.prototype.onDetach = function () {
|
|
@@ -667,7 +667,7 @@ var BaseRenderableSeries = /** @class */ (function () {
|
|
|
667
667
|
if (!this.animationFSM || ((_a = this.animationFSM) === null || _a === void 0 ? void 0 : _a.is([AnimationFiniteStateMachine_1.EAnimationState.Completed]))) {
|
|
668
668
|
if (this.animationQueue.length >= 1) {
|
|
669
669
|
var animation = this.animationQueue.shift();
|
|
670
|
-
this.animationFSM = new AnimationFiniteStateMachine_1.
|
|
670
|
+
this.animationFSM = new AnimationFiniteStateMachine_1.SeriesAnimationFiniteStateMachine(animation, this);
|
|
671
671
|
}
|
|
672
672
|
else {
|
|
673
673
|
this.animationFSM = undefined;
|
|
@@ -762,7 +762,7 @@ var BaseRenderableSeries = /** @class */ (function () {
|
|
|
762
762
|
return BaseRenderableSeries;
|
|
763
763
|
}());
|
|
764
764
|
exports.BaseRenderableSeries = BaseRenderableSeries;
|
|
765
|
-
|
|
765
|
+
var getDataPointWidth = function (xValues, xCoordCalc, seriesViewRectWidth, widthFraction, isCategoryAxis) {
|
|
766
766
|
if (widthFraction < 0 || widthFraction > 1) {
|
|
767
767
|
throw new Error("WidthFraction should be between 0.0 and 1.0 inclusive");
|
|
768
768
|
}
|
|
@@ -789,3 +789,4 @@ exports.getDataPointWidth = function (xValues, xCoordCalc, seriesViewRectWidth,
|
|
|
789
789
|
}
|
|
790
790
|
return candleWidth;
|
|
791
791
|
};
|
|
792
|
+
exports.getDataPointWidth = getDataPointWidth;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { TSeriesDefinition } from "../../../Builder/buildSeries";
|
|
2
|
-
import {
|
|
2
|
+
import { SeriesAnimationFiniteStateMachine } from "../../../Core/Animations/AnimationFiniteStateMachine";
|
|
3
3
|
import { EventHandler } from "../../../Core/EventHandler";
|
|
4
4
|
import { NumberRange } from "../../../Core/NumberRange";
|
|
5
5
|
import { ObservableArray } from "../../../Core/ObservableArray";
|
|
@@ -15,7 +15,7 @@ import { AxisCore } from "../Axis/AxisCore";
|
|
|
15
15
|
import { IPointMarker } from "../PointMarkers/IPointMarker";
|
|
16
16
|
import { SciChartSurface } from "../SciChartSurface";
|
|
17
17
|
import { TDpiChangedEventArgs } from "../TextureManager/DpiHelper";
|
|
18
|
-
import {
|
|
18
|
+
import { SeriesAnimation } from "./Animations/SeriesAnimation";
|
|
19
19
|
import { BaseStackedRenderableSeries } from "./BaseStackedRenderableSeries";
|
|
20
20
|
import { TPalettingState } from "./DrawingProviders/BaseSeriesDrawingProvider";
|
|
21
21
|
import { ISeriesDrawingProvider } from "./DrawingProviders/ISeriesDrawingProvider";
|
|
@@ -72,7 +72,7 @@ export declare abstract class BaseStackedCollection<T extends BaseStackedRendera
|
|
|
72
72
|
protected accumulatedFinalAnimationValues0: DoubleVector;
|
|
73
73
|
protected isAccumulatedVectorDirty: boolean;
|
|
74
74
|
protected firstAnimationRender: boolean;
|
|
75
|
-
protected animationFSM:
|
|
75
|
+
protected animationFSM: SeriesAnimationFiniteStateMachine;
|
|
76
76
|
private isVisibleProperty;
|
|
77
77
|
private xAxisIdProperty;
|
|
78
78
|
private yAxisIdProperty;
|
|
@@ -272,13 +272,13 @@ export declare abstract class BaseStackedCollection<T extends BaseStackedRendera
|
|
|
272
272
|
*/
|
|
273
273
|
getVisibleSeries(): T[];
|
|
274
274
|
/** @inheritDoc */
|
|
275
|
-
enqueueAnimation(animation:
|
|
275
|
+
enqueueAnimation(animation: SeriesAnimation): void;
|
|
276
276
|
/** @inheritDoc */
|
|
277
|
-
runAnimation(animation:
|
|
277
|
+
runAnimation(animation: SeriesAnimation): void;
|
|
278
278
|
/**
|
|
279
279
|
* Sets a start up animation class, a child class for {@link BaseAnimation}
|
|
280
280
|
*/
|
|
281
|
-
set animation(value:
|
|
281
|
+
set animation(value: SeriesAnimation);
|
|
282
282
|
/** @inheritDoc */
|
|
283
283
|
get isRunningAnimation(): boolean;
|
|
284
284
|
/** @inheritDoc */
|
|
@@ -320,7 +320,7 @@ export declare abstract class BaseStackedCollection<T extends BaseStackedRendera
|
|
|
320
320
|
* @param animationFSM The animation finite state machine
|
|
321
321
|
* @protected
|
|
322
322
|
*/
|
|
323
|
-
protected updateAnimationProperties(progress: number, animationFSM:
|
|
323
|
+
protected updateAnimationProperties(progress: number, animationFSM: SeriesAnimationFiniteStateMachine): void;
|
|
324
324
|
protected updateHitTestProviders(renderPassData: RenderPassData): void;
|
|
325
325
|
protected isEnoughDataToDraw(): boolean;
|
|
326
326
|
}
|
|
@@ -3,10 +3,12 @@ var __extends = (this && this.__extends) || (function () {
|
|
|
3
3
|
var extendStatics = function (d, b) {
|
|
4
4
|
extendStatics = Object.setPrototypeOf ||
|
|
5
5
|
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
6
|
-
function (d, b) { for (var p in b) if (
|
|
6
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
7
7
|
return extendStatics(d, b);
|
|
8
8
|
};
|
|
9
9
|
return function (d, b) {
|
|
10
|
+
if (typeof b !== "function" && b !== null)
|
|
11
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
10
12
|
extendStatics(d, b);
|
|
11
13
|
function __() { this.constructor = d; }
|
|
12
14
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
@@ -37,7 +39,7 @@ var BaseStackedCollection = /** @class */ (function (_super) {
|
|
|
37
39
|
function BaseStackedCollection(webAssemblyContext, options) {
|
|
38
40
|
var _a, _b, _c, _d;
|
|
39
41
|
var _this = _super.call(this) || this;
|
|
40
|
-
_this.id = guid_1.generateGuid();
|
|
42
|
+
_this.id = (0, guid_1.generateGuid)();
|
|
41
43
|
_this.isStacked = true;
|
|
42
44
|
_this.isSpline = false;
|
|
43
45
|
_this.isAccumulatedVectorDirty = true;
|
|
@@ -407,8 +409,8 @@ var BaseStackedCollection = /** @class */ (function (_super) {
|
|
|
407
409
|
};
|
|
408
410
|
/** @inheritDoc */
|
|
409
411
|
BaseStackedCollection.prototype.delete = function () {
|
|
410
|
-
this.accumulatedValues0 = Deleter_1.deleteSafe(this.accumulatedValues0);
|
|
411
|
-
this.accumulatedFinalAnimationValues0 = Deleter_1.deleteSafe(this.accumulatedFinalAnimationValues0);
|
|
412
|
+
this.accumulatedValues0 = (0, Deleter_1.deleteSafe)(this.accumulatedValues0);
|
|
413
|
+
this.accumulatedFinalAnimationValues0 = (0, Deleter_1.deleteSafe)(this.accumulatedFinalAnimationValues0);
|
|
412
414
|
};
|
|
413
415
|
/** @inheritDoc */
|
|
414
416
|
BaseStackedCollection.prototype.notifyPropertyChanged = function (propertyName) {
|
|
@@ -453,7 +455,7 @@ var BaseStackedCollection = /** @class */ (function (_super) {
|
|
|
453
455
|
this.getVisibleSeries().forEach(function (rs) {
|
|
454
456
|
if (rs.accumulatedValues.size() === _this.getNativeXValues().size()) {
|
|
455
457
|
// TODO: calc isSorted flag
|
|
456
|
-
var range = BaseDataSeries_1.getWindowedYRange(_this.webAssemblyContext, _this.getNativeXValues(), rs.accumulatedValues, xVisibleRange, true, isXCategoryAxis, true);
|
|
458
|
+
var range = (0, BaseDataSeries_1.getWindowedYRange)(_this.webAssemblyContext, _this.getNativeXValues(), rs.accumulatedValues, xVisibleRange, true, isXCategoryAxis, true);
|
|
457
459
|
if (range) {
|
|
458
460
|
maxRange = maxRange ? maxRange.union(range) : range;
|
|
459
461
|
}
|
|
@@ -540,7 +542,7 @@ var BaseStackedCollection = /** @class */ (function (_super) {
|
|
|
540
542
|
if (!this.animationFSM || ((_a = this.animationFSM) === null || _a === void 0 ? void 0 : _a.is([AnimationFiniteStateMachine_1.EAnimationState.Completed]))) {
|
|
541
543
|
if (this.animationQueue.length >= 1) {
|
|
542
544
|
var animation = this.animationQueue.shift();
|
|
543
|
-
this.animationFSM = new AnimationFiniteStateMachine_1.
|
|
545
|
+
this.animationFSM = new AnimationFiniteStateMachine_1.SeriesAnimationFiniteStateMachine(animation, undefined);
|
|
544
546
|
}
|
|
545
547
|
else {
|
|
546
548
|
this.animationFSM = undefined;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { TSeriesDefinition } from "../../../Builder/buildSeries";
|
|
2
|
-
import {
|
|
2
|
+
import { SeriesAnimationFiniteStateMachine } from "../../../Core/Animations/AnimationFiniteStateMachine";
|
|
3
3
|
import { EventHandler } from "../../../Core/EventHandler";
|
|
4
4
|
import { NumberRange } from "../../../Core/NumberRange";
|
|
5
5
|
import { ESeriesType } from "../../../types/SeriesType";
|
|
@@ -14,7 +14,7 @@ import { AxisCore } from "../Axis/AxisCore";
|
|
|
14
14
|
import { IPointMarker } from "../PointMarkers/IPointMarker";
|
|
15
15
|
import { SciChartSurface } from "../SciChartSurface";
|
|
16
16
|
import { TDpiChangedEventArgs } from "../TextureManager/DpiHelper";
|
|
17
|
-
import {
|
|
17
|
+
import { SeriesAnimation } from "./Animations/SeriesAnimation";
|
|
18
18
|
import { BaseStackedCollection } from "./BaseStackedCollection";
|
|
19
19
|
import { ISeriesDrawingProvider } from "./DrawingProviders/ISeriesDrawingProvider";
|
|
20
20
|
import { HitTestInfo } from "./HitTest/HitTestInfo";
|
|
@@ -188,11 +188,11 @@ export declare abstract class BaseStackedRenderableSeries implements IRenderable
|
|
|
188
188
|
/**
|
|
189
189
|
* animation() is not supported for BaseStackedRenderableSeries
|
|
190
190
|
*/
|
|
191
|
-
set animation(value:
|
|
191
|
+
set animation(value: SeriesAnimation);
|
|
192
192
|
/**
|
|
193
193
|
* animation() is not supported for BaseStackedRenderableSeries
|
|
194
194
|
*/
|
|
195
|
-
get animation():
|
|
195
|
+
get animation(): SeriesAnimation;
|
|
196
196
|
/**
|
|
197
197
|
* @inheritDoc
|
|
198
198
|
*/
|
|
@@ -281,7 +281,7 @@ export declare abstract class BaseStackedRenderableSeries implements IRenderable
|
|
|
281
281
|
* @param animationFSM The animation finite state machine
|
|
282
282
|
* @protected
|
|
283
283
|
*/
|
|
284
|
-
updateAnimationProperties(progress: number, animationFSM:
|
|
284
|
+
updateAnimationProperties(progress: number, animationFSM: SeriesAnimationFiniteStateMachine): void;
|
|
285
285
|
/** @inheritDoc */
|
|
286
286
|
getSeriesInfo(hitTestInfo: HitTestInfo): SeriesInfo;
|
|
287
287
|
/** @inheritDoc */
|
|
@@ -328,8 +328,8 @@ export declare abstract class BaseStackedRenderableSeries implements IRenderable
|
|
|
328
328
|
set effect(effect: ShaderEffect);
|
|
329
329
|
onAnimate(): void;
|
|
330
330
|
get isRunningAnimation(): boolean;
|
|
331
|
-
enqueueAnimation(animation:
|
|
332
|
-
runAnimation(animation:
|
|
331
|
+
enqueueAnimation(animation: SeriesAnimation): void;
|
|
332
|
+
runAnimation(animation: SeriesAnimation): void;
|
|
333
333
|
/**
|
|
334
334
|
* Factory function to create a {@link IHitTestProvider | Hit Test Provider}; a class which performs hit-test
|
|
335
335
|
* and checks mouse-over and nearest point.
|
|
@@ -26,10 +26,10 @@ var BaseStackedRenderableSeries = /** @class */ (function () {
|
|
|
26
26
|
*/
|
|
27
27
|
function BaseStackedRenderableSeries(webAssemblyContext, options) {
|
|
28
28
|
var _a, _b;
|
|
29
|
-
this.id = guid_1.generateGuid();
|
|
29
|
+
this.id = (0, guid_1.generateGuid)();
|
|
30
30
|
this.isStacked = true;
|
|
31
31
|
this.isSpline = false;
|
|
32
|
-
this.rolloverModifierProps = new RolloverModifierRenderableSeriesProps_1.RolloverModifierRenderableSeriesProps();
|
|
32
|
+
this.rolloverModifierProps = new RolloverModifierRenderableSeriesProps_1.RolloverModifierRenderableSeriesProps(this);
|
|
33
33
|
/** @inheritDoc */
|
|
34
34
|
this.selected = new EventHandler_1.EventHandler();
|
|
35
35
|
/** @inheritDoc */
|
|
@@ -109,8 +109,8 @@ var BaseStackedRenderableSeries = /** @class */ (function () {
|
|
|
109
109
|
* @inheritDoc
|
|
110
110
|
*/
|
|
111
111
|
BaseStackedRenderableSeries.prototype.delete = function () {
|
|
112
|
-
this.accumulatedValues = Deleter_1.deleteSafe(this.accumulatedValues);
|
|
113
|
-
this.accumulatedFinalAnimationValues = Deleter_1.deleteSafe(this.accumulatedFinalAnimationValues);
|
|
112
|
+
this.accumulatedValues = (0, Deleter_1.deleteSafe)(this.accumulatedValues);
|
|
113
|
+
this.accumulatedFinalAnimationValues = (0, Deleter_1.deleteSafe)(this.accumulatedFinalAnimationValues);
|
|
114
114
|
};
|
|
115
115
|
/**
|
|
116
116
|
* @inheritDoc
|
|
@@ -3,10 +3,12 @@ var __extends = (this && this.__extends) || (function () {
|
|
|
3
3
|
var extendStatics = function (d, b) {
|
|
4
4
|
extendStatics = Object.setPrototypeOf ||
|
|
5
5
|
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
6
|
-
function (d, b) { for (var p in b) if (
|
|
6
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
7
7
|
return extendStatics(d, b);
|
|
8
8
|
};
|
|
9
9
|
return function (d, b) {
|
|
10
|
+
if (typeof b !== "function" && b !== null)
|
|
11
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
10
12
|
extendStatics(d, b);
|
|
11
13
|
function __() { this.constructor = d; }
|
|
12
14
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
@@ -48,10 +50,10 @@ var BandSeriesDrawingProvider = /** @class */ (function (_super) {
|
|
|
48
50
|
_super.prototype.onAttachSeries.call(this);
|
|
49
51
|
this.nativeDrawingProvider = new this.webAssemblyContext.SCRTBandSeriesDrawingProvider();
|
|
50
52
|
var _a = this.parentSeries, stroke = _a.stroke, strokeThickness = _a.strokeThickness, fill = _a.fill, strokeY1 = _a.strokeY1, fillY1 = _a.fillY1, opacity = _a.opacity, strokeDashArray = _a.strokeDashArray, strokeY1DashArray = _a.strokeY1DashArray;
|
|
51
|
-
Pen2DCache_1.createPenInCache(this.linesPenCache, stroke, strokeThickness, opacity, strokeDashArray);
|
|
52
|
-
Pen2DCache_1.createPenInCache(this.strokePenY1Cache, strokeY1, strokeThickness, opacity, strokeY1DashArray);
|
|
53
|
-
BrushCache_1.createBrushInCache(this.fillBrushCache, fill, opacity);
|
|
54
|
-
BrushCache_1.createBrushInCache(this.fillBrushY1Cache, fillY1, opacity);
|
|
53
|
+
(0, Pen2DCache_1.createPenInCache)(this.linesPenCache, stroke, strokeThickness, opacity, strokeDashArray);
|
|
54
|
+
(0, Pen2DCache_1.createPenInCache)(this.strokePenY1Cache, strokeY1, strokeThickness, opacity, strokeY1DashArray);
|
|
55
|
+
(0, BrushCache_1.createBrushInCache)(this.fillBrushCache, fill, opacity);
|
|
56
|
+
(0, BrushCache_1.createBrushInCache)(this.fillBrushY1Cache, fillY1, opacity);
|
|
55
57
|
};
|
|
56
58
|
/**
|
|
57
59
|
* @inheritDoc
|
|
@@ -64,11 +66,11 @@ var BandSeriesDrawingProvider = /** @class */ (function (_super) {
|
|
|
64
66
|
* @inheritDoc
|
|
65
67
|
*/
|
|
66
68
|
BandSeriesDrawingProvider.prototype.delete = function () {
|
|
67
|
-
this.nativeDrawingProvider = Deleter_1.deleteSafe(this.nativeDrawingProvider);
|
|
68
|
-
this.linesPenCache = Deleter_1.deleteSafe(this.linesPenCache);
|
|
69
|
-
this.fillBrushCache = Deleter_1.deleteSafe(this.fillBrushCache);
|
|
70
|
-
this.strokePenY1Cache = Deleter_1.deleteSafe(this.strokePenY1Cache);
|
|
71
|
-
this.fillBrushY1Cache = Deleter_1.deleteSafe(this.fillBrushY1Cache);
|
|
69
|
+
this.nativeDrawingProvider = (0, Deleter_1.deleteSafe)(this.nativeDrawingProvider);
|
|
70
|
+
this.linesPenCache = (0, Deleter_1.deleteSafe)(this.linesPenCache);
|
|
71
|
+
this.fillBrushCache = (0, Deleter_1.deleteSafe)(this.fillBrushCache);
|
|
72
|
+
this.strokePenY1Cache = (0, Deleter_1.deleteSafe)(this.strokePenY1Cache);
|
|
73
|
+
this.fillBrushY1Cache = (0, Deleter_1.deleteSafe)(this.fillBrushY1Cache);
|
|
72
74
|
_super.prototype.delete.call(this);
|
|
73
75
|
};
|
|
74
76
|
/**
|
|
@@ -86,19 +88,19 @@ var BandSeriesDrawingProvider = /** @class */ (function (_super) {
|
|
|
86
88
|
: this.webAssemblyContext.SCRTLineGapMode.CloseGaps
|
|
87
89
|
: this.webAssemblyContext.SCRTLineGapMode.Default;
|
|
88
90
|
args.isDigitalLine = this.parentSeries.isDigitalLine;
|
|
89
|
-
var fillBrush = BrushCache_1.getScrtBrushFromCache(this.fillBrushCache);
|
|
91
|
+
var fillBrush = (0, BrushCache_1.getScrtBrushFromCache)(this.fillBrushCache);
|
|
90
92
|
if (fillBrush) {
|
|
91
93
|
args.SetFillBrush(fillBrush);
|
|
92
94
|
}
|
|
93
|
-
var linesPen = Pen2DCache_1.getScrtPenFromCache(this.linesPenCache);
|
|
95
|
+
var linesPen = (0, Pen2DCache_1.getScrtPenFromCache)(this.linesPenCache);
|
|
94
96
|
if (linesPen) {
|
|
95
97
|
args.SetLinesPen(linesPen);
|
|
96
98
|
}
|
|
97
|
-
var fillBrushY1 = BrushCache_1.getScrtBrushFromCache(this.fillBrushY1Cache);
|
|
99
|
+
var fillBrushY1 = (0, BrushCache_1.getScrtBrushFromCache)(this.fillBrushY1Cache);
|
|
98
100
|
if (fillBrushY1) {
|
|
99
101
|
args.SetFillBrush1(fillBrushY1);
|
|
100
102
|
}
|
|
101
|
-
var strokePenY1 = Pen2DCache_1.getScrtPenFromCache(this.strokePenY1Cache);
|
|
103
|
+
var strokePenY1 = (0, Pen2DCache_1.getScrtPenFromCache)(this.strokePenY1Cache);
|
|
102
104
|
if (strokePenY1) {
|
|
103
105
|
args.SetLinesPen1(strokePenY1);
|
|
104
106
|
}
|
|
@@ -154,19 +156,19 @@ var BandSeriesDrawingProvider = /** @class */ (function (_super) {
|
|
|
154
156
|
propertyName === constants_1.PROPERTY.STROKE_THICKNESS ||
|
|
155
157
|
propertyName === constants_1.PROPERTY.OPACITY ||
|
|
156
158
|
propertyName === constants_1.PROPERTY.STROKE_DASH_ARRAY) {
|
|
157
|
-
Pen2DCache_1.createPenInCache(this.linesPenCache, stroke, strokeThickness, opacity, strokeDashArray);
|
|
159
|
+
(0, Pen2DCache_1.createPenInCache)(this.linesPenCache, stroke, strokeThickness, opacity, strokeDashArray);
|
|
158
160
|
}
|
|
159
161
|
if (propertyName === constants_1.PROPERTY.STROKE_Y1 ||
|
|
160
162
|
propertyName === constants_1.PROPERTY.STROKE_THICKNESS ||
|
|
161
163
|
propertyName === constants_1.PROPERTY.OPACITY ||
|
|
162
164
|
propertyName === constants_1.PROPERTY.STROKE_Y1_DASH_ARRAY) {
|
|
163
|
-
Pen2DCache_1.createPenInCache(this.strokePenY1Cache, strokeY1, strokeThickness, opacity, strokeY1DashArray);
|
|
165
|
+
(0, Pen2DCache_1.createPenInCache)(this.strokePenY1Cache, strokeY1, strokeThickness, opacity, strokeY1DashArray);
|
|
164
166
|
}
|
|
165
167
|
if (propertyName === constants_1.PROPERTY.FILL || propertyName === constants_1.PROPERTY.OPACITY) {
|
|
166
|
-
BrushCache_1.createBrushInCache(this.fillBrushCache, fill, opacity);
|
|
168
|
+
(0, BrushCache_1.createBrushInCache)(this.fillBrushCache, fill, opacity);
|
|
167
169
|
}
|
|
168
170
|
if (propertyName === constants_1.PROPERTY.FILL_Y1 || propertyName === constants_1.PROPERTY.OPACITY) {
|
|
169
|
-
BrushCache_1.createBrushInCache(this.fillBrushY1Cache, fillY1, opacity);
|
|
171
|
+
(0, BrushCache_1.createBrushInCache)(this.fillBrushY1Cache, fillY1, opacity);
|
|
170
172
|
}
|
|
171
173
|
};
|
|
172
174
|
return BandSeriesDrawingProvider;
|
|
@@ -45,7 +45,7 @@ var BaseSeriesDrawingProvider = /** @class */ (function () {
|
|
|
45
45
|
*/
|
|
46
46
|
BaseSeriesDrawingProvider.prototype.applyStrokePaletting = function (strokePen) {
|
|
47
47
|
if (this.parentSeries.hasStrokePaletteProvider()) {
|
|
48
|
-
var strokeColorArgb = colorUtil_1.uintArgbColorMultiplyOpacity(parseColor_1.parseColorToUIntArgb(this.parentSeries.stroke), this.parentSeries.opacity);
|
|
48
|
+
var strokeColorArgb = (0, colorUtil_1.uintArgbColorMultiplyOpacity)((0, parseColor_1.parseColorToUIntArgb)(this.parentSeries.stroke), this.parentSeries.opacity);
|
|
49
49
|
if (isNaN(strokeColorArgb)) {
|
|
50
50
|
throw Error("applyStrokePaletting(): renderSeries.stroke " +
|
|
51
51
|
this.parentSeries.stroke +
|
|
@@ -55,7 +55,7 @@ var BaseSeriesDrawingProvider = /** @class */ (function () {
|
|
|
55
55
|
var dataSeries = this.parentSeries.dataSeries;
|
|
56
56
|
if (!this.palettingState.palettedColors ||
|
|
57
57
|
this.palettingState.palettedColors.size() !== dataSeries.count()) {
|
|
58
|
-
Deleter_1.deleteSafe(this.palettingState.palettedColors);
|
|
58
|
+
(0, Deleter_1.deleteSafe)(this.palettingState.palettedColors);
|
|
59
59
|
this.palettingState.palettedColors = new this.webAssemblyContext.UIntVector();
|
|
60
60
|
this.palettingState.palettedColors.reserve(dataSeries.count());
|
|
61
61
|
}
|
|
@@ -70,7 +70,7 @@ var BaseSeriesDrawingProvider = /** @class */ (function () {
|
|
|
70
70
|
}
|
|
71
71
|
}
|
|
72
72
|
else {
|
|
73
|
-
this.palettingState.palettedColors = Deleter_1.deleteSafe(this.palettingState.palettedColors);
|
|
73
|
+
this.palettingState.palettedColors = (0, Deleter_1.deleteSafe)(this.palettingState.palettedColors);
|
|
74
74
|
if (this.palettingState.originalPenColor) {
|
|
75
75
|
strokePen.m_uiColor = this.palettingState.originalPenColor;
|
|
76
76
|
this.palettingState.originalPenColor = undefined;
|
|
@@ -101,9 +101,9 @@ var BaseSeriesDrawingProvider = /** @class */ (function () {
|
|
|
101
101
|
else {
|
|
102
102
|
var hasOpacity = opacity !== undefined;
|
|
103
103
|
strokeColor =
|
|
104
|
-
stroke && hasOpacity ? colorUtil_1.uintArgbColorMultiplyOpacity(parseColor_1.parseColorToUIntArgb(stroke), 1) : 0xffffffff;
|
|
104
|
+
stroke && hasOpacity ? (0, colorUtil_1.uintArgbColorMultiplyOpacity)((0, parseColor_1.parseColorToUIntArgb)(stroke), 1) : 0xffffffff;
|
|
105
105
|
fillColor =
|
|
106
|
-
fill && hasOpacity ? colorUtil_1.uintArgbColorMultiplyOpacity(parseColor_1.parseColorToUIntArgb(fill), 1) : 0xffffffff;
|
|
106
|
+
fill && hasOpacity ? (0, colorUtil_1.uintArgbColorMultiplyOpacity)((0, parseColor_1.parseColorToUIntArgb)(fill), 1) : 0xffffffff;
|
|
107
107
|
}
|
|
108
108
|
if (isNaN(strokeColor)) {
|
|
109
109
|
throw Error("updatePalette(): parentSeries.stroke " + stroke + " cannot be converted to a valid color");
|
|
@@ -115,7 +115,7 @@ var BaseSeriesDrawingProvider = /** @class */ (function () {
|
|
|
115
115
|
// Recreate palettedColors if the size changed
|
|
116
116
|
if (!this.palettingState.palettedColors ||
|
|
117
117
|
this.palettingState.palettedColors.size() !== dataSeries.count()) {
|
|
118
|
-
Deleter_1.deleteSafe(this.palettingState.palettedColors);
|
|
118
|
+
(0, Deleter_1.deleteSafe)(this.palettingState.palettedColors);
|
|
119
119
|
this.palettingState.palettedColors = new this.webAssemblyContext.UIntVector();
|
|
120
120
|
this.palettingState.palettedColors.reserve(dataSeries.count() * 2);
|
|
121
121
|
this.palettingState.paletteTextureCache.reset();
|
|
@@ -152,8 +152,8 @@ var BaseSeriesDrawingProvider = /** @class */ (function () {
|
|
|
152
152
|
var overrideFillColor = (_b = overriddenColors.fill) !== null && _b !== void 0 ? _b : fillColor;
|
|
153
153
|
this.palettingState.palettedColors.push_back(overrideStrokeColor);
|
|
154
154
|
this.palettingState.palettedColors.push_back(overrideFillColor);
|
|
155
|
-
hashCode = number_1.numericHashCode(hashCode, overrideStrokeColor);
|
|
156
|
-
hashCode = number_1.numericHashCode(hashCode, overrideFillColor);
|
|
155
|
+
hashCode = (0, number_1.numericHashCode)(hashCode, overrideStrokeColor);
|
|
156
|
+
hashCode = (0, number_1.numericHashCode)(hashCode, overrideFillColor);
|
|
157
157
|
}
|
|
158
158
|
// Palette is used only for band and mountain series
|
|
159
159
|
if (usePalette) {
|
|
@@ -165,7 +165,7 @@ var BaseSeriesDrawingProvider = /** @class */ (function () {
|
|
|
165
165
|
}
|
|
166
166
|
}
|
|
167
167
|
else {
|
|
168
|
-
this.palettingState.palettedColors = Deleter_1.deleteSafe(this.palettingState.palettedColors);
|
|
168
|
+
this.palettingState.palettedColors = (0, Deleter_1.deleteSafe)(this.palettingState.palettedColors);
|
|
169
169
|
this.palettingState.paletteTextureCache.reset();
|
|
170
170
|
// This was needed for resetPenBrushColors, therefore commented out as well
|
|
171
171
|
// if (strokePen) {
|
|
@@ -196,16 +196,16 @@ var BaseSeriesDrawingProvider = /** @class */ (function () {
|
|
|
196
196
|
* @param opacity The opacity factor
|
|
197
197
|
*/
|
|
198
198
|
BaseSeriesDrawingProvider.prototype.createSolidBrush = function (htmlColorCode, opacity) {
|
|
199
|
-
return createSolidBrush_1.createSolidBrush(this.webAssemblyContext, htmlColorCode, opacity);
|
|
199
|
+
return (0, createSolidBrush_1.createSolidBrush)(this.webAssemblyContext, htmlColorCode, opacity);
|
|
200
200
|
};
|
|
201
201
|
/**
|
|
202
202
|
* @inheritDoc
|
|
203
203
|
*/
|
|
204
204
|
BaseSeriesDrawingProvider.prototype.delete = function () {
|
|
205
205
|
if (this.palettingState.palettedColors) {
|
|
206
|
-
this.palettingState.palettedColors = Deleter_1.deleteSafe(this.palettingState.palettedColors);
|
|
206
|
+
this.palettingState.palettedColors = (0, Deleter_1.deleteSafe)(this.palettingState.palettedColors);
|
|
207
207
|
}
|
|
208
|
-
this.palettingState.paletteTextureCache = Deleter_1.deleteSafe(this.palettingState.paletteTextureCache);
|
|
208
|
+
this.palettingState.paletteTextureCache = (0, Deleter_1.deleteSafe)(this.palettingState.paletteTextureCache);
|
|
209
209
|
};
|
|
210
210
|
/**
|
|
211
211
|
* @inheritDoc
|
|
@@ -3,10 +3,12 @@ var __extends = (this && this.__extends) || (function () {
|
|
|
3
3
|
var extendStatics = function (d, b) {
|
|
4
4
|
extendStatics = Object.setPrototypeOf ||
|
|
5
5
|
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
6
|
-
function (d, b) { for (var p in b) if (
|
|
6
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
7
7
|
return extendStatics(d, b);
|
|
8
8
|
};
|
|
9
9
|
return function (d, b) {
|
|
10
|
+
if (typeof b !== "function" && b !== null)
|
|
11
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
10
12
|
extendStatics(d, b);
|
|
11
13
|
function __() { this.constructor = d; }
|
|
12
14
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
@@ -71,7 +73,7 @@ var BubbleSeriesDrawingProvider = /** @class */ (function (_super) {
|
|
|
71
73
|
* @inheritDoc
|
|
72
74
|
*/
|
|
73
75
|
BubbleSeriesDrawingProvider.prototype.delete = function () {
|
|
74
|
-
this.nativeDrawingProvider = Deleter_1.deleteSafe(this.nativeDrawingProvider);
|
|
76
|
+
this.nativeDrawingProvider = (0, Deleter_1.deleteSafe)(this.nativeDrawingProvider);
|
|
75
77
|
_super.prototype.delete.call(this);
|
|
76
78
|
};
|
|
77
79
|
BubbleSeriesDrawingProvider.prototype.overridePaletteProviderColors = function (rs, xValue, yValue, index, opacity, metadata) {
|
|
@@ -3,10 +3,12 @@ var __extends = (this && this.__extends) || (function () {
|
|
|
3
3
|
var extendStatics = function (d, b) {
|
|
4
4
|
extendStatics = Object.setPrototypeOf ||
|
|
5
5
|
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
6
|
-
function (d, b) { for (var p in b) if (
|
|
6
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
7
7
|
return extendStatics(d, b);
|
|
8
8
|
};
|
|
9
9
|
return function (d, b) {
|
|
10
|
+
if (typeof b !== "function" && b !== null)
|
|
11
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
10
12
|
extendStatics(d, b);
|
|
11
13
|
function __() { this.constructor = d; }
|
|
12
14
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
@@ -37,17 +39,17 @@ var ColumnSeriesDrawingProvider = /** @class */ (function (_super) {
|
|
|
37
39
|
_this.strokePenCache = new Pen2DCache_1.Pen2DCache(webAssemblyContext);
|
|
38
40
|
_this.fillBrushCache = new BrushCache_1.BrushCache(webAssemblyContext);
|
|
39
41
|
var _a = _this.parentSeries, stroke = _a.stroke, strokeThickness = _a.strokeThickness, fill = _a.fill, opacity = _a.opacity;
|
|
40
|
-
Pen2DCache_1.createPenInCache(_this.strokePenCache, stroke, strokeThickness, opacity);
|
|
41
|
-
BrushCache_1.createBrushInCache(_this.fillBrushCache, fill, opacity);
|
|
42
|
+
(0, Pen2DCache_1.createPenInCache)(_this.strokePenCache, stroke, strokeThickness, opacity);
|
|
43
|
+
(0, BrushCache_1.createBrushInCache)(_this.fillBrushCache, fill, opacity);
|
|
42
44
|
return _this;
|
|
43
45
|
}
|
|
44
46
|
/**
|
|
45
47
|
* @inheritDoc
|
|
46
48
|
*/
|
|
47
49
|
ColumnSeriesDrawingProvider.prototype.delete = function () {
|
|
48
|
-
this.nativeDrawingProvider = Deleter_1.deleteSafe(this.nativeDrawingProvider);
|
|
49
|
-
this.strokePenCache = Deleter_1.deleteSafe(this.strokePenCache);
|
|
50
|
-
this.fillBrushCache = Deleter_1.deleteSafe(this.fillBrushCache);
|
|
50
|
+
this.nativeDrawingProvider = (0, Deleter_1.deleteSafe)(this.nativeDrawingProvider);
|
|
51
|
+
this.strokePenCache = (0, Deleter_1.deleteSafe)(this.strokePenCache);
|
|
52
|
+
this.fillBrushCache = (0, Deleter_1.deleteSafe)(this.fillBrushCache);
|
|
51
53
|
_super.prototype.delete.call(this);
|
|
52
54
|
};
|
|
53
55
|
/**
|
|
@@ -64,11 +66,11 @@ var ColumnSeriesDrawingProvider = /** @class */ (function (_super) {
|
|
|
64
66
|
args.columnWidth = this.parentSeries.getDataPointWidth(renderPassData.xCoordinateCalculator, this.parentSeries.dataPointWidth);
|
|
65
67
|
args.viewportWidth = viewRect.width;
|
|
66
68
|
args.viewportHeight = viewRect.height;
|
|
67
|
-
var fillBrush = BrushCache_1.getScrtBrushFromCache(this.fillBrushCache);
|
|
69
|
+
var fillBrush = (0, BrushCache_1.getScrtBrushFromCache)(this.fillBrushCache);
|
|
68
70
|
if (fillBrush) {
|
|
69
71
|
args.SetFillBrush(fillBrush);
|
|
70
72
|
}
|
|
71
|
-
var linesPen = Pen2DCache_1.getScrtPenFromCache(this.strokePenCache);
|
|
73
|
+
var linesPen = (0, Pen2DCache_1.getScrtPenFromCache)(this.strokePenCache);
|
|
72
74
|
if (linesPen) {
|
|
73
75
|
args.SetLinesPen(linesPen);
|
|
74
76
|
}
|
|
@@ -105,11 +107,11 @@ var ColumnSeriesDrawingProvider = /** @class */ (function (_super) {
|
|
|
105
107
|
propertyName === constants_1.PROPERTY.STROKE_THICKNESS ||
|
|
106
108
|
propertyName === constants_1.PROPERTY.OPACITY) {
|
|
107
109
|
var _a = this.parentSeries, stroke = _a.stroke, strokeThickness = _a.strokeThickness, opacity = _a.opacity;
|
|
108
|
-
Pen2DCache_1.createPenInCache(this.strokePenCache, stroke, strokeThickness, opacity);
|
|
110
|
+
(0, Pen2DCache_1.createPenInCache)(this.strokePenCache, stroke, strokeThickness, opacity);
|
|
109
111
|
}
|
|
110
112
|
if (propertyName === constants_1.PROPERTY.FILL || propertyName === constants_1.PROPERTY.OPACITY) {
|
|
111
113
|
var _b = this.parentSeries, fill = _b.fill, opacity = _b.opacity;
|
|
112
|
-
BrushCache_1.createBrushInCache(this.fillBrushCache, fill, opacity);
|
|
114
|
+
(0, BrushCache_1.createBrushInCache)(this.fillBrushCache, fill, opacity);
|
|
113
115
|
}
|
|
114
116
|
};
|
|
115
117
|
return ColumnSeriesDrawingProvider;
|
|
@@ -3,10 +3,12 @@ var __extends = (this && this.__extends) || (function () {
|
|
|
3
3
|
var extendStatics = function (d, b) {
|
|
4
4
|
extendStatics = Object.setPrototypeOf ||
|
|
5
5
|
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
6
|
-
function (d, b) { for (var p in b) if (
|
|
6
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
7
7
|
return extendStatics(d, b);
|
|
8
8
|
};
|
|
9
9
|
return function (d, b) {
|
|
10
|
+
if (typeof b !== "function" && b !== null)
|
|
11
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
10
12
|
extendStatics(d, b);
|
|
11
13
|
function __() { this.constructor = d; }
|
|
12
14
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
@@ -58,7 +60,7 @@ var LineSeriesDrawingProvider = /** @class */ (function (_super) {
|
|
|
58
60
|
propertyName === constants_1.PROPERTY.OPACITY ||
|
|
59
61
|
propertyName === constants_1.PROPERTY.STROKE_DASH_ARRAY) {
|
|
60
62
|
var _a = this.parentSeries, stroke = _a.stroke, strokeThickness = _a.strokeThickness, opacity = _a.opacity, strokeDashArray = _a.strokeDashArray;
|
|
61
|
-
Pen2DCache_1.createPenInCache(this.linesPenCache, stroke, strokeThickness, opacity, strokeDashArray);
|
|
63
|
+
(0, Pen2DCache_1.createPenInCache)(this.linesPenCache, stroke, strokeThickness, opacity, strokeDashArray);
|
|
62
64
|
}
|
|
63
65
|
};
|
|
64
66
|
/**
|
|
@@ -68,20 +70,20 @@ var LineSeriesDrawingProvider = /** @class */ (function (_super) {
|
|
|
68
70
|
_super.prototype.onAttachSeries.call(this);
|
|
69
71
|
this.nativeDrawingProvider = new this.webAssemblyContext.SCRTLineSeriesDrawingProvider();
|
|
70
72
|
var _a = this.parentSeries, stroke = _a.stroke, strokeThickness = _a.strokeThickness, opacity = _a.opacity, strokeDashArray = _a.strokeDashArray;
|
|
71
|
-
Pen2DCache_1.createPenInCache(this.linesPenCache, stroke, strokeThickness, opacity, strokeDashArray);
|
|
73
|
+
(0, Pen2DCache_1.createPenInCache)(this.linesPenCache, stroke, strokeThickness, opacity, strokeDashArray);
|
|
72
74
|
};
|
|
73
75
|
/**
|
|
74
76
|
* @inheritDoc
|
|
75
77
|
*/
|
|
76
78
|
LineSeriesDrawingProvider.prototype.onDetachSeries = function () {
|
|
77
79
|
_super.prototype.onDetachSeries.call(this);
|
|
78
|
-
this.nativeDrawingProvider = Deleter_1.deleteSafe(this.nativeDrawingProvider);
|
|
80
|
+
this.nativeDrawingProvider = (0, Deleter_1.deleteSafe)(this.nativeDrawingProvider);
|
|
79
81
|
};
|
|
80
82
|
/**
|
|
81
83
|
* @inheritDoc
|
|
82
84
|
*/
|
|
83
85
|
LineSeriesDrawingProvider.prototype.draw = function (renderContext, renderPassData) {
|
|
84
|
-
var linesPen = Pen2DCache_1.getScrtPenFromCache(this.linesPenCache);
|
|
86
|
+
var linesPen = (0, Pen2DCache_1.getScrtPenFromCache)(this.linesPenCache);
|
|
85
87
|
if (!linesPen) {
|
|
86
88
|
return;
|
|
87
89
|
}
|
|
@@ -125,8 +127,8 @@ var LineSeriesDrawingProvider = /** @class */ (function (_super) {
|
|
|
125
127
|
* @inheritDoc
|
|
126
128
|
*/
|
|
127
129
|
LineSeriesDrawingProvider.prototype.delete = function () {
|
|
128
|
-
this.linesPenCache = Deleter_1.deleteSafe(this.linesPenCache);
|
|
129
|
-
this.nativeDrawingProvider = Deleter_1.deleteSafe(this.nativeDrawingProvider);
|
|
130
|
+
this.linesPenCache = (0, Deleter_1.deleteSafe)(this.linesPenCache);
|
|
131
|
+
this.nativeDrawingProvider = (0, Deleter_1.deleteSafe)(this.nativeDrawingProvider);
|
|
130
132
|
_super.prototype.delete.call(this);
|
|
131
133
|
};
|
|
132
134
|
LineSeriesDrawingProvider.prototype.drawLines = function (renderContext, nativeContext, xValues, yValues, xCoordCalc, yCoordCalc, args, viewRect) {
|