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
|
@@ -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 __());
|
|
@@ -23,26 +25,87 @@ var __assign = (this && this.__assign) || function () {
|
|
|
23
25
|
};
|
|
24
26
|
return __assign.apply(this, arguments);
|
|
25
27
|
};
|
|
28
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
29
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
30
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
31
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
32
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
33
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
34
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
35
|
+
});
|
|
36
|
+
};
|
|
37
|
+
var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
38
|
+
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
|
|
39
|
+
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
|
|
40
|
+
function verb(n) { return function (v) { return step([n, v]); }; }
|
|
41
|
+
function step(op) {
|
|
42
|
+
if (f) throw new TypeError("Generator is already executing.");
|
|
43
|
+
while (_) try {
|
|
44
|
+
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
|
45
|
+
if (y = 0, t) op = [op[0] & 2, t.value];
|
|
46
|
+
switch (op[0]) {
|
|
47
|
+
case 0: case 1: t = op; break;
|
|
48
|
+
case 4: _.label++; return { value: op[1], done: false };
|
|
49
|
+
case 5: _.label++; y = op[1]; op = [0]; continue;
|
|
50
|
+
case 7: op = _.ops.pop(); _.trys.pop(); continue;
|
|
51
|
+
default:
|
|
52
|
+
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
|
|
53
|
+
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
|
|
54
|
+
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
|
|
55
|
+
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
|
|
56
|
+
if (t[2]) _.ops.pop();
|
|
57
|
+
_.trys.pop(); continue;
|
|
58
|
+
}
|
|
59
|
+
op = body.call(thisArg, _);
|
|
60
|
+
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
|
|
61
|
+
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
|
62
|
+
}
|
|
63
|
+
};
|
|
26
64
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
27
|
-
exports.LabelProviderBase2D = void 0;
|
|
65
|
+
exports.LabelProviderBase2D = exports.LabelInfo = void 0;
|
|
28
66
|
var app_1 = require("../../../../constants/app");
|
|
29
|
-
var
|
|
67
|
+
var guid_1 = require("../../../../utils/guid");
|
|
68
|
+
var TextureWorker_1 = require("../../../Services/Workers/TextureWorker");
|
|
69
|
+
var SciChartDefaults_1 = require("../../SciChartDefaults");
|
|
30
70
|
var TextureManager_1 = require("../../TextureManager/TextureManager");
|
|
71
|
+
var LabelCache_1 = require("./LabelCache");
|
|
31
72
|
var LabelProvider_1 = require("./LabelProvider");
|
|
73
|
+
var LabelInfo = /** @class */ (function () {
|
|
74
|
+
function LabelInfo(tick, text, bitmapTexture, textureHeight, textureWidth) {
|
|
75
|
+
this.subs = [];
|
|
76
|
+
this.tick = tick;
|
|
77
|
+
this.text = text;
|
|
78
|
+
this.bitmapTexture = bitmapTexture;
|
|
79
|
+
this.textureHeight = textureHeight;
|
|
80
|
+
this.textureWidth = textureWidth;
|
|
81
|
+
this.lastUsed = Date.now();
|
|
82
|
+
}
|
|
83
|
+
LabelInfo.prototype.registerNotifier = function (callback) {
|
|
84
|
+
this.subs.push(callback);
|
|
85
|
+
};
|
|
86
|
+
LabelInfo.prototype.textureUpdated = function () {
|
|
87
|
+
this.subs.forEach(function (notifier) { return notifier(); });
|
|
88
|
+
this.subs = [];
|
|
89
|
+
};
|
|
90
|
+
return LabelInfo;
|
|
91
|
+
}());
|
|
92
|
+
exports.LabelInfo = LabelInfo;
|
|
32
93
|
/**
|
|
33
94
|
* The {@link LabelProviderBase2D} provides base functionality for 2D label providers, including caching of label textures
|
|
34
95
|
*/
|
|
96
|
+
// tslint:disable-next-line: max-classes-per-file
|
|
35
97
|
var LabelProviderBase2D = /** @class */ (function (_super) {
|
|
36
98
|
__extends(LabelProviderBase2D, _super);
|
|
37
99
|
function LabelProviderBase2D(options) {
|
|
38
|
-
var _a;
|
|
100
|
+
var _a, _b, _c;
|
|
39
101
|
var _this = _super.call(this, options) || this;
|
|
40
102
|
_this.useCache = !app_1.IS_TEST_ENV;
|
|
41
103
|
_this.tickToText = new Map();
|
|
42
|
-
_this.labelCacheByText = new Map();
|
|
43
|
-
_this.cachedLabelStyle = null;
|
|
44
104
|
_this.rotationProperty = 0;
|
|
105
|
+
_this.providerId = (0, guid_1.generateGuid)();
|
|
45
106
|
_this.rotationProperty = (_a = options === null || options === void 0 ? void 0 : options.rotation) !== null && _a !== void 0 ? _a : _this.rotationProperty;
|
|
107
|
+
_this.asyncLabels = (_b = options === null || options === void 0 ? void 0 : options.asyncLabels) !== null && _b !== void 0 ? _b : SciChartDefaults_1.SciChartDefaults.asyncLabels;
|
|
108
|
+
_this.useSharedCache = (_c = options === null || options === void 0 ? void 0 : options.useSharedCache) !== null && _c !== void 0 ? _c : SciChartDefaults_1.SciChartDefaults.useSharedCache;
|
|
46
109
|
return _this;
|
|
47
110
|
}
|
|
48
111
|
Object.defineProperty(LabelProviderBase2D.prototype, "rotation", {
|
|
@@ -50,8 +113,10 @@ var LabelProviderBase2D = /** @class */ (function (_super) {
|
|
|
50
113
|
return this.rotationProperty;
|
|
51
114
|
},
|
|
52
115
|
set: function (value) {
|
|
53
|
-
this.rotationProperty
|
|
54
|
-
|
|
116
|
+
if (this.rotationProperty !== value) {
|
|
117
|
+
this.rotationProperty = value;
|
|
118
|
+
this.invalidateParent();
|
|
119
|
+
}
|
|
55
120
|
},
|
|
56
121
|
enumerable: false,
|
|
57
122
|
configurable: true
|
|
@@ -63,12 +128,12 @@ var LabelProviderBase2D = /** @class */ (function (_super) {
|
|
|
63
128
|
LabelProviderBase2D.prototype.getLabels = function (majorTicks) {
|
|
64
129
|
var _this = this;
|
|
65
130
|
var axis = this.parentAxis;
|
|
66
|
-
if (!this.
|
|
67
|
-
this.
|
|
131
|
+
if (!this.styleId) {
|
|
132
|
+
this.styleId = LabelCache_1.labelCache.getStyleId(this.getCachedStyle());
|
|
68
133
|
}
|
|
69
|
-
else if (!
|
|
134
|
+
else if (!LabelCache_1.labelCache.checkStyle(this.styleId, this.getCachedStyle())) {
|
|
70
135
|
this.delete();
|
|
71
|
-
this.
|
|
136
|
+
this.styleId = LabelCache_1.labelCache.getStyleId(this.getCachedStyle());
|
|
72
137
|
}
|
|
73
138
|
var ticks = majorTicks;
|
|
74
139
|
if (this.parentAxis.isCategoryAxis) {
|
|
@@ -82,20 +147,21 @@ var LabelProviderBase2D = /** @class */ (function (_super) {
|
|
|
82
147
|
var cachedLabelText = this.tickToText.get(tick);
|
|
83
148
|
var cachedLabel = void 0;
|
|
84
149
|
if (cachedLabelText) {
|
|
85
|
-
cachedLabel =
|
|
150
|
+
cachedLabel = LabelCache_1.labelCache.getLabel(cachedLabelText, this.styleId);
|
|
86
151
|
labels.push(cachedLabelText);
|
|
87
|
-
cachedLabel.lastUsed = Date.now();
|
|
88
152
|
}
|
|
89
153
|
else {
|
|
90
154
|
var text = this.formatLabel(tick);
|
|
91
|
-
var texture = this.getLabelTexture(text, axis.axisRenderer.textureManager, axis.dpiAdjustedLabelStyle);
|
|
92
|
-
cachedLabel = __assign(__assign({ tick: tick, text: text }, texture), { lastUsed: Date.now() });
|
|
93
155
|
this.tickToText.set(tick, text);
|
|
94
|
-
this.
|
|
156
|
+
var texture = this.getCachedLabelTexture(text, axis.axisRenderer.textureManager, axis.dpiAdjustedLabelStyle);
|
|
157
|
+
if (texture.textureWidth !== null) {
|
|
158
|
+
cachedLabel = new LabelInfo(tick, text, texture.bitmapTexture, texture.textureHeight, texture.textureWidth);
|
|
159
|
+
LabelCache_1.labelCache.setLabel(text, this.styleId, cachedLabel);
|
|
160
|
+
}
|
|
95
161
|
labels.push(text);
|
|
96
162
|
}
|
|
97
163
|
}
|
|
98
|
-
|
|
164
|
+
LabelCache_1.labelCache.pruneCache();
|
|
99
165
|
}
|
|
100
166
|
else {
|
|
101
167
|
labels = ticks.map(function (t) { return _this.formatLabel(t); });
|
|
@@ -111,10 +177,10 @@ var LabelProviderBase2D = /** @class */ (function (_super) {
|
|
|
111
177
|
*/
|
|
112
178
|
LabelProviderBase2D.prototype.getLabelHeight = function (ctx, labelText, labelStyle) {
|
|
113
179
|
if (this.rotationProperty % 90 === 0 || this.parentAxis.isHorizontalAxis) {
|
|
114
|
-
var cachedLabel =
|
|
115
|
-
if (!cachedLabel) {
|
|
180
|
+
var cachedLabel = LabelCache_1.labelCache.getLabel(labelText, this.styleId);
|
|
181
|
+
if (!cachedLabel || !cachedLabel.textureHeight) {
|
|
116
182
|
var fontSize = labelStyle.fontSize, padding = labelStyle.padding;
|
|
117
|
-
return TextureManager_1.measureTextHeight(fontSize) + (padding === null || padding === void 0 ? void 0 : padding.top) + (padding === null || padding === void 0 ? void 0 : padding.bottom);
|
|
183
|
+
return (0, TextureManager_1.measureTextHeight)(fontSize) + (padding === null || padding === void 0 ? void 0 : padding.top) + (padding === null || padding === void 0 ? void 0 : padding.bottom);
|
|
118
184
|
}
|
|
119
185
|
return cachedLabel.textureHeight;
|
|
120
186
|
}
|
|
@@ -131,10 +197,10 @@ var LabelProviderBase2D = /** @class */ (function (_super) {
|
|
|
131
197
|
*/
|
|
132
198
|
LabelProviderBase2D.prototype.getLabelWidth = function (ctx, labelText, labelStyle) {
|
|
133
199
|
if (this.rotationProperty % 90 === 0 || !this.parentAxis.isHorizontalAxis) {
|
|
134
|
-
var cachedlabel =
|
|
135
|
-
if (!cachedlabel) {
|
|
200
|
+
var cachedlabel = LabelCache_1.labelCache.getLabel(labelText, this.styleId);
|
|
201
|
+
if (!cachedlabel || !cachedlabel.textureWidth) {
|
|
136
202
|
var padding = labelStyle.padding;
|
|
137
|
-
return TextureManager_1.measureTextWidth(ctx, labelText) + padding.left + padding.right;
|
|
203
|
+
return (0, TextureManager_1.measureTextWidth)(ctx, labelText) + padding.left + padding.right;
|
|
138
204
|
}
|
|
139
205
|
return cachedlabel.textureWidth;
|
|
140
206
|
}
|
|
@@ -183,57 +249,110 @@ var LabelProviderBase2D = /** @class */ (function (_super) {
|
|
|
183
249
|
* @param labelStyle The style for the text
|
|
184
250
|
* @returns A TTextureObject containing the bitmapTexture and the size
|
|
185
251
|
*/
|
|
186
|
-
LabelProviderBase2D.prototype.
|
|
187
|
-
var
|
|
252
|
+
LabelProviderBase2D.prototype.getCachedLabelTexture = function (labelText, textureManager, labelStyle) {
|
|
253
|
+
var _this = this;
|
|
254
|
+
var _a;
|
|
255
|
+
var cachedLabel = LabelCache_1.labelCache.getLabel(labelText, this.styleId);
|
|
188
256
|
if (cachedLabel) {
|
|
257
|
+
if (cachedLabel.textureWidth === undefined) {
|
|
258
|
+
// Log when this texture request was made. Kill and restart if too old
|
|
259
|
+
// Make sure this chart redraws if it is waiting on a label that was requested by a different chart
|
|
260
|
+
cachedLabel.registerNotifier(function () { return _super.prototype.invalidateParent.call(_this); });
|
|
261
|
+
}
|
|
189
262
|
return {
|
|
190
|
-
textureWidth: cachedLabel.textureWidth,
|
|
263
|
+
textureWidth: (_a = cachedLabel.textureWidth) !== null && _a !== void 0 ? _a : null,
|
|
191
264
|
textureHeight: cachedLabel.textureHeight,
|
|
192
265
|
bitmapTexture: cachedLabel.bitmapTexture
|
|
193
266
|
};
|
|
194
267
|
}
|
|
268
|
+
else if (this.asyncLabels) {
|
|
269
|
+
// Capture the styleId as it might have changed by the time the result comes in.
|
|
270
|
+
var callBackStyleId_1 = this.styleId;
|
|
271
|
+
this.getLabelTextureAsync(labelText, textureManager, labelStyle).then(function (result) {
|
|
272
|
+
var cached = LabelCache_1.labelCache.getLabel(labelText, callBackStyleId_1);
|
|
273
|
+
// This may not exist if the target chart has been deleted already.
|
|
274
|
+
if (cached) {
|
|
275
|
+
cached.textureHeight = result.textureHeight;
|
|
276
|
+
cached.textureWidth = result.textureWidth;
|
|
277
|
+
cached.bitmapTexture = result.bitmapTexture;
|
|
278
|
+
cached.textureUpdated();
|
|
279
|
+
// this.invalidateParent also clears cache, which we don't want here.
|
|
280
|
+
_super.prototype.invalidateParent.call(_this);
|
|
281
|
+
}
|
|
282
|
+
});
|
|
283
|
+
return {
|
|
284
|
+
textureWidth: undefined,
|
|
285
|
+
textureHeight: undefined,
|
|
286
|
+
bitmapTexture: undefined
|
|
287
|
+
};
|
|
288
|
+
}
|
|
195
289
|
else {
|
|
196
|
-
return
|
|
290
|
+
return this.getLabelTexture(labelText, textureManager, labelStyle);
|
|
197
291
|
}
|
|
198
292
|
};
|
|
293
|
+
/**
|
|
294
|
+
* Create a texture for the given label text asynchronously. This method is called if asyncLabels is true, otherwise getLabelTexture is used.
|
|
295
|
+
* If overriding this method with useSharedCache = true, consider setting it false for this LabelProvider,
|
|
296
|
+
* otherwise other axes using the same style and text may see your custom texture. Alternatively you can override getCachedStyle or set styleId directly
|
|
297
|
+
*/
|
|
298
|
+
LabelProviderBase2D.prototype.getLabelTextureAsync = function (labelText, textureManager, labelStyle) {
|
|
299
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
300
|
+
var image;
|
|
301
|
+
return __generator(this, function (_a) {
|
|
302
|
+
switch (_a.label) {
|
|
303
|
+
case 0:
|
|
304
|
+
if (!TextureWorker_1.textureWorker.isActive) return [3 /*break*/, 2];
|
|
305
|
+
return [4 /*yield*/, TextureWorker_1.textureWorker.measureAndGetImageData([labelText], labelStyle, this.rotationProperty)];
|
|
306
|
+
case 1:
|
|
307
|
+
image = _a.sent();
|
|
308
|
+
return [2 /*return*/, textureManager.createTextureFromImageData(image.imageData, image.textureWidth, image.textureHeight)];
|
|
309
|
+
case 2: return [2 /*return*/, this.getLabelTexture(labelText, textureManager, labelStyle)];
|
|
310
|
+
}
|
|
311
|
+
});
|
|
312
|
+
});
|
|
313
|
+
};
|
|
314
|
+
/**
|
|
315
|
+
* Create a texture for the given label text. This method is called if asyncLabels is false, otherwise getLabelTextureAsync is used.
|
|
316
|
+
* If overriding this method with useSharedCache = true, consider setting it false for this LabelProvider,
|
|
317
|
+
* otherwise other axes using the same style and text may see your custom texture. Alternatively you can override getCachedStyle or set styleId directly
|
|
318
|
+
*/
|
|
319
|
+
LabelProviderBase2D.prototype.getLabelTexture = function (labelText, textureManager, labelStyle) {
|
|
320
|
+
return textureManager.createTextTexture([labelText], labelStyle, this.rotationProperty);
|
|
321
|
+
};
|
|
199
322
|
LabelProviderBase2D.prototype.delete = function () {
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
var label = labels_1[_i];
|
|
203
|
-
try {
|
|
204
|
-
label.bitmapTexture = Deleter_1.deleteSafe(label.bitmapTexture);
|
|
205
|
-
}
|
|
206
|
-
catch (err) { }
|
|
323
|
+
if (this.styleId) {
|
|
324
|
+
LabelCache_1.labelCache.freeStyle(this.styleId);
|
|
207
325
|
}
|
|
208
326
|
this.tickToText.clear();
|
|
209
|
-
this.
|
|
210
|
-
this.cachedLabelStyle = null;
|
|
211
|
-
};
|
|
212
|
-
LabelProviderBase2D.prototype.checkTextStyleEqual = function (style1, style2) {
|
|
213
|
-
return (style1.alignment === style2.alignment &&
|
|
214
|
-
style1.color === style2.color &&
|
|
215
|
-
style1.fontFamily === style2.fontFamily &&
|
|
216
|
-
style1.fontSize === style2.fontSize &&
|
|
217
|
-
style1.fontStyle === style2.fontStyle &&
|
|
218
|
-
style1.fontWeight === style2.fontWeight &&
|
|
219
|
-
style1.padding.equals(style2.padding));
|
|
327
|
+
this.styleId = null;
|
|
220
328
|
};
|
|
221
329
|
LabelProviderBase2D.prototype.toJSON = function () {
|
|
222
330
|
var json = _super.prototype.toJSON.call(this);
|
|
223
331
|
var options = {
|
|
224
|
-
rotation: this.rotation
|
|
332
|
+
rotation: this.rotation,
|
|
333
|
+
asyncLabels: this.asyncLabels,
|
|
334
|
+
useSharedCache: this.useSharedCache
|
|
225
335
|
};
|
|
226
336
|
Object.assign(json.options, options);
|
|
227
337
|
return json;
|
|
228
338
|
};
|
|
339
|
+
/**
|
|
340
|
+
* This method creates the text style to be stored in the label cache.
|
|
341
|
+
* When useSharedCache = true, the label cache will generate a new styleId if this style does not match any existing style.
|
|
342
|
+
* Cached labels are accessed by text and styleId.
|
|
343
|
+
* If you are overriding getLabelTexture or getLabelTextureAsync and do not ensure the style is unique, you might not get the labels you expect.
|
|
344
|
+
* You can either set useSharedCache = false, override this and set the extras field in {@link TCachedLabelStyle}, or set styleId directly
|
|
345
|
+
*/
|
|
346
|
+
LabelProviderBase2D.prototype.getCachedStyle = function () {
|
|
347
|
+
var axis = this.parentAxis;
|
|
348
|
+
return __assign(__assign({}, axis.dpiAdjustedLabelStyle), { rotation: this.rotation, providerId: this.useSharedCache ? undefined : this.providerId });
|
|
349
|
+
};
|
|
229
350
|
LabelProviderBase2D.prototype.clearCache = function () {
|
|
230
351
|
if (this.useCache) {
|
|
231
352
|
// Clear cache if property changed
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
element.bitmapTexture = Deleter_1.deleteSafe(element.bitmapTexture);
|
|
236
|
-
this.labelCacheByText.delete(element.text);
|
|
353
|
+
if (this.styleId) {
|
|
354
|
+
LabelCache_1.labelCache.freeStyle(this.styleId);
|
|
355
|
+
this.styleId = undefined;
|
|
237
356
|
}
|
|
238
357
|
this.tickToText.clear();
|
|
239
358
|
}
|
|
@@ -242,28 +361,6 @@ var LabelProviderBase2D = /** @class */ (function (_super) {
|
|
|
242
361
|
this.clearCache();
|
|
243
362
|
_super.prototype.invalidateParent.call(this);
|
|
244
363
|
};
|
|
245
|
-
LabelProviderBase2D.prototype.pruneCache = function (maxSize) {
|
|
246
|
-
if (this.labelCacheByText.size > maxSize) {
|
|
247
|
-
// remove more than we need so we do this less.
|
|
248
|
-
var toRemove = (maxSize - this.labelCacheByText.size) * 2;
|
|
249
|
-
// Sort the items by LastUsed ascending
|
|
250
|
-
var labels = Array.from(this.labelCacheByText.values());
|
|
251
|
-
labels.sort(function (a, b) { return a.lastUsed - b.lastUsed; });
|
|
252
|
-
var tickMap = Array.from(this.tickToText.entries());
|
|
253
|
-
// remove earliest
|
|
254
|
-
for (var index = 0; index < toRemove; index++) {
|
|
255
|
-
var element = labels[index];
|
|
256
|
-
element.bitmapTexture = Deleter_1.deleteSafe(element.bitmapTexture);
|
|
257
|
-
this.labelCacheByText.delete(element.text);
|
|
258
|
-
for (var _i = 0, tickMap_1 = tickMap; _i < tickMap_1.length; _i++) {
|
|
259
|
-
var entry = tickMap_1[_i];
|
|
260
|
-
if (entry[1] === element.text) {
|
|
261
|
-
this.tickToText.delete(entry[0]);
|
|
262
|
-
}
|
|
263
|
-
}
|
|
264
|
-
}
|
|
265
|
-
}
|
|
266
|
-
};
|
|
267
364
|
return LabelProviderBase2D;
|
|
268
365
|
}(LabelProvider_1.LabelProvider));
|
|
269
366
|
exports.LabelProviderBase2D = LabelProviderBase2D;
|
|
@@ -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 __());
|
|
@@ -42,8 +44,8 @@ var LogarithmicLabelProvider = /** @class */ (function (_super) {
|
|
|
42
44
|
var _this = _super.call(this, __assign({ labelFormat: (_a = options === null || options === void 0 ? void 0 : options.labelFormat) !== null && _a !== void 0 ? _a : NumericFormat_1.ENumericFormat.Scientific, labelPrecision: (_b = options === null || options === void 0 ? void 0 : options.labelPrecision) !== null && _b !== void 0 ? _b : 1 }, options)) || this;
|
|
43
45
|
_this.formatLabelProperty = function (dataValue) {
|
|
44
46
|
return _this.numericFormat === NumericFormat_1.ENumericFormat.Scientific
|
|
45
|
-
? _this.applyFormat(number_1.toScientific(dataValue, _this.precision, _this.logarithmicBase))
|
|
46
|
-
: _this.applyFormat(number_1.formatNumber(dataValue, _this.numericFormat, _this.precision));
|
|
47
|
+
? _this.applyFormat((0, number_1.toScientific)(dataValue, _this.precision, _this.logarithmicBase))
|
|
48
|
+
: _this.applyFormat((0, number_1.formatNumber)(dataValue, _this.numericFormat, _this.precision));
|
|
47
49
|
};
|
|
48
50
|
return _this;
|
|
49
51
|
}
|
|
@@ -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 __());
|
|
@@ -43,11 +45,11 @@ var NumericLabelProvider = /** @class */ (function (_super) {
|
|
|
43
45
|
var _this = _super.call(this, __assign({ labelFormat: (_a = options === null || options === void 0 ? void 0 : options.labelFormat) !== null && _a !== void 0 ? _a : NumericFormat_1.ENumericFormat.Decimal, labelPrecision: (_b = options === null || options === void 0 ? void 0 : options.labelPrecision) !== null && _b !== void 0 ? _b : 1 }, options)) || this;
|
|
44
46
|
_this.type = LabelProviderType_1.ELabelProviderType.Numeric;
|
|
45
47
|
_this.formatLabelProperty = function (dataValue) {
|
|
46
|
-
return _this.applyFormat(number_1.formatNumber(dataValue, _this.numericFormat, _this.precision));
|
|
48
|
+
return _this.applyFormat((0, number_1.formatNumber)(dataValue, _this.numericFormat, _this.precision));
|
|
47
49
|
};
|
|
48
50
|
_this.formatCursorLabelProperty = function (dataValue) {
|
|
49
51
|
var _a, _b;
|
|
50
|
-
return _this.applyFormat(number_1.formatNumber(dataValue, (_a = _this.cursorNumericFormat) !== null && _a !== void 0 ? _a : _this.numericFormat, (_b = _this.cursorPrecision) !== null && _b !== void 0 ? _b : _this.precision));
|
|
52
|
+
return _this.applyFormat((0, number_1.formatNumber)(dataValue, (_a = _this.cursorNumericFormat) !== null && _a !== void 0 ? _a : _this.numericFormat, (_b = _this.cursorPrecision) !== null && _b !== void 0 ? _b : _this.precision));
|
|
51
53
|
};
|
|
52
54
|
return _this;
|
|
53
55
|
}
|
|
@@ -3,32 +3,24 @@ 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 __());
|
|
13
15
|
};
|
|
14
16
|
})();
|
|
15
|
-
var __assign = (this && this.__assign) || function () {
|
|
16
|
-
__assign = Object.assign || function(t) {
|
|
17
|
-
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
18
|
-
s = arguments[i];
|
|
19
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
20
|
-
t[p] = s[p];
|
|
21
|
-
}
|
|
22
|
-
return t;
|
|
23
|
-
};
|
|
24
|
-
return __assign.apply(this, arguments);
|
|
25
|
-
};
|
|
26
17
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
27
18
|
exports.SmartDateLabelProvider = void 0;
|
|
28
19
|
var LabelProviderType_1 = require("../../../../types/LabelProviderType");
|
|
29
20
|
var NumericFormat_1 = require("../../../../types/NumericFormat");
|
|
30
21
|
var date_1 = require("../../../../utils/date");
|
|
31
22
|
var number_1 = require("../../../../utils/number");
|
|
23
|
+
var LabelCache_1 = require("./LabelCache");
|
|
32
24
|
var LabelProviderBase2D_1 = require("./LabelProviderBase2D");
|
|
33
25
|
var ETradeChartLabelFormat;
|
|
34
26
|
(function (ETradeChartLabelFormat) {
|
|
@@ -52,7 +44,7 @@ var SmartDateLabelProvider = /** @class */ (function (_super) {
|
|
|
52
44
|
function SmartDateLabelProvider() {
|
|
53
45
|
var _this = _super.call(this) || this;
|
|
54
46
|
_this.type = LabelProviderType_1.ELabelProviderType.SmartDate;
|
|
55
|
-
_this.formatLabelProperty = function (dataValue) { return number_1.formatNumber(dataValue, NumericFormat_1.ENumericFormat.Date_DDMMYYYY, 0); };
|
|
47
|
+
_this.formatLabelProperty = function (dataValue) { return (0, number_1.formatNumber)(dataValue, NumericFormat_1.ENumericFormat.Date_DDMMYYYY, 0); };
|
|
56
48
|
_this.formatCursorLabelProperty = _this.formatLabelProperty;
|
|
57
49
|
return _this;
|
|
58
50
|
}
|
|
@@ -77,26 +69,27 @@ var SmartDateLabelProvider = /** @class */ (function (_super) {
|
|
|
77
69
|
var format = this.getTradeChartLabelFormat(timeRange, ticksNumber);
|
|
78
70
|
for (var index = 0; index < ticks.length; index++) {
|
|
79
71
|
var tick = ticks[index];
|
|
72
|
+
var prevValue = index > 0 ? ticks[index - 1] : undefined;
|
|
73
|
+
var prevPrevValue = index > 0 ? ticks[index - 2] : undefined;
|
|
74
|
+
var text = this.formatTradeChartLabel(format, tick, prevValue, prevPrevValue);
|
|
80
75
|
var cachedLabelText = this.tickToText.get(tick);
|
|
81
76
|
var cachedLabel = void 0;
|
|
82
|
-
if (cachedLabelText) {
|
|
83
|
-
cachedLabel =
|
|
77
|
+
if (cachedLabelText && cachedLabelText === text) {
|
|
78
|
+
cachedLabel = LabelCache_1.labelCache.getLabel(cachedLabelText, this.styleId);
|
|
84
79
|
labels.push(cachedLabelText);
|
|
85
|
-
cachedLabel.lastUsed = Date.now();
|
|
86
80
|
}
|
|
87
81
|
else {
|
|
88
|
-
var prevValue = index > 0 ? ticks[index - 1] : undefined;
|
|
89
|
-
var prevPrevValue = index > 0 ? ticks[index - 2] : undefined;
|
|
90
|
-
var text = this.formatTradeChartLabel(format, tick, prevValue, prevPrevValue);
|
|
91
|
-
var axis = this.parentAxis;
|
|
92
|
-
var texture = this.getLabelTexture(text, axis.axisRenderer.textureManager, axis.dpiAdjustedLabelStyle);
|
|
93
|
-
cachedLabel = __assign(__assign({ tick: tick, text: text }, texture), { lastUsed: Date.now() });
|
|
94
82
|
this.tickToText.set(tick, text);
|
|
95
|
-
this.
|
|
83
|
+
var axis = this.parentAxis;
|
|
84
|
+
var texture = this.getCachedLabelTexture(text, axis.axisRenderer.textureManager, axis.dpiAdjustedLabelStyle);
|
|
85
|
+
if (!texture.textureWidth) {
|
|
86
|
+
cachedLabel = new LabelProviderBase2D_1.LabelInfo(tick, text, texture.bitmapTexture, texture.textureHeight, texture.textureWidth);
|
|
87
|
+
LabelCache_1.labelCache.setLabel(text, this.styleId, cachedLabel);
|
|
88
|
+
}
|
|
96
89
|
labels.push(text);
|
|
97
90
|
}
|
|
98
91
|
}
|
|
99
|
-
|
|
92
|
+
LabelCache_1.labelCache.pruneCache();
|
|
100
93
|
return labels;
|
|
101
94
|
};
|
|
102
95
|
Object.defineProperty(SmartDateLabelProvider.prototype, "numericFormat", {
|
|
@@ -124,38 +117,38 @@ var SmartDateLabelProvider = /** @class */ (function (_super) {
|
|
|
124
117
|
};
|
|
125
118
|
SmartDateLabelProvider.prototype.formatTradeChartLabel = function (tradeChartLabelFormat, value, prevValue, prevPrevValue) {
|
|
126
119
|
if (tradeChartLabelFormat === ETradeChartLabelFormat.Minutes) {
|
|
127
|
-
var newDate = !prevValue || date_1.formatUnixDateToHumanStringMMMDD(value) !== date_1.formatUnixDateToHumanStringMMMDD(prevValue);
|
|
120
|
+
var newDate = !prevValue || (0, date_1.formatUnixDateToHumanStringMMMDD)(value) !== (0, date_1.formatUnixDateToHumanStringMMMDD)(prevValue);
|
|
128
121
|
if (newDate) {
|
|
129
|
-
return date_1.formatUnixDateToHumanStringMMMDD(value);
|
|
122
|
+
return (0, date_1.formatUnixDateToHumanStringMMMDD)(value);
|
|
130
123
|
}
|
|
131
124
|
else {
|
|
132
|
-
return date_1.formatUnixDateToHumanStringHHMM(value);
|
|
125
|
+
return (0, date_1.formatUnixDateToHumanStringHHMM)(value);
|
|
133
126
|
}
|
|
134
127
|
}
|
|
135
128
|
else if (tradeChartLabelFormat === ETradeChartLabelFormat.Days) {
|
|
136
|
-
var newMonth = !prevValue || date_1.formatUnixDateToHumanStringMMM(value) !== date_1.formatUnixDateToHumanStringMMM(prevValue);
|
|
129
|
+
var newMonth = !prevValue || (0, date_1.formatUnixDateToHumanStringMMM)(value) !== (0, date_1.formatUnixDateToHumanStringMMM)(prevValue);
|
|
137
130
|
if (newMonth) {
|
|
138
|
-
return date_1.formatUnixDateToHumanStringMMM(value);
|
|
131
|
+
return (0, date_1.formatUnixDateToHumanStringMMM)(value);
|
|
139
132
|
}
|
|
140
133
|
else {
|
|
141
|
-
return date_1.formatUnixDateToHumanStringDD(value);
|
|
134
|
+
return (0, date_1.formatUnixDateToHumanStringDD)(value);
|
|
142
135
|
}
|
|
143
136
|
}
|
|
144
137
|
else if (tradeChartLabelFormat === ETradeChartLabelFormat.Months) {
|
|
145
|
-
var newYear = !prevValue || date_1.formatUnixDateToHumanStringYYYY(value) !== date_1.formatUnixDateToHumanStringYYYY(prevValue);
|
|
138
|
+
var newYear = !prevValue || (0, date_1.formatUnixDateToHumanStringYYYY)(value) !== (0, date_1.formatUnixDateToHumanStringYYYY)(prevValue);
|
|
146
139
|
if (newYear) {
|
|
147
|
-
return date_1.formatUnixDateToHumanStringYYYY(value);
|
|
140
|
+
return (0, date_1.formatUnixDateToHumanStringYYYY)(value);
|
|
148
141
|
}
|
|
149
142
|
// If previous label was year, display month label
|
|
150
143
|
var prevPrevNewYear = !prevPrevValue ||
|
|
151
|
-
date_1.formatUnixDateToHumanStringYYYY(prevValue) !== date_1.formatUnixDateToHumanStringYYYY(prevPrevValue);
|
|
152
|
-
var newMonth = prevPrevNewYear || date_1.formatUnixDateToHumanStringMMM(value) !== date_1.formatUnixDateToHumanStringMMM(prevValue);
|
|
144
|
+
(0, date_1.formatUnixDateToHumanStringYYYY)(prevValue) !== (0, date_1.formatUnixDateToHumanStringYYYY)(prevPrevValue);
|
|
145
|
+
var newMonth = prevPrevNewYear || (0, date_1.formatUnixDateToHumanStringMMM)(value) !== (0, date_1.formatUnixDateToHumanStringMMM)(prevValue);
|
|
153
146
|
if (newMonth) {
|
|
154
|
-
return date_1.formatUnixDateToHumanStringMMM(value);
|
|
147
|
+
return (0, date_1.formatUnixDateToHumanStringMMM)(value);
|
|
155
148
|
}
|
|
156
|
-
return date_1.formatUnixDateToHumanStringDD(value);
|
|
149
|
+
return (0, date_1.formatUnixDateToHumanStringDD)(value);
|
|
157
150
|
}
|
|
158
|
-
return number_1.formatNumber(value, NumericFormat_1.ENumericFormat.Date_DDMMYYYY, 0);
|
|
151
|
+
return (0, number_1.formatNumber)(value, NumericFormat_1.ENumericFormat.Date_DDMMYYYY, 0);
|
|
159
152
|
};
|
|
160
153
|
return SmartDateLabelProvider;
|
|
161
154
|
}(LabelProviderBase2D_1.LabelProviderBase2D));
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ELabelProviderType } from "../../../../types/LabelProviderType";
|
|
2
2
|
import { TextureManager } from "../../TextureManager/TextureManager";
|
|
3
3
|
import { TTextStyle } from "../AxisCore";
|
|
4
|
+
import { TCachedLabelStyle } from "./LabelCache";
|
|
4
5
|
import { ILabel2DOptions, LabelProviderBase2D } from "./LabelProviderBase2D";
|
|
5
6
|
export interface ITextLabelOptions extends ILabel2DOptions {
|
|
6
7
|
/**
|
|
@@ -61,15 +62,17 @@ export declare class TextLabelProvider extends LabelProviderBase2D {
|
|
|
61
62
|
set lineSpacing(value: number);
|
|
62
63
|
onBeginAxisDraw(): void;
|
|
63
64
|
getLabelWidth(ctx: CanvasRenderingContext2D, labelText: string, labelStyle?: TTextStyle): number;
|
|
64
|
-
|
|
65
|
+
getLabelTextureAsync(labelText: string, textureManager: TextureManager, labelStyle: TTextStyle): Promise<import("../../TextureManager/TextureManager").TTextureObject>;
|
|
66
|
+
getLabelTexture(labelText: string, textureManager: TextureManager, labelStyle: TTextStyle): import("../../TextureManager/TextureManager").TTextureObject;
|
|
65
67
|
/**
|
|
66
68
|
* Convert the label text to an array of lines
|
|
67
69
|
*/
|
|
68
70
|
wrapText(text: string): string[];
|
|
69
71
|
toJSON(): {
|
|
70
72
|
type: string;
|
|
71
|
-
options: Required<
|
|
73
|
+
options: Required<Omit<import("./LabelProvider").ILabelOptions, never>>;
|
|
72
74
|
};
|
|
75
|
+
protected getCachedStyle(): TCachedLabelStyle;
|
|
73
76
|
}
|
|
74
77
|
/**
|
|
75
78
|
* Convert a string into an array of lines by splitting on spaces and wrapping to a maximum number of characters
|