@mui/x-charts 8.0.0-alpha.11 → 8.0.0-alpha.13
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/BarChart/AnimatedBarElement.d.ts +6 -6
- package/BarChart/AnimatedBarElement.js +15 -8
- package/BarChart/BarChart.d.ts +51 -52
- package/BarChart/BarChart.js +177 -187
- package/BarChart/BarChart.plugins.d.ts +7 -12
- package/BarChart/BarChart.plugins.js +11 -5
- package/BarChart/BarClipPath.d.ts +7 -7
- package/BarChart/BarClipPath.js +24 -17
- package/BarChart/BarElement.d.ts +32 -32
- package/BarChart/BarElement.js +38 -30
- package/BarChart/BarLabel/BarLabel.d.ts +853 -853
- package/BarChart/BarLabel/BarLabel.js +30 -23
- package/BarChart/BarLabel/BarLabel.types.d.ts +30 -30
- package/BarChart/BarLabel/BarLabel.types.js +5 -1
- package/BarChart/BarLabel/BarLabelItem.d.ts +40 -40
- package/BarChart/BarLabel/BarLabelItem.js +38 -31
- package/BarChart/BarLabel/BarLabelPlot.d.ts +5 -5
- package/BarChart/BarLabel/BarLabelPlot.js +20 -13
- package/BarChart/BarLabel/barLabelClasses.d.ts +7 -7
- package/BarChart/BarLabel/barLabelClasses.js +19 -9
- package/BarChart/BarLabel/getBarLabel.d.ts +9 -9
- package/BarChart/BarLabel/getBarLabel.js +9 -2
- package/BarChart/BarLabel/index.d.ts +3 -3
- package/BarChart/BarLabel/index.js +25 -2
- package/BarChart/BarPlot.d.ts +32 -34
- package/BarChart/BarPlot.js +48 -42
- package/BarChart/checkScaleErrors.d.ts +5 -5
- package/BarChart/checkScaleErrors.js +12 -6
- package/BarChart/getRadius.d.ts +11 -6
- package/BarChart/getRadius.js +9 -2
- package/BarChart/index.d.ts +4 -4
- package/BarChart/index.js +49 -4
- package/BarChart/seriesConfig/extremums.d.ts +3 -0
- package/BarChart/seriesConfig/getColor.d.ts +3 -0
- package/BarChart/seriesConfig/index.d.ts +2 -0
- package/BarChart/seriesConfig/index.js +20 -0
- package/BarChart/seriesConfig/legend.d.ts +3 -0
- package/BarChart/seriesConfig/legend.js +28 -0
- package/BarChart/seriesConfig/seriesProcessor.d.ts +3 -0
- package/BarChart/seriesConfig/seriesProcessor.js +80 -0
- package/BarChart/seriesConfig/tooltip.d.ts +3 -0
- package/BarChart/seriesConfig/tooltip.js +31 -0
- package/BarChart/types.d.ts +16 -16
- package/BarChart/types.js +5 -1
- package/BarChart/useBarChartProps.d.ts +23 -23
- package/BarChart/useBarChartProps.js +27 -36
- package/CHANGELOG.md +460 -1
- package/ChartContainer/ChartContainer.d.ts +8 -8
- package/ChartContainer/ChartContainer.js +182 -152
- package/ChartContainer/index.d.ts +1 -1
- package/ChartContainer/index.js +16 -1
- package/ChartContainer/useChartContainerProps.d.ts +11 -11
- package/ChartContainer/useChartContainerProps.js +22 -9
- package/ChartDataProvider/ChartDataProvider.d.ts +10 -10
- package/ChartDataProvider/ChartDataProvider.js +33 -26
- package/ChartDataProvider/index.d.ts +1 -1
- package/ChartDataProvider/index.js +16 -1
- package/ChartDataProvider/useChartDataProviderProps.d.ts +9 -9
- package/ChartDataProvider/useChartDataProviderProps.js +16 -23
- package/ChartsAxis/ChartsAxis.d.ts +13 -37
- package/ChartsAxis/ChartsAxis.js +42 -98
- package/ChartsAxis/axisClasses.d.ts +29 -25
- package/ChartsAxis/axisClasses.js +13 -5
- package/ChartsAxis/index.d.ts +2 -2
- package/ChartsAxis/index.js +27 -2
- package/ChartsAxisHighlight/ChartsAxisHighlight.d.ts +3 -3
- package/ChartsAxisHighlight/ChartsAxisHighlight.js +21 -15
- package/ChartsAxisHighlight/ChartsAxisHighlight.types.d.ts +3 -3
- package/ChartsAxisHighlight/ChartsAxisHighlight.types.js +5 -1
- package/ChartsAxisHighlight/ChartsAxisHighlightPath.d.ts +5 -5
- package/ChartsAxisHighlight/ChartsAxisHighlightPath.js +11 -5
- package/ChartsAxisHighlight/ChartsXAxisHighlight.d.ts +5 -5
- package/ChartsAxisHighlight/ChartsXAxisHighlight.js +25 -21
- package/ChartsAxisHighlight/ChartsYAxisHighlight.d.ts +5 -5
- package/ChartsAxisHighlight/ChartsYAxisHighlight.js +25 -21
- package/ChartsAxisHighlight/chartsAxisHighlightClasses.d.ts +3 -3
- package/ChartsAxisHighlight/chartsAxisHighlightClasses.js +13 -5
- package/ChartsAxisHighlight/index.d.ts +4 -4
- package/ChartsAxisHighlight/index.js +49 -4
- package/ChartsClipPath/ChartsClipPath.d.ts +9 -9
- package/ChartsClipPath/ChartsClipPath.js +23 -17
- package/ChartsClipPath/index.d.ts +1 -1
- package/ChartsClipPath/index.js +16 -1
- package/ChartsGrid/ChartsGrid.d.ts +15 -15
- package/ChartsGrid/ChartsGrid.js +33 -27
- package/ChartsGrid/ChartsHorizontalGrid.d.ts +7 -7
- package/ChartsGrid/ChartsHorizontalGrid.js +15 -8
- package/ChartsGrid/ChartsVerticalGrid.d.ts +7 -7
- package/ChartsGrid/ChartsVerticalGrid.js +15 -8
- package/ChartsGrid/chartsGridClasses.d.ts +9 -9
- package/ChartsGrid/chartsGridClasses.js +13 -5
- package/ChartsGrid/index.d.ts +2 -2
- package/ChartsGrid/index.js +27 -2
- package/ChartsGrid/styledComponents.d.ts +1 -1
- package/ChartsGrid/styledComponents.js +12 -6
- package/ChartsLabel/ChartsLabel.d.ts +9 -9
- package/ChartsLabel/ChartsLabel.js +23 -17
- package/ChartsLabel/ChartsLabelGradient.d.ts +32 -32
- package/ChartsLabel/ChartsLabelGradient.js +40 -34
- package/ChartsLabel/ChartsLabelMark.d.ts +22 -17
- package/ChartsLabel/ChartsLabelMark.js +47 -28
- package/ChartsLabel/index.d.ts +5 -5
- package/ChartsLabel/index.js +25 -5
- package/ChartsLabel/labelClasses.d.ts +3 -3
- package/ChartsLabel/labelClasses.js +18 -9
- package/ChartsLabel/labelGradientClasses.d.ts +11 -11
- package/ChartsLabel/labelGradientClasses.js +18 -9
- package/ChartsLabel/labelMarkClasses.d.ts +13 -13
- package/ChartsLabel/labelMarkClasses.js +19 -10
- package/ChartsLegend/ChartsLegend.d.ts +21 -21
- package/ChartsLegend/ChartsLegend.js +43 -37
- package/ChartsLegend/ContinuousColorLegend.d.ts +48 -48
- package/ChartsLegend/ContinuousColorLegend.js +65 -58
- package/ChartsLegend/PiecewiseColorLegend.d.ts +36 -36
- package/ChartsLegend/PiecewiseColorLegend.js +65 -59
- package/ChartsLegend/chartsLegend.types.d.ts +20 -20
- package/ChartsLegend/chartsLegend.types.js +5 -1
- package/ChartsLegend/chartsLegendClasses.d.ts +14 -14
- package/ChartsLegend/chartsLegendClasses.js +15 -7
- package/ChartsLegend/colorLegend.types.d.ts +12 -12
- package/ChartsLegend/colorLegend.types.js +5 -1
- package/ChartsLegend/continuousColorLegendClasses.d.ts +22 -22
- package/ChartsLegend/continuousColorLegendClasses.js +15 -7
- package/ChartsLegend/direction.d.ts +1 -1
- package/ChartsLegend/direction.js +5 -1
- package/ChartsLegend/index.d.ts +12 -12
- package/ChartsLegend/index.js +135 -12
- package/ChartsLegend/legend.types.d.ts +8 -8
- package/ChartsLegend/legend.types.js +5 -1
- package/ChartsLegend/legendContext.types.d.ts +46 -46
- package/ChartsLegend/legendContext.types.js +5 -1
- package/ChartsLegend/onClickContextBuilder.d.ts +2 -2
- package/ChartsLegend/onClickContextBuilder.js +9 -2
- package/ChartsLegend/piecewiseColorDefaultLabelFormatter.d.ts +2 -2
- package/ChartsLegend/piecewiseColorDefaultLabelFormatter.js +7 -1
- package/ChartsLegend/piecewiseColorLegend.types.d.ts +25 -25
- package/ChartsLegend/piecewiseColorLegend.types.js +5 -1
- package/ChartsLegend/piecewiseColorLegendClasses.d.ts +24 -24
- package/ChartsLegend/piecewiseColorLegendClasses.js +15 -7
- package/ChartsLegend/useAxis.d.ts +7 -4
- package/ChartsLegend/useAxis.js +11 -6
- package/ChartsOverlay/ChartsLoadingOverlay.d.ts +1 -1
- package/ChartsOverlay/ChartsLoadingOverlay.js +19 -12
- package/ChartsOverlay/ChartsNoDataOverlay.d.ts +1 -1
- package/ChartsOverlay/ChartsNoDataOverlay.js +19 -12
- package/ChartsOverlay/ChartsOverlay.d.ts +33 -33
- package/ChartsOverlay/ChartsOverlay.js +21 -13
- package/ChartsOverlay/index.d.ts +4 -4
- package/ChartsOverlay/index.js +26 -3
- package/ChartsReferenceLine/ChartsReferenceLine.d.ts +5 -5
- package/ChartsReferenceLine/ChartsReferenceLine.js +27 -21
- package/ChartsReferenceLine/ChartsXReferenceLine.d.ts +9 -9
- package/ChartsReferenceLine/ChartsXReferenceLine.js +29 -22
- package/ChartsReferenceLine/ChartsYReferenceLine.d.ts +9 -9
- package/ChartsReferenceLine/ChartsYReferenceLine.js +29 -22
- package/ChartsReferenceLine/chartsReferenceLineClasses.d.ts +11 -11
- package/ChartsReferenceLine/chartsReferenceLineClasses.js +13 -5
- package/ChartsReferenceLine/common.d.ts +39 -39
- package/ChartsReferenceLine/common.js +13 -6
- package/ChartsReferenceLine/index.d.ts +2 -2
- package/ChartsReferenceLine/index.js +27 -2
- package/ChartsSurface/ChartsSurface.d.ts +6 -6
- package/ChartsSurface/ChartsSurface.js +38 -32
- package/ChartsSurface/index.d.ts +1 -1
- package/ChartsSurface/index.js +16 -1
- package/ChartsText/ChartsText.d.ts +8 -8
- package/ChartsText/ChartsText.js +24 -18
- package/ChartsText/index.d.ts +2 -2
- package/ChartsText/index.js +12 -1
- package/ChartsTooltip/ChartTooltip.types.d.ts +12 -12
- package/ChartsTooltip/ChartTooltip.types.js +5 -1
- package/ChartsTooltip/ChartsAxisTooltipContent.d.ts +8 -8
- package/ChartsTooltip/ChartsAxisTooltipContent.js +42 -36
- package/ChartsTooltip/ChartsItemTooltipContent.d.ts +8 -8
- package/ChartsTooltip/ChartsItemTooltipContent.js +31 -25
- package/ChartsTooltip/ChartsTooltip.d.ts +4 -5
- package/ChartsTooltip/ChartsTooltip.js +72 -66
- package/ChartsTooltip/ChartsTooltipContainer.d.ts +17 -17
- package/ChartsTooltip/ChartsTooltipContainer.js +118 -101
- package/ChartsTooltip/ChartsTooltipTable.d.ts +1 -1
- package/ChartsTooltip/ChartsTooltipTable.js +15 -10
- package/ChartsTooltip/chartsTooltipClasses.d.ts +21 -21
- package/ChartsTooltip/chartsTooltipClasses.js +19 -9
- package/ChartsTooltip/index.d.ts +10 -10
- package/ChartsTooltip/index.js +126 -10
- package/ChartsTooltip/useAxisTooltip.d.ts +15 -15
- package/ChartsTooltip/useAxisTooltip.js +30 -24
- package/ChartsTooltip/useItemTooltip.d.ts +9 -9
- package/ChartsTooltip/useItemTooltip.js +20 -15
- package/ChartsTooltip/utils.d.ts +5 -5
- package/ChartsTooltip/utils.js +15 -7
- package/ChartsXAxis/ChartsXAxis.d.ts +3 -3
- package/ChartsXAxis/ChartsXAxis.js +142 -123
- package/ChartsXAxis/index.d.ts +1 -1
- package/ChartsXAxis/index.js +16 -1
- package/ChartsYAxis/ChartsYAxis.d.ts +3 -3
- package/ChartsYAxis/ChartsYAxis.js +83 -81
- package/ChartsYAxis/index.d.ts +1 -1
- package/ChartsYAxis/index.js +16 -1
- package/Gauge/Gauge.d.ts +6 -6
- package/Gauge/Gauge.js +56 -49
- package/Gauge/GaugeContainer.d.ts +6 -6
- package/Gauge/GaugeContainer.js +53 -45
- package/Gauge/GaugeProvider.d.ts +103 -103
- package/Gauge/GaugeProvider.js +25 -17
- package/Gauge/GaugeReferenceArc.d.ts +1 -1
- package/Gauge/GaugeReferenceArc.js +18 -11
- package/Gauge/GaugeValueArc.d.ts +1 -1
- package/Gauge/GaugeValueArc.js +18 -11
- package/Gauge/GaugeValueText.d.ts +7 -7
- package/Gauge/GaugeValueText.js +24 -18
- package/Gauge/gaugeClasses.d.ts +9 -9
- package/Gauge/gaugeClasses.js +14 -6
- package/Gauge/index.d.ts +7 -7
- package/Gauge/index.js +87 -7
- package/Gauge/utils.d.ts +17 -12
- package/Gauge/utils.js +9 -2
- package/LineChart/AnimatedArea.d.ts +9 -9
- package/LineChart/AnimatedArea.js +30 -24
- package/LineChart/AnimatedLine.d.ts +9 -9
- package/LineChart/AnimatedLine.js +30 -24
- package/LineChart/AppearingMask.d.ts +5 -5
- package/LineChart/AppearingMask.js +20 -14
- package/LineChart/AreaElement.d.ts +33 -33
- package/LineChart/AreaElement.js +41 -33
- package/LineChart/AreaPlot.d.ts +12 -14
- package/LineChart/AreaPlot.js +44 -38
- package/LineChart/CircleMarkElement.d.ts +12 -12
- package/LineChart/CircleMarkElement.js +35 -29
- package/LineChart/LineChart.d.ts +68 -69
- package/LineChart/LineChart.js +182 -192
- package/LineChart/LineChart.plugins.d.ts +7 -12
- package/LineChart/LineChart.plugins.js +11 -5
- package/LineChart/LineElement.d.ts +33 -33
- package/LineChart/LineElement.js +41 -33
- package/LineChart/LineHighlightElement.d.ts +12 -12
- package/LineChart/LineHighlightElement.js +33 -25
- package/LineChart/LineHighlightPlot.d.ts +15 -15
- package/LineChart/LineHighlightPlot.js +38 -32
- package/LineChart/LinePlot.d.ts +12 -14
- package/LineChart/LinePlot.js +44 -38
- package/LineChart/MarkElement.d.ts +16 -16
- package/LineChart/MarkElement.js +40 -34
- package/LineChart/MarkPlot.d.ts +22 -22
- package/LineChart/MarkPlot.js +43 -37
- package/LineChart/index.d.ts +12 -12
- package/LineChart/index.js +154 -12
- package/LineChart/markElementClasses.d.ts +13 -13
- package/LineChart/markElementClasses.js +18 -9
- package/LineChart/seriesConfig/extremums.d.ts +3 -0
- package/LineChart/seriesConfig/getColor.d.ts +3 -0
- package/LineChart/seriesConfig/index.d.ts +2 -0
- package/LineChart/seriesConfig/index.js +20 -0
- package/LineChart/seriesConfig/legend.d.ts +3 -0
- package/LineChart/seriesConfig/legend.js +28 -0
- package/LineChart/seriesConfig/seriesProcessor.d.ts +3 -0
- package/LineChart/seriesConfig/seriesProcessor.js +84 -0
- package/LineChart/seriesConfig/tooltip.d.ts +3 -0
- package/LineChart/seriesConfig/tooltip.js +31 -0
- package/LineChart/useLineChartProps.d.ts +29 -29
- package/LineChart/useLineChartProps.js +23 -32
- package/PieChart/PieArc.d.ts +22 -22
- package/PieChart/PieArc.js +37 -29
- package/PieChart/PieArcLabel.d.ts +22 -22
- package/PieChart/PieArcLabel.js +38 -30
- package/PieChart/PieArcLabelPlot.d.ts +26 -26
- package/PieChart/PieArcLabelPlot.js +66 -60
- package/PieChart/PieArcPlot.d.ts +33 -33
- package/PieChart/PieArcPlot.js +60 -54
- package/PieChart/PieChart.d.ts +35 -38
- package/PieChart/PieChart.js +71 -65
- package/PieChart/PieChart.plugins.d.ts +4 -4
- package/PieChart/PieChart.plugins.js +9 -3
- package/PieChart/PiePlot.d.ts +16 -18
- package/PieChart/PiePlot.js +37 -31
- package/PieChart/dataTransform/transition.d.ts +2 -2
- package/PieChart/dataTransform/transition.js +11 -3
- package/PieChart/dataTransform/useTransformData.d.ts +12 -12
- package/PieChart/dataTransform/useTransformData.js +14 -7
- package/PieChart/getPieCoordinates.d.ts +6 -6
- package/PieChart/getPieCoordinates.js +10 -4
- package/PieChart/index.d.ts +7 -7
- package/PieChart/index.js +82 -7
- package/PieChart/seriesConfig/getColor.d.ts +3 -0
- package/PieChart/seriesConfig/index.d.ts +2 -0
- package/PieChart/seriesConfig/index.js +17 -0
- package/PieChart/seriesConfig/legend.d.ts +3 -0
- package/PieChart/seriesConfig/legend.js +31 -0
- package/PieChart/seriesConfig/seriesProcessor.d.ts +3 -0
- package/PieChart/seriesConfig/seriesProcessor.js +56 -0
- package/PieChart/seriesConfig/tooltip.d.ts +3 -0
- package/PieChart/seriesConfig/tooltip.js +36 -0
- package/ScatterChart/Scatter.d.ts +16 -16
- package/ScatterChart/Scatter.js +35 -29
- package/ScatterChart/ScatterChart.d.ts +56 -57
- package/ScatterChart/ScatterChart.js +195 -207
- package/ScatterChart/ScatterChart.plugins.d.ts +8 -12
- package/ScatterChart/ScatterChart.plugins.js +12 -5
- package/ScatterChart/ScatterPlot.d.ts +15 -15
- package/ScatterChart/ScatterPlot.js +28 -22
- package/ScatterChart/index.d.ts +3 -3
- package/ScatterChart/index.js +38 -3
- package/ScatterChart/seriesConfig/extremums.d.ts +3 -0
- package/ScatterChart/seriesConfig/getColor.d.ts +3 -0
- package/ScatterChart/seriesConfig/index.d.ts +2 -0
- package/ScatterChart/seriesConfig/index.js +20 -0
- package/ScatterChart/seriesConfig/legend.d.ts +3 -0
- package/ScatterChart/seriesConfig/legend.js +28 -0
- package/ScatterChart/seriesConfig/seriesProcessor.d.ts +3 -0
- package/ScatterChart/seriesConfig/seriesProcessor.js +39 -0
- package/ScatterChart/seriesConfig/tooltip.d.ts +3 -0
- package/ScatterChart/seriesConfig/tooltip.js +31 -0
- package/ScatterChart/useScatterChartProps.d.ts +17 -19
- package/ScatterChart/useScatterChartProps.js +22 -33
- package/SparkLineChart/SparkLineChart.d.ts +88 -100
- package/SparkLineChart/SparkLineChart.js +199 -182
- package/SparkLineChart/index.d.ts +1 -1
- package/SparkLineChart/index.js +16 -1
- package/colorPalettes/colorPalettes.d.ts +1 -1
- package/colorPalettes/colorPalettes.js +22 -12
- package/colorPalettes/index.d.ts +1 -1
- package/colorPalettes/index.js +16 -1
- package/constants/index.d.ts +12 -5
- package/constants/index.js +21 -8
- package/context/AnimationProvider/Animation.types.d.ts +12 -12
- package/context/AnimationProvider/Animation.types.js +5 -1
- package/context/AnimationProvider/AnimationContext.d.ts +3 -3
- package/context/AnimationProvider/AnimationContext.js +9 -2
- package/context/AnimationProvider/AnimationProvider.d.ts +2 -2
- package/context/AnimationProvider/AnimationProvider.js +14 -9
- package/context/AnimationProvider/index.d.ts +4 -4
- package/context/AnimationProvider/index.js +49 -4
- package/context/AnimationProvider/useSkipAnimation.d.ts +1 -1
- package/context/AnimationProvider/useSkipAnimation.js +11 -6
- package/context/ChartProvider/ChartContext.d.ts +2 -2
- package/context/ChartProvider/ChartContext.js +9 -2
- package/context/ChartProvider/ChartProvider.d.ts +5 -5
- package/context/ChartProvider/ChartProvider.js +28 -22
- package/context/ChartProvider/ChartProvider.types.d.ts +35 -36
- package/context/ChartProvider/ChartProvider.types.js +5 -1
- package/context/ChartProvider/index.d.ts +3 -3
- package/context/ChartProvider/index.js +38 -3
- package/context/ChartProvider/useChartContext.d.ts +3 -3
- package/context/ChartProvider/useChartContext.js +12 -5
- package/context/PolarProvider/Polar.types.d.ts +39 -38
- package/context/PolarProvider/Polar.types.js +5 -1
- package/context/PolarProvider/PolarContext.d.ts +3 -3
- package/context/PolarProvider/PolarContext.js +9 -2
- package/context/PolarProvider/PolarProvider.js +1 -0
- package/context/PolarProvider/getAxisExtremum.js +2 -1
- package/context/PolarProvider/index.js +1 -0
- package/context/PolarProvider/usePolarContext.js +1 -0
- package/context/context.types.d.ts +3 -3
- package/context/context.types.js +5 -1
- package/context/index.d.ts +1 -1
- package/context/index.js +5 -1
- package/esm/BarChart/AnimatedBarElement.d.ts +15 -0
- package/esm/BarChart/AnimatedBarElement.js +22 -0
- package/esm/BarChart/BarChart.d.ts +66 -0
- package/esm/BarChart/BarChart.js +321 -0
- package/esm/BarChart/BarChart.plugins.d.ts +7 -0
- package/esm/BarChart/BarChart.plugins.js +5 -0
- package/esm/BarChart/BarClipPath.d.ts +14 -0
- package/esm/BarChart/BarClipPath.js +42 -0
- package/esm/BarChart/BarElement.d.ts +50 -0
- package/esm/BarChart/BarElement.js +101 -0
- package/esm/BarChart/BarLabel/BarLabel.d.ts +861 -0
- package/esm/BarChart/BarLabel/BarLabel.js +53 -0
- package/esm/BarChart/BarLabel/BarLabel.types.d.ts +39 -0
- package/esm/BarChart/BarLabel/BarLabelItem.d.ts +54 -0
- package/esm/BarChart/BarLabel/BarLabelItem.js +119 -0
- package/esm/BarChart/BarLabel/BarLabelPlot.d.ts +13 -0
- package/esm/BarChart/BarLabel/BarLabelPlot.js +75 -0
- package/esm/BarChart/BarLabel/barLabelClasses.d.ts +13 -0
- package/esm/BarChart/BarLabel/barLabelClasses.js +19 -0
- package/esm/BarChart/BarLabel/getBarLabel.d.ts +10 -0
- package/esm/BarChart/BarLabel/getBarLabel.js +24 -0
- package/esm/BarChart/BarLabel/index.d.ts +6 -0
- package/esm/BarChart/BarLabel/index.js +2 -0
- package/esm/BarChart/BarPlot.d.ts +49 -0
- package/esm/BarChart/BarPlot.js +321 -0
- package/esm/BarChart/checkScaleErrors.d.ts +7 -0
- package/esm/BarChart/checkScaleErrors.js +27 -0
- package/esm/BarChart/getRadius.d.ts +20 -0
- package/esm/BarChart/getRadius.js +30 -0
- package/esm/BarChart/index.d.ts +4 -0
- package/esm/BarChart/index.js +4 -0
- package/esm/BarChart/seriesConfig/extremums.d.ts +3 -0
- package/esm/BarChart/seriesConfig/getColor.d.ts +3 -0
- package/esm/BarChart/seriesConfig/index.d.ts +2 -0
- package/esm/BarChart/seriesConfig/index.js +13 -0
- package/esm/BarChart/seriesConfig/legend.d.ts +3 -0
- package/esm/BarChart/seriesConfig/legend.js +22 -0
- package/esm/BarChart/seriesConfig/seriesProcessor.d.ts +3 -0
- package/esm/BarChart/seriesConfig/seriesProcessor.js +73 -0
- package/esm/BarChart/seriesConfig/tooltip.d.ts +3 -0
- package/esm/BarChart/seriesConfig/tooltip.js +25 -0
- package/esm/BarChart/types.d.ts +23 -0
- package/esm/BarChart/useBarChartProps.d.ts +33 -0
- package/esm/BarChart/useBarChartProps.js +130 -0
- package/esm/ChartContainer/ChartContainer.d.ts +35 -0
- package/esm/ChartContainer/ChartContainer.js +288 -0
- package/esm/ChartContainer/index.d.ts +1 -0
- package/esm/ChartContainer/index.js +1 -0
- package/esm/ChartContainer/useChartContainerProps.d.ts +15 -0
- package/esm/ChartContainer/useChartContainerProps.js +67 -0
- package/esm/ChartDataProvider/ChartDataProvider.d.ts +41 -0
- package/esm/ChartDataProvider/ChartDataProvider.js +98 -0
- package/esm/ChartDataProvider/index.d.ts +1 -0
- package/esm/ChartDataProvider/index.js +1 -0
- package/esm/ChartDataProvider/useChartDataProviderProps.d.ts +11 -0
- package/esm/ChartDataProvider/useChartDataProviderProps.js +31 -0
- package/esm/ChartsAxis/ChartsAxis.d.ts +28 -0
- package/esm/ChartsAxis/ChartsAxis.js +69 -0
- package/esm/ChartsAxis/axisClasses.d.ts +33 -0
- package/esm/ChartsAxis/axisClasses.js +6 -0
- package/esm/ChartsAxis/index.d.ts +2 -0
- package/esm/ChartsAxis/index.js +2 -0
- package/esm/ChartsAxisHighlight/ChartsAxisHighlight.d.ts +16 -0
- package/esm/ChartsAxisHighlight/ChartsAxisHighlight.js +50 -0
- package/esm/ChartsAxisHighlight/ChartsAxisHighlight.types.d.ts +5 -0
- package/esm/ChartsAxisHighlight/ChartsAxisHighlight.types.js +1 -0
- package/esm/ChartsAxisHighlight/ChartsAxisHighlightPath.d.ts +6 -0
- package/esm/ChartsAxisHighlight/ChartsAxisHighlightPath.js +34 -0
- package/esm/ChartsAxisHighlight/ChartsXAxisHighlight.d.ts +10 -0
- package/esm/ChartsAxisHighlight/ChartsXAxisHighlight.js +53 -0
- package/esm/ChartsAxisHighlight/ChartsYAxisHighlight.d.ts +10 -0
- package/esm/ChartsAxisHighlight/ChartsYAxisHighlight.js +53 -0
- package/esm/ChartsAxisHighlight/chartsAxisHighlightClasses.d.ts +7 -0
- package/esm/ChartsAxisHighlight/chartsAxisHighlightClasses.js +6 -0
- package/esm/ChartsAxisHighlight/index.d.ts +4 -0
- package/esm/ChartsAxisHighlight/index.js +4 -0
- package/esm/ChartsClipPath/ChartsClipPath.d.ts +20 -0
- package/esm/ChartsClipPath/ChartsClipPath.js +53 -0
- package/esm/ChartsClipPath/index.d.ts +1 -0
- package/esm/ChartsClipPath/index.js +1 -0
- package/esm/ChartsGrid/ChartsGrid.d.ts +30 -0
- package/esm/ChartsGrid/ChartsGrid.js +91 -0
- package/esm/ChartsGrid/ChartsHorizontalGrid.d.ts +14 -0
- package/esm/ChartsGrid/ChartsHorizontalGrid.js +37 -0
- package/esm/ChartsGrid/ChartsVerticalGrid.d.ts +14 -0
- package/esm/ChartsGrid/ChartsVerticalGrid.js +37 -0
- package/esm/ChartsGrid/chartsGridClasses.d.ts +13 -0
- package/esm/ChartsGrid/chartsGridClasses.js +6 -0
- package/esm/ChartsGrid/index.d.ts +2 -0
- package/esm/ChartsGrid/index.js +2 -0
- package/esm/ChartsGrid/styledComponents.d.ts +2 -0
- package/esm/ChartsGrid/styledComponents.js +22 -0
- package/esm/ChartsLabel/ChartsLabel.d.ts +18 -0
- package/esm/ChartsLabel/ChartsLabel.js +43 -0
- package/esm/ChartsLabel/ChartsLabelGradient.d.ts +41 -0
- package/esm/ChartsLabel/ChartsLabelGradient.js +135 -0
- package/esm/ChartsLabel/ChartsLabelMark.d.ts +31 -0
- package/esm/ChartsLabel/ChartsLabelMark.js +124 -0
- package/esm/ChartsLabel/index.d.ts +7 -0
- package/esm/ChartsLabel/index.js +3 -0
- package/esm/ChartsLabel/labelClasses.d.ts +8 -0
- package/esm/ChartsLabel/labelClasses.js +13 -0
- package/esm/ChartsLabel/labelGradientClasses.d.ts +16 -0
- package/esm/ChartsLabel/labelGradientClasses.js +18 -0
- package/esm/ChartsLabel/labelMarkClasses.d.ts +18 -0
- package/esm/ChartsLabel/labelMarkClasses.js +18 -0
- package/esm/ChartsLegend/ChartsLegend.d.ts +27 -0
- package/esm/ChartsLegend/ChartsLegend.js +138 -0
- package/esm/ChartsLegend/ContinuousColorLegend.d.ts +56 -0
- package/esm/ChartsLegend/ContinuousColorLegend.js +271 -0
- package/esm/ChartsLegend/PiecewiseColorLegend.d.ts +42 -0
- package/esm/ChartsLegend/PiecewiseColorLegend.js +267 -0
- package/esm/ChartsLegend/chartsLegend.types.d.ts +26 -0
- package/esm/ChartsLegend/chartsLegend.types.js +1 -0
- package/esm/ChartsLegend/chartsLegendClasses.d.ts +18 -0
- package/esm/ChartsLegend/chartsLegendClasses.js +20 -0
- package/esm/ChartsLegend/colorLegend.types.d.ts +13 -0
- package/esm/ChartsLegend/colorLegend.types.js +1 -0
- package/esm/ChartsLegend/continuousColorLegendClasses.d.ts +26 -0
- package/esm/ChartsLegend/continuousColorLegendClasses.js +23 -0
- package/esm/ChartsLegend/direction.d.ts +1 -0
- package/esm/ChartsLegend/direction.js +1 -0
- package/esm/ChartsLegend/index.d.ts +16 -0
- package/esm/ChartsLegend/index.js +12 -0
- package/esm/ChartsLegend/legend.types.d.ts +9 -0
- package/esm/ChartsLegend/legend.types.js +1 -0
- package/esm/ChartsLegend/legendContext.types.d.ts +55 -0
- package/esm/ChartsLegend/legendContext.types.js +1 -0
- package/esm/ChartsLegend/onClickContextBuilder.d.ts +2 -0
- package/esm/ChartsLegend/onClickContextBuilder.js +7 -0
- package/esm/ChartsLegend/piecewiseColorDefaultLabelFormatter.d.ts +2 -0
- package/esm/ChartsLegend/piecewiseColorDefaultLabelFormatter.js +9 -0
- package/esm/ChartsLegend/piecewiseColorLegend.types.d.ts +26 -0
- package/esm/ChartsLegend/piecewiseColorLegend.types.js +1 -0
- package/esm/ChartsLegend/piecewiseColorLegendClasses.d.ts +28 -0
- package/esm/ChartsLegend/piecewiseColorLegendClasses.js +23 -0
- package/esm/ChartsLegend/useAxis.d.ts +10 -0
- package/esm/ChartsLegend/useAxis.js +42 -0
- package/esm/ChartsOverlay/ChartsLoadingOverlay.d.ts +3 -0
- package/esm/ChartsOverlay/ChartsLoadingOverlay.js +36 -0
- package/esm/ChartsOverlay/ChartsNoDataOverlay.d.ts +3 -0
- package/esm/ChartsOverlay/ChartsNoDataOverlay.js +36 -0
- package/esm/ChartsOverlay/ChartsOverlay.d.ts +45 -0
- package/esm/ChartsOverlay/ChartsOverlay.js +33 -0
- package/esm/ChartsOverlay/index.d.ts +4 -0
- package/esm/ChartsOverlay/index.js +3 -0
- package/esm/ChartsReferenceLine/ChartsReferenceLine.d.ts +10 -0
- package/esm/ChartsReferenceLine/ChartsReferenceLine.js +76 -0
- package/esm/ChartsReferenceLine/ChartsXReferenceLine.d.ts +13 -0
- package/esm/ChartsReferenceLine/ChartsXReferenceLine.js +102 -0
- package/esm/ChartsReferenceLine/ChartsYReferenceLine.d.ts +13 -0
- package/esm/ChartsReferenceLine/ChartsYReferenceLine.js +102 -0
- package/esm/ChartsReferenceLine/chartsReferenceLineClasses.d.ts +15 -0
- package/esm/ChartsReferenceLine/chartsReferenceLineClasses.js +6 -0
- package/esm/ChartsReferenceLine/common.d.ts +41 -0
- package/esm/ChartsReferenceLine/common.js +20 -0
- package/esm/ChartsReferenceLine/index.d.ts +2 -0
- package/esm/ChartsReferenceLine/index.js +2 -0
- package/esm/ChartsSurface/ChartsSurface.d.ts +25 -0
- package/esm/ChartsSurface/ChartsSurface.js +100 -0
- package/esm/ChartsSurface/index.d.ts +1 -0
- package/esm/ChartsSurface/index.js +1 -0
- package/esm/ChartsText/ChartsText.d.ts +17 -0
- package/esm/ChartsText/ChartsText.js +94 -0
- package/esm/ChartsText/index.d.ts +3 -0
- package/esm/ChartsText/index.js +1 -0
- package/esm/ChartsTooltip/ChartTooltip.types.d.ts +15 -0
- package/esm/ChartsTooltip/ChartTooltip.types.js +1 -0
- package/esm/ChartsTooltip/ChartsAxisTooltipContent.d.ts +15 -0
- package/esm/ChartsTooltip/ChartsAxisTooltipContent.js +96 -0
- package/esm/ChartsTooltip/ChartsItemTooltipContent.d.ts +15 -0
- package/esm/ChartsTooltip/ChartsItemTooltipContent.js +65 -0
- package/esm/ChartsTooltip/ChartsTooltip.d.ts +17 -0
- package/esm/ChartsTooltip/ChartsTooltip.js +195 -0
- package/esm/ChartsTooltip/ChartsTooltipContainer.d.ts +33 -0
- package/esm/ChartsTooltip/ChartsTooltipContainer.js +291 -0
- package/esm/ChartsTooltip/ChartsTooltipTable.d.ts +16 -0
- package/esm/ChartsTooltip/ChartsTooltipTable.js +85 -0
- package/esm/ChartsTooltip/chartsTooltipClasses.d.ts +26 -0
- package/esm/ChartsTooltip/chartsTooltipClasses.js +22 -0
- package/esm/ChartsTooltip/index.d.ts +11 -0
- package/esm/ChartsTooltip/index.js +10 -0
- package/esm/ChartsTooltip/useAxisTooltip.d.ts +20 -0
- package/esm/ChartsTooltip/useAxisTooltip.js +88 -0
- package/esm/ChartsTooltip/useItemTooltip.d.ts +12 -0
- package/esm/ChartsTooltip/useItemTooltip.js +40 -0
- package/esm/ChartsTooltip/utils.d.ts +16 -0
- package/esm/ChartsTooltip/utils.js +84 -0
- package/esm/ChartsXAxis/ChartsXAxis.d.ts +16 -0
- package/esm/ChartsXAxis/ChartsXAxis.js +396 -0
- package/esm/ChartsXAxis/index.d.ts +1 -0
- package/esm/ChartsXAxis/index.js +1 -0
- package/esm/ChartsYAxis/ChartsYAxis.d.ts +16 -0
- package/esm/ChartsYAxis/ChartsYAxis.js +322 -0
- package/esm/ChartsYAxis/index.d.ts +1 -0
- package/esm/ChartsYAxis/index.js +1 -0
- package/esm/Gauge/Gauge.d.ts +10 -0
- package/esm/Gauge/Gauge.js +144 -0
- package/esm/Gauge/GaugeContainer.d.ts +10 -0
- package/esm/Gauge/GaugeContainer.js +174 -0
- package/esm/Gauge/GaugeProvider.d.ts +117 -0
- package/esm/Gauge/GaugeProvider.js +90 -0
- package/esm/Gauge/GaugeReferenceArc.d.ts +2 -0
- package/esm/Gauge/GaugeReferenceArc.js +37 -0
- package/esm/Gauge/GaugeValueArc.d.ts +2 -0
- package/esm/Gauge/GaugeValueArc.js +44 -0
- package/esm/Gauge/GaugeValueText.d.ts +15 -0
- package/esm/Gauge/GaugeValueText.js +71 -0
- package/esm/Gauge/gaugeClasses.d.ts +14 -0
- package/esm/Gauge/gaugeClasses.js +7 -0
- package/esm/Gauge/index.d.ts +7 -0
- package/esm/Gauge/index.js +7 -0
- package/esm/Gauge/utils.d.ts +24 -0
- package/esm/Gauge/utils.js +68 -0
- package/esm/LineChart/AnimatedArea.d.ts +26 -0
- package/esm/LineChart/AnimatedArea.js +78 -0
- package/esm/LineChart/AnimatedLine.d.ts +26 -0
- package/esm/LineChart/AnimatedLine.js +78 -0
- package/esm/LineChart/AppearingMask.d.ts +12 -0
- package/esm/LineChart/AppearingMask.js +43 -0
- package/esm/LineChart/AreaElement.d.ts +61 -0
- package/esm/LineChart/AreaElement.js +111 -0
- package/esm/LineChart/AreaPlot.d.ts +29 -0
- package/esm/LineChart/AreaPlot.js +213 -0
- package/esm/LineChart/CircleMarkElement.d.ts +30 -0
- package/esm/LineChart/CircleMarkElement.js +104 -0
- package/esm/LineChart/LineChart.d.ts +82 -0
- package/esm/LineChart/LineChart.js +321 -0
- package/esm/LineChart/LineChart.plugins.d.ts +7 -0
- package/esm/LineChart/LineChart.plugins.js +5 -0
- package/esm/LineChart/LineElement.d.ts +61 -0
- package/esm/LineChart/LineElement.js +111 -0
- package/esm/LineChart/LineHighlightElement.d.ts +36 -0
- package/esm/LineChart/LineHighlightElement.js +102 -0
- package/esm/LineChart/LineHighlightPlot.d.ts +36 -0
- package/esm/LineChart/LineHighlightPlot.js +122 -0
- package/esm/LineChart/LinePlot.d.ts +28 -0
- package/esm/LineChart/LinePlot.js +196 -0
- package/esm/LineChart/MarkElement.d.ts +32 -0
- package/esm/LineChart/MarkElement.js +117 -0
- package/esm/LineChart/MarkPlot.d.ts +42 -0
- package/esm/LineChart/MarkPlot.js +179 -0
- package/esm/LineChart/index.d.ts +13 -0
- package/esm/LineChart/index.js +12 -0
- package/esm/LineChart/markElementClasses.d.ts +20 -0
- package/esm/LineChart/markElementClasses.js +19 -0
- package/esm/LineChart/seriesConfig/extremums.d.ts +3 -0
- package/esm/LineChart/seriesConfig/getColor.d.ts +3 -0
- package/esm/LineChart/seriesConfig/index.d.ts +2 -0
- package/esm/LineChart/seriesConfig/index.js +13 -0
- package/esm/LineChart/seriesConfig/legend.d.ts +3 -0
- package/esm/LineChart/seriesConfig/legend.js +22 -0
- package/esm/LineChart/seriesConfig/seriesProcessor.d.ts +3 -0
- package/esm/LineChart/seriesConfig/seriesProcessor.js +77 -0
- package/esm/LineChart/seriesConfig/tooltip.d.ts +3 -0
- package/esm/LineChart/seriesConfig/tooltip.js +25 -0
- package/esm/LineChart/useLineChartProps.d.ts +39 -0
- package/esm/LineChart/useLineChartProps.js +138 -0
- package/esm/PieChart/PieArc.d.ts +36 -0
- package/esm/PieChart/PieArc.js +108 -0
- package/esm/PieChart/PieArcLabel.d.ts +37 -0
- package/esm/PieChart/PieArcLabel.js +113 -0
- package/esm/PieChart/PieArcLabelPlot.d.ts +36 -0
- package/esm/PieChart/PieArcLabelPlot.js +197 -0
- package/esm/PieChart/PieArcPlot.d.ts +43 -0
- package/esm/PieChart/PieArcPlot.js +170 -0
- package/esm/PieChart/PieChart.d.ts +49 -0
- package/esm/PieChart/PieChart.js +201 -0
- package/esm/PieChart/PieChart.plugins.d.ts +5 -0
- package/esm/PieChart/PieChart.plugins.js +3 -0
- package/esm/PieChart/PiePlot.d.ts +32 -0
- package/esm/PieChart/PiePlot.js +163 -0
- package/esm/PieChart/dataTransform/transition.d.ts +4 -0
- package/esm/PieChart/dataTransform/transition.js +137 -0
- package/esm/PieChart/dataTransform/useTransformData.d.ts +16 -0
- package/esm/PieChart/dataTransform/useTransformData.js +49 -0
- package/esm/PieChart/getPieCoordinates.d.ts +7 -0
- package/esm/PieChart/getPieCoordinates.js +19 -0
- package/esm/PieChart/index.d.ts +7 -0
- package/esm/PieChart/index.js +7 -0
- package/esm/PieChart/seriesConfig/getColor.d.ts +3 -0
- package/esm/PieChart/seriesConfig/index.d.ts +2 -0
- package/esm/PieChart/seriesConfig/index.js +10 -0
- package/esm/PieChart/seriesConfig/legend.d.ts +3 -0
- package/esm/PieChart/seriesConfig/legend.js +25 -0
- package/esm/PieChart/seriesConfig/seriesProcessor.d.ts +3 -0
- package/esm/PieChart/seriesConfig/seriesProcessor.js +49 -0
- package/esm/PieChart/seriesConfig/tooltip.d.ts +3 -0
- package/esm/PieChart/seriesConfig/tooltip.js +29 -0
- package/esm/ScatterChart/Scatter.d.ts +32 -0
- package/esm/ScatterChart/Scatter.js +117 -0
- package/esm/ScatterChart/ScatterChart.d.ts +70 -0
- package/esm/ScatterChart/ScatterChart.js +337 -0
- package/esm/ScatterChart/ScatterChart.plugins.d.ts +8 -0
- package/esm/ScatterChart/ScatterChart.plugins.js +6 -0
- package/esm/ScatterChart/ScatterPlot.d.ts +35 -0
- package/esm/ScatterChart/ScatterPlot.js +99 -0
- package/esm/ScatterChart/index.d.ts +3 -0
- package/esm/ScatterChart/index.js +3 -0
- package/esm/ScatterChart/seriesConfig/extremums.d.ts +3 -0
- package/esm/ScatterChart/seriesConfig/getColor.d.ts +3 -0
- package/esm/ScatterChart/seriesConfig/index.d.ts +2 -0
- package/esm/ScatterChart/seriesConfig/index.js +13 -0
- package/esm/ScatterChart/seriesConfig/legend.d.ts +3 -0
- package/esm/ScatterChart/seriesConfig/legend.js +22 -0
- package/esm/ScatterChart/seriesConfig/seriesProcessor.d.ts +3 -0
- package/esm/ScatterChart/seriesConfig/seriesProcessor.js +32 -0
- package/esm/ScatterChart/seriesConfig/tooltip.d.ts +3 -0
- package/esm/ScatterChart/seriesConfig/tooltip.js +25 -0
- package/esm/ScatterChart/useScatterChartProps.d.ts +28 -0
- package/esm/ScatterChart/useScatterChartProps.js +100 -0
- package/esm/SparkLineChart/SparkLineChart.d.ts +101 -0
- package/esm/SparkLineChart/SparkLineChart.js +374 -0
- package/esm/SparkLineChart/index.d.ts +1 -0
- package/esm/SparkLineChart/index.js +1 -0
- package/esm/colorPalettes/colorPalettes.d.ts +16 -0
- package/esm/colorPalettes/colorPalettes.js +12 -0
- package/esm/colorPalettes/index.d.ts +1 -0
- package/esm/colorPalettes/index.js +1 -0
- package/esm/constants/index.d.ts +16 -0
- package/esm/constants/index.js +16 -0
- package/esm/context/AnimationProvider/Animation.types.d.ts +15 -0
- package/esm/context/AnimationProvider/Animation.types.js +1 -0
- package/esm/context/AnimationProvider/AnimationContext.d.ts +4 -0
- package/esm/context/AnimationProvider/AnimationContext.js +10 -0
- package/esm/context/AnimationProvider/AnimationProvider.d.ts +4 -0
- package/esm/context/AnimationProvider/AnimationProvider.js +55 -0
- package/esm/context/AnimationProvider/index.d.ts +4 -0
- package/esm/context/AnimationProvider/index.js +4 -0
- package/esm/context/AnimationProvider/useSkipAnimation.d.ts +6 -0
- package/esm/context/AnimationProvider/useSkipAnimation.js +20 -0
- package/esm/context/ChartProvider/ChartContext.d.ts +6 -0
- package/esm/context/ChartProvider/ChartContext.js +8 -0
- package/esm/context/ChartProvider/ChartProvider.d.ts +8 -0
- package/esm/context/ChartProvider/ChartProvider.js +40 -0
- package/esm/context/ChartProvider/ChartProvider.types.d.ts +39 -0
- package/esm/context/ChartProvider/ChartProvider.types.js +1 -0
- package/esm/context/ChartProvider/index.d.ts +3 -0
- package/esm/context/ChartProvider/index.js +3 -0
- package/esm/context/ChartProvider/useChartContext.d.ts +3 -0
- package/esm/context/ChartProvider/useChartContext.js +11 -0
- package/esm/context/PolarProvider/Polar.types.d.ts +43 -0
- package/esm/context/PolarProvider/Polar.types.js +1 -0
- package/esm/context/PolarProvider/PolarContext.d.ts +4 -0
- package/esm/context/PolarProvider/PolarContext.js +13 -0
- package/esm/context/PolarProvider/PolarProvider.d.ts +0 -0
- package/esm/context/PolarProvider/PolarProvider.js +61 -0
- package/esm/context/PolarProvider/getAxisExtremum.d.ts +0 -0
- package/esm/context/PolarProvider/getAxisExtremum.js +48 -0
- package/esm/context/PolarProvider/index.d.ts +0 -0
- package/esm/context/PolarProvider/index.js +0 -0
- package/esm/context/PolarProvider/usePolarContext.d.ts +0 -0
- package/esm/context/PolarProvider/usePolarContext.js +11 -0
- package/esm/context/context.types.d.ts +4 -0
- package/esm/context/context.types.js +1 -0
- package/esm/context/index.d.ts +1 -0
- package/esm/context/index.js +1 -0
- package/esm/hooks/getValueToPositionMapper.d.ts +8 -0
- package/esm/hooks/getValueToPositionMapper.js +15 -0
- package/esm/hooks/index.d.ts +16 -0
- package/esm/hooks/index.js +16 -0
- package/esm/hooks/useAxis.d.ts +41 -0
- package/esm/hooks/useAxis.js +78 -0
- package/esm/hooks/useAxisEvents.d.ts +0 -0
- package/esm/hooks/useAxisEvents.js +0 -0
- package/esm/hooks/useBarSeries.d.ts +36 -0
- package/esm/hooks/useBarSeries.js +43 -0
- package/esm/hooks/useChartGradientId.d.ts +31 -0
- package/esm/hooks/useChartGradientId.js +47 -0
- package/esm/hooks/useChartId.d.ts +5 -0
- package/esm/hooks/useChartId.js +14 -0
- package/esm/hooks/useColorScale.d.ts +22 -0
- package/esm/hooks/useColorScale.js +37 -0
- package/esm/hooks/useDrawingArea.d.ts +16 -0
- package/esm/hooks/useDrawingArea.js +16 -0
- package/esm/hooks/useInteractionItemProps.d.ts +7 -0
- package/esm/hooks/useInteractionItemProps.js +38 -0
- package/esm/hooks/useItemHighlighted.d.ts +23 -0
- package/esm/hooks/useItemHighlighted.js +23 -0
- package/esm/hooks/useItemHighlightedGetter.d.ts +12 -0
- package/esm/hooks/useItemHighlightedGetter.js +23 -0
- package/esm/hooks/useLegend.d.ts +13 -0
- package/esm/hooks/useLegend.js +30 -0
- package/esm/hooks/useLineSeries.d.ts +36 -0
- package/esm/hooks/useLineSeries.js +43 -0
- package/esm/hooks/useMounted.d.ts +1 -0
- package/esm/hooks/useMounted.js +18 -0
- package/esm/hooks/usePieSeries.d.ts +35 -0
- package/esm/hooks/usePieSeries.js +42 -0
- package/esm/hooks/useScale.d.ts +22 -0
- package/esm/hooks/useScale.js +39 -0
- package/esm/hooks/useScatterSeries.d.ts +35 -0
- package/esm/hooks/useScatterSeries.js +42 -0
- package/esm/hooks/useSeries.d.ts +7 -0
- package/esm/hooks/useSeries.js +15 -0
- package/esm/hooks/useSvgRef.d.ts +6 -0
- package/esm/hooks/useSvgRef.js +15 -0
- package/esm/hooks/useTicks.d.ts +59 -0
- package/esm/hooks/useTicks.js +85 -0
- package/esm/hooks/useZAxis.d.ts +7 -0
- package/esm/hooks/useZAxis.js +27 -0
- package/esm/index.d.ts +25 -0
- package/esm/index.js +32 -0
- package/esm/internals/cleanId.d.ts +4 -0
- package/esm/internals/cleanId.js +6 -0
- package/esm/internals/colorScale.d.ts +5 -0
- package/esm/internals/colorScale.js +16 -0
- package/esm/internals/components/AxisSharedComponents.d.ts +1 -0
- package/esm/internals/components/AxisSharedComponents.js +26 -0
- package/esm/internals/components/ChartsAxesGradients/ChartsAxesGradients.d.ts +2 -0
- package/esm/internals/components/ChartsAxesGradients/ChartsAxesGradients.js +133 -0
- package/esm/internals/components/ChartsAxesGradients/ChartsContinuousGradient.d.ts +19 -0
- package/esm/internals/components/ChartsAxesGradients/ChartsContinuousGradient.js +56 -0
- package/esm/internals/components/ChartsAxesGradients/ChartsContinuousGradientObjectBound.d.ts +13 -0
- package/esm/internals/components/ChartsAxesGradients/ChartsContinuousGradientObjectBound.js +61 -0
- package/esm/internals/components/ChartsAxesGradients/ChartsPiecewiseGradient.d.ts +12 -0
- package/esm/internals/components/ChartsAxesGradients/ChartsPiecewiseGradient.js +46 -0
- package/esm/internals/components/ChartsAxesGradients/index.d.ts +1 -0
- package/esm/internals/components/ChartsAxesGradients/index.js +1 -0
- package/esm/internals/components/ChartsWrapper/ChartsWrapper.d.ts +18 -0
- package/esm/internals/components/ChartsWrapper/ChartsWrapper.js +66 -0
- package/esm/internals/components/ChartsWrapper/index.d.ts +1 -0
- package/esm/internals/components/ChartsWrapper/index.js +1 -0
- package/esm/internals/configInit.d.ts +9 -0
- package/esm/internals/configInit.js +20 -0
- package/esm/internals/consumeSlots.d.ts +48 -0
- package/esm/internals/consumeSlots.js +101 -0
- package/esm/internals/consumeThemeProps.d.ts +50 -0
- package/esm/internals/consumeThemeProps.js +70 -0
- package/esm/internals/createSeriesSelectorOfType.d.ts +4 -0
- package/esm/internals/createSeriesSelectorOfType.js +43 -0
- package/esm/internals/defaultizeColor.d.ts +107 -0
- package/esm/internals/defaultizeColor.js +13 -0
- package/esm/internals/defaultizeMargin.d.ts +3 -0
- package/esm/internals/defaultizeMargin.js +15 -0
- package/esm/internals/defaultizeValueFormatter.d.ts +6 -0
- package/esm/internals/defaultizeValueFormatter.js +10 -0
- package/esm/internals/domUtils.d.ts +15 -0
- package/esm/internals/domUtils.js +129 -0
- package/esm/internals/geometry.d.ts +9 -0
- package/esm/internals/geometry.js +34 -0
- package/esm/internals/getCurve.d.ts +2 -0
- package/esm/internals/getCurve.js +27 -0
- package/esm/internals/getLabel.d.ts +1 -0
- package/esm/internals/getLabel.js +3 -0
- package/esm/internals/getPercentageValue.d.ts +7 -0
- package/esm/internals/getPercentageValue.js +28 -0
- package/esm/internals/getSVGPoint.d.ts +6 -0
- package/esm/internals/getSVGPoint.js +11 -0
- package/esm/internals/getScale.d.ts +2 -0
- package/esm/internals/getScale.js +17 -0
- package/esm/internals/getSymbol.d.ts +2 -0
- package/esm/internals/getSymbol.js +21 -0
- package/esm/internals/getWordsByLines.d.ts +29 -0
- package/esm/internals/getWordsByLines.js +14 -0
- package/esm/internals/index.d.ts +44 -0
- package/esm/internals/index.js +58 -0
- package/esm/internals/isBandScale.d.ts +5 -0
- package/esm/internals/isBandScale.js +3 -0
- package/esm/internals/isCartesian.d.ts +7 -0
- package/esm/internals/isCartesian.js +7 -0
- package/esm/internals/isDefined.d.ts +1 -0
- package/esm/internals/isDefined.js +3 -0
- package/esm/internals/isInfinity.d.ts +1 -0
- package/esm/internals/isInfinity.js +3 -0
- package/esm/internals/notNull.d.ts +1 -0
- package/esm/internals/notNull.js +3 -0
- package/esm/internals/plugins/allPlugins.d.ts +10 -0
- package/esm/internals/plugins/allPlugins.js +8 -0
- package/esm/internals/plugins/corePlugins/corePlugins.d.ts +9 -0
- package/esm/internals/plugins/corePlugins/corePlugins.js +9 -0
- package/esm/internals/plugins/corePlugins/index.d.ts +2 -0
- package/esm/internals/plugins/corePlugins/index.js +1 -0
- package/esm/internals/plugins/corePlugins/useChartDimensions/index.d.ts +3 -0
- package/esm/internals/plugins/corePlugins/useChartDimensions/index.js +2 -0
- package/esm/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.d.ts +3 -0
- package/esm/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.js +196 -0
- package/esm/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.selectors.d.ts +708 -0
- package/esm/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.selectors.js +26 -0
- package/esm/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.types.d.ts +90 -0
- package/esm/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.types.js +1 -0
- package/esm/internals/plugins/corePlugins/useChartId/index.d.ts +3 -0
- package/esm/internals/plugins/corePlugins/useChartId/index.js +2 -0
- package/esm/internals/plugins/corePlugins/useChartId/useChartId.d.ts +3 -0
- package/esm/internals/plugins/corePlugins/useChartId/useChartId.js +32 -0
- package/esm/internals/plugins/corePlugins/useChartId/useChartId.selectors.d.ts +36 -0
- package/esm/internals/plugins/corePlugins/useChartId/useChartId.selectors.js +9 -0
- package/esm/internals/plugins/corePlugins/useChartId/useChartId.types.d.ts +20 -0
- package/esm/internals/plugins/corePlugins/useChartId/useChartId.types.js +1 -0
- package/esm/internals/plugins/corePlugins/useChartId/useChartId.utils.d.ts +1 -0
- package/esm/internals/plugins/corePlugins/useChartId/useChartId.utils.js +5 -0
- package/esm/internals/plugins/corePlugins/useChartSeries/index.d.ts +3 -0
- package/esm/internals/plugins/corePlugins/useChartSeries/index.js +2 -0
- package/esm/internals/plugins/corePlugins/useChartSeries/processSeries.d.ts +23 -0
- package/esm/internals/plugins/corePlugins/useChartSeries/processSeries.js +50 -0
- package/esm/internals/plugins/corePlugins/useChartSeries/useChartSeries.d.ts +3 -0
- package/esm/internals/plugins/corePlugins/useChartSeries/useChartSeries.js +71 -0
- package/esm/internals/plugins/corePlugins/useChartSeries/useChartSeries.selectors.d.ts +61 -0
- package/esm/internals/plugins/corePlugins/useChartSeries/useChartSeries.selectors.js +4 -0
- package/esm/internals/plugins/corePlugins/useChartSeries/useChartSeries.types.d.ts +51 -0
- package/esm/internals/plugins/corePlugins/useChartSeries/useChartSeries.types.js +1 -0
- package/esm/internals/plugins/corePlugins/useChartSeries/useColorProcessor.d.ts +8 -0
- package/esm/internals/plugins/corePlugins/useChartSeries/useColorProcessor.js +21 -0
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/computeAxisValue.d.ts +29 -0
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/computeAxisValue.js +132 -0
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/createAxisFilterMapper.d.ts +22 -0
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/createAxisFilterMapper.js +63 -0
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/createZoomLookup.d.ts +4 -0
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/createZoomLookup.js +13 -0
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/defaultizeAxis.d.ts +6 -0
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/defaultizeAxis.js +52 -0
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/defaultizeZoom.d.ts +4 -0
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/defaultizeZoom.js +25 -0
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisExtremum.d.ts +6 -0
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisExtremum.js +22 -0
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisValue.d.ts +9 -0
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisValue.js +59 -0
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/index.d.ts +7 -0
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/index.js +6 -0
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartAxisSize.selectors.d.ts +216 -0
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartAxisSize.selectors.js +6 -0
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxis.d.ts +3 -0
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxis.js +206 -0
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxis.types.d.ts +93 -0
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxis.types.js +1 -0
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisLayout.selectors.d.ts +70 -0
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisLayout.selectors.js +4 -0
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisRendering.selectors.d.ts +3106 -0
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisRendering.selectors.js +89 -0
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/zoom.d.ts +10 -0
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/zoom.js +19 -0
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/zoom.types.d.ts +68 -0
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/zoom.types.js +1 -0
- package/esm/internals/plugins/featurePlugins/useChartHighlight/createIsFaded.d.ts +3 -0
- package/esm/internals/plugins/featurePlugins/useChartHighlight/createIsFaded.js +12 -0
- package/esm/internals/plugins/featurePlugins/useChartHighlight/createIsHighlighted.d.ts +3 -0
- package/esm/internals/plugins/featurePlugins/useChartHighlight/createIsHighlighted.js +12 -0
- package/esm/internals/plugins/featurePlugins/useChartHighlight/highlightConfig.types.d.ts +20 -0
- package/esm/internals/plugins/featurePlugins/useChartHighlight/highlightConfig.types.js +1 -0
- package/esm/internals/plugins/featurePlugins/useChartHighlight/index.d.ts +4 -0
- package/esm/internals/plugins/featurePlugins/useChartHighlight/index.js +2 -0
- package/esm/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.d.ts +3 -0
- package/esm/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.js +44 -0
- package/esm/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.selectors.d.ts +634 -0
- package/esm/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.selectors.js +31 -0
- package/esm/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.types.d.ts +71 -0
- package/esm/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.types.js +1 -0
- package/esm/internals/plugins/featurePlugins/useChartInteraction/index.d.ts +3 -0
- package/esm/internals/plugins/featurePlugins/useChartInteraction/index.js +2 -0
- package/esm/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.d.ts +3 -0
- package/esm/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.js +97 -0
- package/esm/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.selectors.d.ts +448 -0
- package/esm/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.selectors.js +14 -0
- package/esm/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.types.d.ts +49 -0
- package/esm/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.types.js +1 -0
- package/esm/internals/plugins/featurePlugins/useChartVoronoi/index.d.ts +3 -0
- package/esm/internals/plugins/featurePlugins/useChartVoronoi/index.js +2 -0
- package/esm/internals/plugins/featurePlugins/useChartVoronoi/useChartVoronoi.d.ts +3 -0
- package/esm/internals/plugins/featurePlugins/useChartVoronoi/useChartVoronoi.js +231 -0
- package/esm/internals/plugins/featurePlugins/useChartVoronoi/useChartVoronoi.selectors.d.ts +29 -0
- package/esm/internals/plugins/featurePlugins/useChartVoronoi/useChartVoronoi.selectors.js +3 -0
- package/esm/internals/plugins/featurePlugins/useChartVoronoi/useChartVoronoi.types.d.ts +54 -0
- package/esm/internals/plugins/featurePlugins/useChartVoronoi/useChartVoronoi.types.js +1 -0
- package/esm/internals/plugins/featurePlugins/useChartZAxis/index.d.ts +3 -0
- package/esm/internals/plugins/featurePlugins/useChartZAxis/index.js +2 -0
- package/esm/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.d.ts +3 -0
- package/esm/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.js +86 -0
- package/esm/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.selectors.d.ts +45 -0
- package/esm/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.selectors.js +3 -0
- package/esm/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.types.d.ts +38 -0
- package/esm/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.types.js +1 -0
- package/esm/internals/plugins/featurePlugins/useChartZAxis/utils.d.ts +0 -0
- package/esm/internals/plugins/featurePlugins/useChartZAxis/utils.js +0 -0
- package/esm/internals/plugins/models/chart.d.ts +14 -0
- package/esm/internals/plugins/models/chart.js +1 -0
- package/esm/internals/plugins/models/helpers.d.ts +7 -0
- package/esm/internals/plugins/models/helpers.js +1 -0
- package/esm/internals/plugins/models/index.d.ts +4 -0
- package/esm/internals/plugins/models/index.js +4 -0
- package/esm/internals/plugins/models/plugin.d.ts +171 -0
- package/esm/internals/plugins/models/plugin.js +1 -0
- package/esm/internals/plugins/models/seriesConfig/colorProcessor.types.d.ts +5 -0
- package/esm/internals/plugins/models/seriesConfig/colorProcessor.types.js +1 -0
- package/esm/internals/plugins/models/seriesConfig/extremumGetter.types.d.ts +22 -0
- package/esm/internals/plugins/models/seriesConfig/extremumGetter.types.js +1 -0
- package/esm/internals/plugins/models/seriesConfig/index.d.ts +6 -0
- package/esm/internals/plugins/models/seriesConfig/index.js +6 -0
- package/esm/internals/plugins/models/seriesConfig/legendGetter.types.d.ts +4 -0
- package/esm/internals/plugins/models/seriesConfig/legendGetter.types.js +1 -0
- package/esm/internals/plugins/models/seriesConfig/seriesConfig.types.d.ts +16 -0
- package/esm/internals/plugins/models/seriesConfig/seriesConfig.types.js +1 -0
- package/esm/internals/plugins/models/seriesConfig/seriesProcessor.types.d.ts +16 -0
- package/esm/internals/plugins/models/seriesConfig/seriesProcessor.types.js +1 -0
- package/esm/internals/plugins/models/seriesConfig/tooltipGetter.types.d.ts +7 -0
- package/esm/internals/plugins/models/seriesConfig/tooltipGetter.types.js +1 -0
- package/esm/internals/plugins/utils/ChartStore.d.ts +13 -0
- package/esm/internals/plugins/utils/ChartStore.js +24 -0
- package/esm/internals/plugins/utils/selectors.d.ts +10 -0
- package/esm/internals/plugins/utils/selectors.js +37 -0
- package/esm/internals/stackSeries.d.ts +27 -0
- package/esm/internals/stackSeries.js +94 -0
- package/esm/internals/store/extractPluginParamsFromProps.d.ts +13 -0
- package/esm/internals/store/extractPluginParamsFromProps.js +28 -0
- package/esm/internals/store/useChartModels.d.ts +7 -0
- package/esm/internals/store/useChartModels.js +64 -0
- package/esm/internals/store/useCharts.d.ts +25 -0
- package/esm/internals/store/useCharts.js +85 -0
- package/esm/internals/store/useCharts.types.d.ts +5 -0
- package/esm/internals/store/useCharts.types.js +1 -0
- package/esm/internals/store/useSelector.d.ts +4 -0
- package/esm/internals/store/useSelector.js +9 -0
- package/esm/internals/store/useStore.d.ts +5 -0
- package/esm/internals/store/useStore.js +9 -0
- package/esm/internals/ts-generic.d.ts +3 -0
- package/esm/internals/ts-generic.js +1 -0
- package/esm/internals/useStringInterpolator.d.ts +1 -0
- package/esm/internals/useStringInterpolator.js +21 -0
- package/esm/models/axis.d.ts +369 -0
- package/esm/models/axis.js +15 -0
- package/esm/models/colorMapping.d.ts +46 -0
- package/esm/models/colorMapping.js +1 -0
- package/esm/models/curve.d.ts +6 -0
- package/esm/models/curve.js +1 -0
- package/esm/models/index.d.ts +6 -0
- package/esm/models/index.js +5 -0
- package/esm/models/position.d.ts +10 -0
- package/esm/models/position.js +1 -0
- package/esm/models/seriesType/bar.d.ts +38 -0
- package/esm/models/seriesType/bar.js +1 -0
- package/esm/models/seriesType/common.d.ts +60 -0
- package/esm/models/seriesType/common.js +1 -0
- package/esm/models/seriesType/config.d.ts +81 -0
- package/esm/models/seriesType/config.js +1 -0
- package/esm/models/seriesType/index.d.ts +15 -0
- package/esm/models/seriesType/index.js +16 -0
- package/esm/models/seriesType/line.d.ts +104 -0
- package/esm/models/seriesType/line.js +1 -0
- package/esm/models/seriesType/pie.d.ts +166 -0
- package/esm/models/seriesType/pie.js +1 -0
- package/esm/models/seriesType/scatter.d.ts +63 -0
- package/esm/models/seriesType/scatter.js +1 -0
- package/esm/models/stacking.d.ts +2 -0
- package/esm/models/stacking.js +1 -0
- package/esm/models/z-axis.d.ts +22 -0
- package/esm/models/z-axis.js +1 -0
- package/esm/package.json +1 -0
- package/esm/tests/firePointerEvent.js +35 -0
- package/esm/themeAugmentation/components.d.ts +62 -0
- package/esm/themeAugmentation/index.d.ts +3 -0
- package/esm/themeAugmentation/index.js +0 -0
- package/esm/themeAugmentation/overrides.d.ts +34 -0
- package/esm/themeAugmentation/props.d.ts +34 -0
- package/hooks/getValueToPositionMapper.d.ts +8 -0
- package/hooks/getValueToPositionMapper.js +20 -0
- package/hooks/index.d.ts +16 -12
- package/hooks/index.js +202 -12
- package/hooks/useAxis.d.ts +37 -6
- package/hooks/useAxis.js +58 -17
- package/hooks/useAxisEvents.js +1 -0
- package/hooks/useBarSeries.d.ts +36 -0
- package/hooks/useBarSeries.js +49 -0
- package/hooks/useChartGradientId.d.ts +2 -2
- package/hooks/useChartGradientId.js +17 -8
- package/hooks/useChartId.d.ts +5 -1
- package/hooks/useChartId.js +15 -6
- package/hooks/useColorScale.d.ts +22 -4
- package/hooks/useColorScale.js +38 -23
- package/hooks/useDrawingArea.d.ts +14 -14
- package/hooks/useDrawingArea.js +18 -6
- package/hooks/useInteractionItemProps.d.ts +5 -5
- package/hooks/useInteractionItemProps.js +10 -4
- package/hooks/useItemHighlighted.d.ts +10 -10
- package/hooks/useItemHighlighted.js +12 -7
- package/hooks/useItemHighlightedGetter.d.ts +3 -3
- package/hooks/useItemHighlightedGetter.js +12 -8
- package/hooks/useLegend.d.ts +2 -2
- package/hooks/useLegend.js +13 -8
- package/hooks/useLineSeries.d.ts +36 -0
- package/hooks/useLineSeries.js +49 -0
- package/hooks/useMounted.d.ts +1 -1
- package/hooks/useMounted.js +11 -4
- package/hooks/usePieSeries.d.ts +35 -0
- package/hooks/usePieSeries.js +48 -0
- package/hooks/useScale.d.ts +17 -5
- package/hooks/useScale.js +31 -11
- package/hooks/useScatterSeries.d.ts +35 -0
- package/hooks/useScatterSeries.js +48 -0
- package/hooks/useSeries.d.ts +1 -39
- package/hooks/useSeries.js +11 -55
- package/hooks/useSvgRef.d.ts +5 -1
- package/hooks/useSvgRef.js +13 -4
- package/hooks/useTicks.d.ts +52 -52
- package/hooks/useTicks.js +20 -10
- package/hooks/useZAxis.d.ts +5 -5
- package/hooks/useZAxis.js +13 -7
- package/index.d.ts +25 -26
- package/index.js +281 -27
- package/internals/cleanId.d.ts +1 -1
- package/internals/cleanId.js +7 -1
- package/internals/colorScale.d.ts +2 -2
- package/internals/colorScale.js +16 -8
- package/internals/components/AxisSharedComponents.d.ts +1 -1
- package/internals/components/AxisSharedComponents.js +15 -8
- package/internals/components/ChartsAxesGradients/ChartsAxesGradients.d.ts +1 -1
- package/internals/components/ChartsAxesGradients/ChartsAxesGradients.js +33 -25
- package/internals/components/ChartsAxesGradients/ChartsContinuousGradient.d.ts +15 -15
- package/internals/components/ChartsAxesGradients/ChartsContinuousGradient.js +14 -7
- package/internals/components/ChartsAxesGradients/ChartsContinuousGradientObjectBound.d.ts +6 -6
- package/internals/components/ChartsAxesGradients/ChartsContinuousGradientObjectBound.js +16 -8
- package/internals/components/ChartsAxesGradients/ChartsPiecewiseGradient.d.ts +8 -8
- package/internals/components/ChartsAxesGradients/ChartsPiecewiseGradient.js +14 -7
- package/internals/components/ChartsAxesGradients/index.d.ts +1 -1
- package/internals/components/ChartsAxesGradients/index.js +16 -1
- package/internals/components/ChartsWrapper/ChartsWrapper.d.ts +7 -7
- package/internals/components/ChartsWrapper/ChartsWrapper.js +13 -7
- package/internals/components/ChartsWrapper/index.d.ts +1 -1
- package/internals/components/ChartsWrapper/index.js +16 -1
- package/internals/configInit.d.ts +6 -6
- package/internals/configInit.js +7 -1
- package/internals/consumeSlots.d.ts +5 -5
- package/internals/consumeSlots.js +27 -19
- package/internals/consumeThemeProps.d.ts +3 -3
- package/internals/consumeThemeProps.js +19 -11
- package/internals/createSeriesSelectorOfType.d.ts +4 -0
- package/internals/createSeriesSelectorOfType.js +50 -0
- package/internals/defaultizeColor.d.ts +100 -100
- package/internals/defaultizeColor.js +12 -5
- package/internals/defaultizeMargin.d.ts +3 -0
- package/internals/defaultizeMargin.js +22 -0
- package/internals/defaultizeValueFormatter.d.ts +4 -4
- package/internals/defaultizeValueFormatter.js +10 -3
- package/internals/domUtils.d.ts +1 -1
- package/internals/domUtils.js +17 -6
- package/internals/geometry.d.ts +1 -1
- package/internals/geometry.js +9 -3
- package/internals/getCurve.d.ts +2 -2
- package/internals/getCurve.js +19 -13
- package/internals/getLabel.d.ts +1 -1
- package/internals/getLabel.js +7 -1
- package/internals/getPercentageValue.d.ts +1 -1
- package/internals/getPercentageValue.js +7 -1
- package/internals/getSVGPoint.d.ts +1 -1
- package/internals/getSVGPoint.js +7 -1
- package/internals/getScale.d.ts +2 -2
- package/internals/getScale.js +14 -8
- package/internals/getSymbol.d.ts +1 -1
- package/internals/getSymbol.js +7 -1
- package/internals/getWordsByLines.d.ts +24 -20
- package/internals/getWordsByLines.js +12 -5
- package/internals/index.d.ts +43 -38
- package/internals/index.js +490 -49
- package/internals/isBandScale.d.ts +3 -3
- package/internals/isBandScale.js +7 -1
- package/internals/isCartesian.d.ts +4 -4
- package/internals/isCartesian.js +11 -4
- package/internals/isDefined.d.ts +1 -1
- package/internals/isDefined.js +7 -1
- package/internals/isInfinity.d.ts +1 -1
- package/internals/isInfinity.js +7 -1
- package/internals/notNull.d.ts +1 -1
- package/internals/notNull.js +7 -1
- package/internals/plugins/allPlugins.d.ts +9 -13
- package/internals/plugins/allPlugins.js +12 -5
- package/internals/plugins/corePlugins/corePlugins.d.ts +3 -4
- package/internals/plugins/corePlugins/corePlugins.js +9 -4
- package/internals/plugins/corePlugins/index.d.ts +2 -2
- package/internals/plugins/corePlugins/index.js +12 -1
- package/internals/plugins/corePlugins/useChartDimensions/index.d.ts +3 -3
- package/internals/plugins/corePlugins/useChartDimensions/index.js +27 -2
- package/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.d.ts +3 -3
- package/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.js +71 -42
- package/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.selectors.d.ts +610 -166
- package/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.selectors.js +29 -21
- package/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.types.d.ts +75 -84
- package/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.types.js +5 -1
- package/internals/plugins/corePlugins/useChartId/index.d.ts +3 -3
- package/internals/plugins/corePlugins/useChartId/index.js +27 -2
- package/internals/plugins/corePlugins/useChartId/useChartId.d.ts +3 -3
- package/internals/plugins/corePlugins/useChartId/useChartId.js +16 -7
- package/internals/plugins/corePlugins/useChartId/useChartId.selectors.d.ts +25 -25
- package/internals/plugins/corePlugins/useChartId/useChartId.selectors.js +8 -2
- package/internals/plugins/corePlugins/useChartId/useChartId.types.d.ts +14 -14
- package/internals/plugins/corePlugins/useChartId/useChartId.types.js +5 -1
- package/internals/plugins/corePlugins/useChartId/useChartId.utils.d.ts +1 -1
- package/internals/plugins/corePlugins/useChartId/useChartId.utils.js +9 -2
- package/internals/plugins/corePlugins/useChartSeries/index.d.ts +3 -3
- package/internals/plugins/corePlugins/useChartSeries/index.js +27 -2
- package/internals/plugins/corePlugins/useChartSeries/processSeries.d.ts +15 -10
- package/internals/plugins/corePlugins/useChartSeries/processSeries.js +14 -6
- package/internals/plugins/corePlugins/useChartSeries/useChartSeries.d.ts +3 -3
- package/internals/plugins/corePlugins/useChartSeries/useChartSeries.js +20 -13
- package/internals/plugins/corePlugins/useChartSeries/useChartSeries.selectors.d.ts +47 -47
- package/internals/plugins/corePlugins/useChartSeries/useChartSeries.selectors.js +11 -4
- package/internals/plugins/corePlugins/useChartSeries/useChartSeries.types.d.ts +44 -47
- package/internals/plugins/corePlugins/useChartSeries/useChartSeries.types.js +5 -1
- package/internals/plugins/corePlugins/useChartSeries/useColorProcessor.d.ts +6 -8
- package/internals/plugins/corePlugins/useChartSeries/useColorProcessor.js +13 -7
- package/internals/plugins/featurePlugins/useChartCartesianAxis/computeAxisValue.d.ts +21 -21
- package/internals/plugins/featurePlugins/useChartCartesianAxis/computeAxisValue.js +40 -28
- package/internals/plugins/featurePlugins/useChartCartesianAxis/createAxisFilterMapper.d.ts +22 -18
- package/internals/plugins/featurePlugins/useChartCartesianAxis/createAxisFilterMapper.js +51 -41
- package/internals/plugins/featurePlugins/useChartCartesianAxis/createZoomLookup.d.ts +4 -0
- package/internals/plugins/featurePlugins/useChartCartesianAxis/createZoomLookup.js +20 -0
- package/internals/plugins/featurePlugins/useChartCartesianAxis/defaultizeAxis.d.ts +5 -38
- package/internals/plugins/featurePlugins/useChartCartesianAxis/defaultizeAxis.js +47 -12
- package/internals/plugins/featurePlugins/useChartCartesianAxis/defaultizeZoom.d.ts +4 -0
- package/internals/plugins/featurePlugins/useChartCartesianAxis/defaultizeZoom.js +33 -0
- package/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisExtremum.d.ts +6 -6
- package/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisExtremum.js +11 -4
- package/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisValue.d.ts +4 -4
- package/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisValue.js +9 -3
- package/internals/plugins/featurePlugins/useChartCartesianAxis/index.d.ts +6 -5
- package/internals/plugins/featurePlugins/useChartCartesianAxis/index.js +71 -5
- package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartAxisSize.selectors.d.ts +216 -0
- package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartAxisSize.selectors.js +12 -0
- package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxis.d.ts +3 -3
- package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxis.js +54 -45
- package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxis.types.d.ts +79 -78
- package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxis.types.js +5 -1
- package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisLayout.selectors.d.ts +70 -0
- package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisLayout.selectors.js +11 -0
- package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisRendering.selectors.d.ts +3106 -0
- package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisRendering.selectors.js +97 -0
- package/internals/plugins/featurePlugins/useChartCartesianAxis/zoom.d.ts +1 -1
- package/internals/plugins/featurePlugins/useChartCartesianAxis/zoom.js +9 -2
- package/internals/plugins/featurePlugins/useChartCartesianAxis/zoom.types.d.ts +60 -10
- package/internals/plugins/featurePlugins/useChartCartesianAxis/zoom.types.js +5 -1
- package/internals/plugins/featurePlugins/useChartHighlight/createIsFaded.d.ts +3 -3
- package/internals/plugins/featurePlugins/useChartHighlight/createIsFaded.js +9 -2
- package/internals/plugins/featurePlugins/useChartHighlight/createIsHighlighted.d.ts +3 -3
- package/internals/plugins/featurePlugins/useChartHighlight/createIsHighlighted.js +9 -2
- package/internals/plugins/featurePlugins/useChartHighlight/highlightConfig.types.d.ts +17 -17
- package/internals/plugins/featurePlugins/useChartHighlight/highlightConfig.types.js +5 -1
- package/internals/plugins/featurePlugins/useChartHighlight/index.d.ts +3 -3
- package/internals/plugins/featurePlugins/useChartHighlight/index.js +27 -2
- package/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.d.ts +3 -3
- package/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.js +17 -9
- package/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.selectors.d.ts +494 -538
- package/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.selectors.js +16 -10
- package/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.types.d.ts +44 -44
- package/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.types.js +5 -1
- package/internals/plugins/featurePlugins/useChartInteraction/index.d.ts +3 -3
- package/internals/plugins/featurePlugins/useChartInteraction/index.js +27 -2
- package/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.d.ts +3 -3
- package/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.js +39 -24
- package/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.selectors.d.ts +355 -283
- package/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.selectors.js +19 -9
- package/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.types.d.ts +42 -55
- package/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.types.js +5 -1
- package/internals/plugins/featurePlugins/useChartVoronoi/index.d.ts +3 -0
- package/internals/plugins/featurePlugins/useChartVoronoi/index.js +27 -0
- package/internals/plugins/featurePlugins/useChartVoronoi/useChartVoronoi.d.ts +3 -0
- package/internals/plugins/featurePlugins/useChartVoronoi/useChartVoronoi.js +240 -0
- package/internals/plugins/featurePlugins/useChartVoronoi/useChartVoronoi.selectors.d.ts +29 -0
- package/internals/plugins/featurePlugins/useChartVoronoi/useChartVoronoi.selectors.js +9 -0
- package/internals/plugins/featurePlugins/useChartVoronoi/useChartVoronoi.types.d.ts +54 -0
- package/internals/plugins/featurePlugins/useChartZAxis/index.d.ts +2 -2
- package/internals/plugins/featurePlugins/useChartZAxis/index.js +27 -2
- package/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.d.ts +3 -3
- package/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.js +18 -10
- package/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.selectors.d.ts +35 -35
- package/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.selectors.js +8 -2
- package/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.types.d.ts +27 -28
- package/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.types.js +5 -1
- package/internals/plugins/featurePlugins/useChartZAxis/utils.js +1 -0
- package/internals/plugins/models/chart.d.ts +6 -6
- package/internals/plugins/models/chart.js +5 -1
- package/internals/plugins/models/helpers.d.ts +1 -1
- package/internals/plugins/models/helpers.js +5 -1
- package/internals/plugins/models/index.d.ts +4 -4
- package/internals/plugins/models/index.js +49 -4
- package/internals/plugins/models/plugin.d.ts +152 -86
- package/internals/plugins/models/plugin.js +5 -1
- package/internals/plugins/models/seriesConfig/colorProcessor.types.d.ts +1 -1
- package/internals/plugins/models/seriesConfig/colorProcessor.types.js +5 -1
- package/internals/plugins/models/seriesConfig/extremumGetter.types.d.ts +12 -12
- package/internals/plugins/models/seriesConfig/extremumGetter.types.js +5 -1
- package/internals/plugins/models/seriesConfig/index.d.ts +6 -6
- package/internals/plugins/models/seriesConfig/index.js +71 -6
- package/internals/plugins/models/seriesConfig/legendGetter.types.d.ts +1 -1
- package/internals/plugins/models/seriesConfig/legendGetter.types.js +5 -1
- package/internals/plugins/models/seriesConfig/seriesConfig.types.d.ts +7 -9
- package/internals/plugins/models/seriesConfig/seriesConfig.types.js +5 -1
- package/internals/plugins/models/seriesConfig/seriesProcessor.types.d.ts +7 -7
- package/internals/plugins/models/seriesConfig/seriesProcessor.types.js +5 -1
- package/internals/plugins/models/seriesConfig/tooltipGetter.types.d.ts +4 -4
- package/internals/plugins/models/seriesConfig/tooltipGetter.types.js +5 -1
- package/internals/plugins/utils/ChartStore.d.ts +9 -9
- package/internals/plugins/utils/ChartStore.js +9 -2
- package/internals/plugins/utils/selectors.d.ts +3 -2
- package/internals/plugins/utils/selectors.js +12 -5
- package/internals/stackSeries.d.ts +13 -17
- package/internals/stackSeries.js +23 -16
- package/internals/store/extractPluginParamsFromProps.d.ts +13 -7
- package/internals/store/extractPluginParamsFromProps.js +12 -4
- package/internals/store/useChartModels.d.ts +3 -3
- package/internals/store/useChartModels.js +14 -5
- package/internals/store/useCharts.d.ts +22 -13
- package/internals/store/useCharts.js +42 -31
- package/internals/store/useCharts.types.d.ts +3 -3
- package/internals/store/useCharts.types.js +5 -1
- package/internals/store/useSelector.d.ts +4 -4
- package/internals/store/useSelector.js +15 -4
- package/internals/store/useStore.d.ts +5 -9
- package/internals/store/useStore.js +10 -4
- package/internals/ts-generic.d.ts +2 -4
- package/internals/ts-generic.js +5 -1
- package/internals/useStringInterpolator.d.ts +1 -1
- package/internals/useStringInterpolator.js +14 -5
- package/models/axis.d.ts +327 -270
- package/models/axis.js +9 -2
- package/models/colorMapping.d.ts +41 -41
- package/models/colorMapping.js +5 -1
- package/models/curve.d.ts +1 -1
- package/models/curve.js +5 -1
- package/models/index.d.ts +4 -5
- package/models/index.js +26 -5
- package/models/position.d.ts +9 -9
- package/models/position.js +5 -1
- package/models/seriesType/bar.d.ts +28 -29
- package/models/seriesType/bar.js +5 -1
- package/models/seriesType/common.d.ts +47 -47
- package/models/seriesType/common.js +5 -1
- package/models/seriesType/config.d.ts +64 -68
- package/models/seriesType/config.js +5 -1
- package/models/seriesType/index.d.ts +8 -8
- package/models/seriesType/index.js +61 -6
- package/models/seriesType/line.d.ts +92 -93
- package/models/seriesType/line.js +5 -1
- package/models/seriesType/pie.d.ts +139 -139
- package/models/seriesType/pie.js +5 -1
- package/models/seriesType/scatter.d.ts +44 -45
- package/models/seriesType/scatter.js +5 -1
- package/models/stacking.d.ts +1 -1
- package/models/stacking.js +5 -1
- package/models/z-axis.d.ts +18 -18
- package/models/z-axis.js +5 -1
- package/modern/BarChart/AnimatedBarElement.d.ts +15 -0
- package/modern/BarChart/BarChart.d.ts +66 -0
- package/modern/BarChart/BarChart.js +14 -30
- package/modern/BarChart/BarChart.plugins.d.ts +7 -0
- package/modern/BarChart/BarClipPath.d.ts +14 -0
- package/modern/BarChart/BarElement.d.ts +50 -0
- package/modern/BarChart/BarLabel/BarLabel.d.ts +861 -0
- package/modern/BarChart/BarLabel/BarLabel.types.d.ts +39 -0
- package/modern/BarChart/BarLabel/BarLabelItem.d.ts +54 -0
- package/modern/BarChart/BarLabel/BarLabelPlot.d.ts +13 -0
- package/modern/BarChart/BarLabel/barLabelClasses.d.ts +13 -0
- package/modern/BarChart/BarLabel/getBarLabel.d.ts +10 -0
- package/modern/BarChart/BarLabel/index.d.ts +6 -0
- package/modern/BarChart/BarPlot.d.ts +49 -0
- package/modern/BarChart/BarPlot.js +3 -3
- package/modern/BarChart/checkScaleErrors.d.ts +7 -0
- package/modern/BarChart/getRadius.d.ts +20 -0
- package/modern/BarChart/index.d.ts +4 -0
- package/modern/BarChart/seriesConfig/extremums.d.ts +3 -0
- package/modern/BarChart/seriesConfig/getColor.d.ts +3 -0
- package/modern/BarChart/seriesConfig/index.d.ts +2 -0
- package/modern/BarChart/seriesConfig/index.js +13 -0
- package/modern/BarChart/seriesConfig/legend.d.ts +3 -0
- package/modern/BarChart/seriesConfig/legend.js +22 -0
- package/modern/BarChart/seriesConfig/seriesProcessor.d.ts +3 -0
- package/modern/BarChart/seriesConfig/seriesProcessor.js +73 -0
- package/modern/BarChart/seriesConfig/tooltip.d.ts +3 -0
- package/modern/BarChart/seriesConfig/tooltip.js +25 -0
- package/modern/BarChart/types.d.ts +23 -0
- package/modern/BarChart/useBarChartProps.d.ts +33 -0
- package/modern/BarChart/useBarChartProps.js +3 -18
- package/modern/ChartContainer/ChartContainer.d.ts +35 -0
- package/modern/ChartContainer/ChartContainer.js +31 -7
- package/modern/ChartContainer/index.d.ts +1 -0
- package/modern/ChartContainer/useChartContainerProps.d.ts +15 -0
- package/modern/ChartContainer/useChartContainerProps.js +7 -1
- package/modern/ChartDataProvider/ChartDataProvider.d.ts +41 -0
- package/modern/ChartDataProvider/ChartDataProvider.js +4 -3
- package/modern/ChartDataProvider/index.d.ts +1 -0
- package/modern/ChartDataProvider/useChartDataProviderProps.d.ts +11 -0
- package/modern/ChartDataProvider/useChartDataProviderProps.js +1 -15
- package/modern/ChartsAxis/ChartsAxis.d.ts +28 -0
- package/modern/ChartsAxis/ChartsAxis.js +24 -86
- package/modern/ChartsAxis/axisClasses.d.ts +33 -0
- package/modern/ChartsAxis/index.d.ts +2 -0
- package/modern/ChartsAxisHighlight/ChartsAxisHighlight.d.ts +16 -0
- package/modern/ChartsAxisHighlight/ChartsAxisHighlight.types.d.ts +5 -0
- package/modern/ChartsAxisHighlight/ChartsAxisHighlightPath.d.ts +6 -0
- package/modern/ChartsAxisHighlight/ChartsXAxisHighlight.d.ts +10 -0
- package/modern/ChartsAxisHighlight/ChartsYAxisHighlight.d.ts +10 -0
- package/modern/ChartsAxisHighlight/chartsAxisHighlightClasses.d.ts +7 -0
- package/modern/ChartsAxisHighlight/index.d.ts +4 -0
- package/modern/ChartsClipPath/ChartsClipPath.d.ts +20 -0
- package/modern/ChartsClipPath/index.d.ts +1 -0
- package/modern/ChartsGrid/ChartsGrid.d.ts +30 -0
- package/modern/ChartsGrid/ChartsHorizontalGrid.d.ts +14 -0
- package/modern/ChartsGrid/ChartsVerticalGrid.d.ts +14 -0
- package/modern/ChartsGrid/chartsGridClasses.d.ts +13 -0
- package/modern/ChartsGrid/index.d.ts +2 -0
- package/modern/ChartsGrid/styledComponents.d.ts +2 -0
- package/modern/ChartsLabel/ChartsLabel.d.ts +18 -0
- package/modern/ChartsLabel/ChartsLabelGradient.d.ts +41 -0
- package/modern/ChartsLabel/ChartsLabelMark.d.ts +31 -0
- package/modern/ChartsLabel/ChartsLabelMark.js +15 -2
- package/modern/ChartsLabel/index.d.ts +7 -0
- package/modern/ChartsLabel/index.js +0 -3
- package/modern/ChartsLabel/labelClasses.d.ts +8 -0
- package/modern/ChartsLabel/labelGradientClasses.d.ts +16 -0
- package/modern/ChartsLabel/labelMarkClasses.d.ts +18 -0
- package/modern/ChartsLabel/labelMarkClasses.js +1 -1
- package/modern/ChartsLegend/ChartsLegend.d.ts +27 -0
- package/modern/ChartsLegend/ContinuousColorLegend.d.ts +56 -0
- package/modern/ChartsLegend/ContinuousColorLegend.js +2 -1
- package/modern/ChartsLegend/PiecewiseColorLegend.d.ts +42 -0
- package/modern/ChartsLegend/chartsLegend.types.d.ts +26 -0
- package/modern/ChartsLegend/chartsLegendClasses.d.ts +18 -0
- package/modern/ChartsLegend/colorLegend.types.d.ts +13 -0
- package/modern/ChartsLegend/continuousColorLegendClasses.d.ts +26 -0
- package/modern/ChartsLegend/direction.d.ts +1 -0
- package/modern/ChartsLegend/index.d.ts +16 -0
- package/modern/ChartsLegend/legend.types.d.ts +9 -0
- package/modern/ChartsLegend/legendContext.types.d.ts +55 -0
- package/modern/ChartsLegend/onClickContextBuilder.d.ts +2 -0
- package/modern/ChartsLegend/piecewiseColorDefaultLabelFormatter.d.ts +2 -0
- package/modern/ChartsLegend/piecewiseColorLegend.types.d.ts +26 -0
- package/modern/ChartsLegend/piecewiseColorLegendClasses.d.ts +28 -0
- package/modern/ChartsLegend/useAxis.d.ts +10 -0
- package/modern/ChartsOverlay/ChartsLoadingOverlay.d.ts +3 -0
- package/modern/ChartsOverlay/ChartsNoDataOverlay.d.ts +3 -0
- package/modern/ChartsOverlay/ChartsOverlay.d.ts +45 -0
- package/modern/ChartsOverlay/index.d.ts +4 -0
- package/modern/ChartsReferenceLine/ChartsReferenceLine.d.ts +10 -0
- package/modern/ChartsReferenceLine/ChartsXReferenceLine.d.ts +13 -0
- package/modern/ChartsReferenceLine/ChartsYReferenceLine.d.ts +13 -0
- package/modern/ChartsReferenceLine/chartsReferenceLineClasses.d.ts +15 -0
- package/modern/ChartsReferenceLine/common.d.ts +41 -0
- package/modern/ChartsReferenceLine/index.d.ts +2 -0
- package/modern/ChartsSurface/ChartsSurface.d.ts +25 -0
- package/modern/ChartsSurface/index.d.ts +1 -0
- package/modern/ChartsText/ChartsText.d.ts +17 -0
- package/modern/ChartsText/index.d.ts +3 -0
- package/modern/ChartsTooltip/ChartTooltip.types.d.ts +15 -0
- package/modern/ChartsTooltip/ChartsAxisTooltipContent.d.ts +15 -0
- package/modern/ChartsTooltip/ChartsItemTooltipContent.d.ts +15 -0
- package/modern/ChartsTooltip/ChartsTooltip.d.ts +17 -0
- package/modern/ChartsTooltip/ChartsTooltipContainer.d.ts +33 -0
- package/modern/ChartsTooltip/ChartsTooltipContainer.js +30 -19
- package/modern/ChartsTooltip/ChartsTooltipTable.d.ts +16 -0
- package/modern/ChartsTooltip/ChartsTooltipTable.js +1 -1
- package/modern/ChartsTooltip/chartsTooltipClasses.d.ts +26 -0
- package/modern/ChartsTooltip/index.d.ts +11 -0
- package/modern/ChartsTooltip/useAxisTooltip.d.ts +20 -0
- package/modern/ChartsTooltip/useAxisTooltip.js +2 -1
- package/modern/ChartsTooltip/useItemTooltip.d.ts +12 -0
- package/modern/ChartsTooltip/utils.d.ts +16 -0
- package/modern/ChartsXAxis/ChartsXAxis.d.ts +16 -0
- package/modern/ChartsXAxis/ChartsXAxis.js +70 -57
- package/modern/ChartsXAxis/index.d.ts +1 -0
- package/modern/ChartsYAxis/ChartsYAxis.d.ts +16 -0
- package/modern/ChartsYAxis/ChartsYAxis.js +12 -16
- package/modern/ChartsYAxis/index.d.ts +1 -0
- package/modern/Gauge/Gauge.d.ts +10 -0
- package/modern/Gauge/Gauge.js +4 -3
- package/modern/Gauge/GaugeContainer.d.ts +10 -0
- package/modern/Gauge/GaugeContainer.js +7 -5
- package/modern/Gauge/GaugeProvider.d.ts +117 -0
- package/modern/Gauge/GaugeReferenceArc.d.ts +2 -0
- package/modern/Gauge/GaugeValueArc.d.ts +2 -0
- package/modern/Gauge/GaugeValueText.d.ts +15 -0
- package/modern/Gauge/gaugeClasses.d.ts +14 -0
- package/modern/Gauge/index.d.ts +7 -0
- package/modern/Gauge/utils.d.ts +24 -0
- package/modern/LineChart/AnimatedArea.d.ts +26 -0
- package/modern/LineChart/AnimatedLine.d.ts +26 -0
- package/modern/LineChart/AppearingMask.d.ts +12 -0
- package/modern/LineChart/AreaElement.d.ts +61 -0
- package/modern/LineChart/AreaPlot.d.ts +29 -0
- package/modern/LineChart/AreaPlot.js +2 -2
- package/modern/LineChart/CircleMarkElement.d.ts +30 -0
- package/modern/LineChart/LineChart.d.ts +82 -0
- package/modern/LineChart/LineChart.js +14 -30
- package/modern/LineChart/LineChart.plugins.d.ts +7 -0
- package/modern/LineChart/LineElement.d.ts +61 -0
- package/modern/LineChart/LineHighlightElement.d.ts +36 -0
- package/modern/LineChart/LineHighlightPlot.d.ts +36 -0
- package/modern/LineChart/LineHighlightPlot.js +3 -3
- package/modern/LineChart/LinePlot.d.ts +28 -0
- package/modern/LineChart/LinePlot.js +2 -2
- package/modern/LineChart/MarkElement.d.ts +32 -0
- package/modern/LineChart/MarkPlot.d.ts +42 -0
- package/modern/LineChart/MarkPlot.js +3 -3
- package/modern/LineChart/index.d.ts +13 -0
- package/modern/LineChart/markElementClasses.d.ts +20 -0
- package/modern/LineChart/seriesConfig/extremums.d.ts +3 -0
- package/modern/LineChart/seriesConfig/getColor.d.ts +3 -0
- package/modern/LineChart/seriesConfig/index.d.ts +2 -0
- package/modern/LineChart/seriesConfig/index.js +13 -0
- package/modern/LineChart/seriesConfig/legend.d.ts +3 -0
- package/modern/LineChart/seriesConfig/legend.js +22 -0
- package/modern/LineChart/seriesConfig/seriesProcessor.d.ts +3 -0
- package/modern/LineChart/seriesConfig/seriesProcessor.js +77 -0
- package/modern/LineChart/seriesConfig/tooltip.d.ts +3 -0
- package/modern/LineChart/seriesConfig/tooltip.js +25 -0
- package/modern/LineChart/useLineChartProps.d.ts +39 -0
- package/modern/LineChart/useLineChartProps.js +2 -17
- package/modern/PieChart/PieArc.d.ts +36 -0
- package/modern/PieChart/PieArcLabel.d.ts +37 -0
- package/modern/PieChart/PieArcLabelPlot.d.ts +36 -0
- package/modern/PieChart/PieArcLabelPlot.js +1 -1
- package/modern/PieChart/PieArcPlot.d.ts +43 -0
- package/modern/PieChart/PieArcPlot.js +1 -1
- package/modern/PieChart/PieChart.d.ts +49 -0
- package/modern/PieChart/PieChart.js +8 -8
- package/modern/PieChart/PieChart.plugins.d.ts +5 -0
- package/modern/PieChart/PiePlot.d.ts +32 -0
- package/modern/PieChart/PiePlot.js +2 -2
- package/modern/PieChart/dataTransform/transition.d.ts +4 -0
- package/modern/PieChart/dataTransform/useTransformData.d.ts +16 -0
- package/modern/PieChart/getPieCoordinates.d.ts +7 -0
- package/modern/PieChart/index.d.ts +7 -0
- package/modern/PieChart/seriesConfig/getColor.d.ts +3 -0
- package/modern/PieChart/seriesConfig/index.d.ts +2 -0
- package/modern/PieChart/seriesConfig/index.js +10 -0
- package/modern/PieChart/seriesConfig/legend.d.ts +3 -0
- package/modern/PieChart/seriesConfig/legend.js +25 -0
- package/modern/PieChart/seriesConfig/seriesProcessor.d.ts +3 -0
- package/modern/PieChart/seriesConfig/seriesProcessor.js +49 -0
- package/modern/PieChart/seriesConfig/tooltip.d.ts +3 -0
- package/modern/PieChart/seriesConfig/tooltip.js +29 -0
- package/modern/ScatterChart/Scatter.d.ts +32 -0
- package/modern/ScatterChart/Scatter.js +2 -2
- package/modern/ScatterChart/ScatterChart.d.ts +70 -0
- package/modern/ScatterChart/ScatterChart.js +15 -33
- package/modern/ScatterChart/ScatterChart.plugins.d.ts +8 -0
- package/modern/ScatterChart/ScatterChart.plugins.js +2 -1
- package/modern/ScatterChart/ScatterPlot.d.ts +35 -0
- package/modern/ScatterChart/ScatterPlot.js +3 -3
- package/modern/ScatterChart/index.d.ts +3 -0
- package/modern/ScatterChart/seriesConfig/extremums.d.ts +3 -0
- package/modern/ScatterChart/seriesConfig/getColor.d.ts +3 -0
- package/modern/ScatterChart/seriesConfig/index.d.ts +2 -0
- package/modern/ScatterChart/seriesConfig/index.js +13 -0
- package/modern/ScatterChart/seriesConfig/legend.d.ts +3 -0
- package/modern/ScatterChart/seriesConfig/legend.js +22 -0
- package/modern/ScatterChart/seriesConfig/seriesProcessor.d.ts +3 -0
- package/modern/ScatterChart/seriesConfig/seriesProcessor.js +32 -0
- package/modern/ScatterChart/seriesConfig/tooltip.d.ts +3 -0
- package/modern/ScatterChart/seriesConfig/tooltip.js +25 -0
- package/modern/ScatterChart/useScatterChartProps.d.ts +28 -0
- package/modern/ScatterChart/useScatterChartProps.js +5 -23
- package/modern/SparkLineChart/SparkLineChart.d.ts +101 -0
- package/modern/SparkLineChart/SparkLineChart.js +41 -30
- package/modern/SparkLineChart/index.d.ts +1 -0
- package/modern/colorPalettes/colorPalettes.d.ts +16 -0
- package/modern/colorPalettes/index.d.ts +1 -0
- package/modern/constants/index.d.ts +16 -0
- package/modern/constants/index.js +12 -5
- package/modern/context/AnimationProvider/Animation.types.d.ts +15 -0
- package/modern/context/AnimationProvider/AnimationContext.d.ts +4 -0
- package/modern/context/AnimationProvider/AnimationProvider.d.ts +4 -0
- package/modern/context/AnimationProvider/index.d.ts +4 -0
- package/modern/context/AnimationProvider/useSkipAnimation.d.ts +6 -0
- package/modern/context/AnimationProvider/useSkipAnimation.js +1 -1
- package/modern/context/ChartProvider/ChartContext.d.ts +6 -0
- package/modern/context/ChartProvider/ChartProvider.d.ts +8 -0
- package/modern/context/ChartProvider/ChartProvider.js +8 -8
- package/modern/context/ChartProvider/ChartProvider.types.d.ts +39 -0
- package/modern/context/ChartProvider/index.d.ts +3 -0
- package/modern/context/ChartProvider/useChartContext.d.ts +3 -0
- package/modern/context/PolarProvider/Polar.types.d.ts +43 -0
- package/modern/context/PolarProvider/PolarContext.d.ts +4 -0
- package/modern/context/PolarProvider/PolarProvider.d.ts +0 -0
- package/modern/context/PolarProvider/getAxisExtremum.d.ts +0 -0
- package/modern/context/PolarProvider/index.d.ts +0 -0
- package/modern/context/PolarProvider/usePolarContext.d.ts +0 -0
- package/modern/context/context.types.d.ts +4 -0
- package/modern/context/index.d.ts +1 -0
- package/modern/hooks/getValueToPositionMapper.d.ts +8 -0
- package/modern/hooks/getValueToPositionMapper.js +15 -0
- package/modern/hooks/index.d.ts +16 -0
- package/modern/hooks/index.js +5 -1
- package/modern/hooks/useAxis.d.ts +41 -0
- package/modern/hooks/useAxis.js +38 -5
- package/modern/hooks/useAxisEvents.d.ts +0 -0
- package/modern/hooks/useBarSeries.d.ts +36 -0
- package/modern/hooks/useBarSeries.js +43 -0
- package/modern/hooks/useChartGradientId.d.ts +31 -0
- package/modern/hooks/useChartId.d.ts +5 -0
- package/modern/hooks/useChartId.js +5 -0
- package/modern/hooks/useColorScale.d.ts +22 -0
- package/modern/hooks/useColorScale.js +32 -23
- package/modern/hooks/useDrawingArea.d.ts +16 -0
- package/modern/hooks/useDrawingArea.js +7 -0
- package/modern/hooks/useInteractionItemProps.d.ts +7 -0
- package/modern/hooks/useItemHighlighted.d.ts +23 -0
- package/modern/hooks/useItemHighlightedGetter.d.ts +12 -0
- package/modern/hooks/useLegend.d.ts +13 -0
- package/modern/hooks/useLineSeries.d.ts +36 -0
- package/modern/hooks/useLineSeries.js +43 -0
- package/modern/hooks/useMounted.d.ts +1 -0
- package/modern/hooks/usePieSeries.d.ts +35 -0
- package/modern/hooks/usePieSeries.js +42 -0
- package/modern/hooks/useScale.d.ts +22 -0
- package/modern/hooks/useScale.js +20 -6
- package/modern/hooks/useScatterSeries.d.ts +35 -0
- package/modern/hooks/useScatterSeries.js +42 -0
- package/modern/hooks/useSeries.d.ts +7 -0
- package/modern/hooks/useSeries.js +0 -49
- package/modern/hooks/useSvgRef.d.ts +6 -0
- package/modern/hooks/useSvgRef.js +6 -1
- package/modern/hooks/useTicks.d.ts +59 -0
- package/modern/hooks/useTicks.js +6 -3
- package/modern/hooks/useZAxis.d.ts +7 -0
- package/modern/index.d.ts +25 -0
- package/modern/index.js +1 -2
- package/modern/internals/cleanId.d.ts +4 -0
- package/modern/internals/colorScale.d.ts +5 -0
- package/modern/internals/components/AxisSharedComponents.d.ts +1 -0
- package/modern/internals/components/ChartsAxesGradients/ChartsAxesGradients.d.ts +2 -0
- package/modern/internals/components/ChartsAxesGradients/ChartsContinuousGradient.d.ts +19 -0
- package/modern/internals/components/ChartsAxesGradients/ChartsContinuousGradientObjectBound.d.ts +13 -0
- package/modern/internals/components/ChartsAxesGradients/ChartsPiecewiseGradient.d.ts +12 -0
- package/modern/internals/components/ChartsAxesGradients/index.d.ts +1 -0
- package/modern/internals/components/ChartsWrapper/ChartsWrapper.d.ts +18 -0
- package/modern/internals/components/ChartsWrapper/index.d.ts +1 -0
- package/modern/internals/configInit.d.ts +9 -0
- package/modern/internals/consumeSlots.d.ts +48 -0
- package/modern/internals/consumeThemeProps.d.ts +50 -0
- package/modern/internals/createSeriesSelectorOfType.d.ts +4 -0
- package/modern/internals/createSeriesSelectorOfType.js +43 -0
- package/modern/internals/defaultizeColor.d.ts +107 -0
- package/modern/internals/defaultizeMargin.d.ts +3 -0
- package/modern/internals/defaultizeMargin.js +15 -0
- package/modern/internals/defaultizeValueFormatter.d.ts +6 -0
- package/modern/internals/domUtils.d.ts +15 -0
- package/modern/internals/domUtils.js +1 -0
- package/modern/internals/geometry.d.ts +9 -0
- package/modern/internals/getCurve.d.ts +2 -0
- package/modern/internals/getLabel.d.ts +1 -0
- package/modern/internals/getPercentageValue.d.ts +7 -0
- package/modern/internals/getSVGPoint.d.ts +6 -0
- package/modern/internals/getScale.d.ts +2 -0
- package/modern/internals/getSymbol.d.ts +2 -0
- package/modern/internals/getWordsByLines.d.ts +29 -0
- package/modern/internals/index.d.ts +44 -0
- package/modern/internals/index.js +8 -0
- package/modern/internals/isBandScale.d.ts +5 -0
- package/modern/internals/isCartesian.d.ts +7 -0
- package/modern/internals/isDefined.d.ts +1 -0
- package/modern/internals/isInfinity.d.ts +1 -0
- package/modern/internals/notNull.d.ts +1 -0
- package/modern/internals/plugins/allPlugins.d.ts +10 -0
- package/modern/internals/plugins/allPlugins.js +3 -2
- package/modern/internals/plugins/corePlugins/corePlugins.d.ts +9 -0
- package/modern/internals/plugins/corePlugins/index.d.ts +2 -0
- package/modern/internals/plugins/corePlugins/useChartDimensions/index.d.ts +3 -0
- package/modern/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.d.ts +3 -0
- package/modern/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.js +52 -31
- package/modern/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.selectors.d.ts +708 -0
- package/modern/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.selectors.js +19 -18
- package/modern/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.types.d.ts +90 -0
- package/modern/internals/plugins/corePlugins/useChartId/index.d.ts +3 -0
- package/modern/internals/plugins/corePlugins/useChartId/useChartId.d.ts +3 -0
- package/modern/internals/plugins/corePlugins/useChartId/useChartId.selectors.d.ts +36 -0
- package/modern/internals/plugins/corePlugins/useChartId/useChartId.types.d.ts +20 -0
- package/modern/internals/plugins/corePlugins/useChartId/useChartId.utils.d.ts +1 -0
- package/modern/internals/plugins/corePlugins/useChartSeries/index.d.ts +3 -0
- package/modern/internals/plugins/corePlugins/useChartSeries/processSeries.d.ts +23 -0
- package/modern/internals/plugins/corePlugins/useChartSeries/useChartSeries.d.ts +3 -0
- package/modern/internals/plugins/corePlugins/useChartSeries/useChartSeries.js +2 -3
- package/modern/internals/plugins/corePlugins/useChartSeries/useChartSeries.selectors.d.ts +61 -0
- package/modern/internals/plugins/corePlugins/useChartSeries/useChartSeries.types.d.ts +51 -0
- package/modern/internals/plugins/corePlugins/useChartSeries/useColorProcessor.d.ts +8 -0
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/computeAxisValue.d.ts +29 -0
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/computeAxisValue.js +7 -2
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/createAxisFilterMapper.d.ts +22 -0
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/createAxisFilterMapper.js +37 -35
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/createZoomLookup.d.ts +4 -0
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/createZoomLookup.js +13 -0
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/defaultizeAxis.d.ts +6 -0
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/defaultizeAxis.js +37 -9
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/defaultizeZoom.d.ts +4 -0
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/defaultizeZoom.js +25 -0
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisExtremum.d.ts +6 -0
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisValue.d.ts +9 -0
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/index.d.ts +7 -0
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/index.js +2 -1
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/useChartAxisSize.selectors.d.ts +216 -0
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/useChartAxisSize.selectors.js +6 -0
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxis.d.ts +3 -0
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxis.js +15 -14
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxis.types.d.ts +93 -0
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisLayout.selectors.d.ts +70 -0
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisLayout.selectors.js +4 -0
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisRendering.selectors.d.ts +3106 -0
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisRendering.selectors.js +89 -0
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/zoom.d.ts +10 -0
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/zoom.types.d.ts +68 -0
- package/modern/internals/plugins/featurePlugins/useChartHighlight/createIsFaded.d.ts +3 -0
- package/modern/internals/plugins/featurePlugins/useChartHighlight/createIsHighlighted.d.ts +3 -0
- package/modern/internals/plugins/featurePlugins/useChartHighlight/highlightConfig.types.d.ts +20 -0
- package/modern/internals/plugins/featurePlugins/useChartHighlight/index.d.ts +4 -0
- package/modern/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.d.ts +3 -0
- package/modern/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.selectors.d.ts +634 -0
- package/modern/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.selectors.js +2 -2
- package/modern/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.types.d.ts +71 -0
- package/modern/internals/plugins/featurePlugins/useChartInteraction/index.d.ts +3 -0
- package/modern/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.d.ts +3 -0
- package/modern/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.js +9 -2
- package/modern/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.selectors.d.ts +448 -0
- package/modern/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.selectors.js +10 -6
- package/modern/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.types.d.ts +49 -0
- package/modern/internals/plugins/featurePlugins/useChartVoronoi/index.d.ts +3 -0
- package/modern/internals/plugins/featurePlugins/useChartVoronoi/index.js +2 -0
- package/modern/internals/plugins/featurePlugins/useChartVoronoi/useChartVoronoi.d.ts +3 -0
- package/modern/internals/plugins/featurePlugins/useChartVoronoi/useChartVoronoi.js +231 -0
- package/modern/internals/plugins/featurePlugins/useChartVoronoi/useChartVoronoi.selectors.d.ts +29 -0
- package/modern/internals/plugins/featurePlugins/useChartVoronoi/useChartVoronoi.selectors.js +3 -0
- package/modern/internals/plugins/featurePlugins/useChartVoronoi/useChartVoronoi.types.d.ts +54 -0
- package/modern/internals/plugins/featurePlugins/useChartVoronoi/useChartVoronoi.types.js +1 -0
- package/modern/internals/plugins/featurePlugins/useChartZAxis/index.d.ts +3 -0
- package/modern/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.d.ts +3 -0
- package/modern/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.selectors.d.ts +45 -0
- package/modern/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.types.d.ts +38 -0
- package/modern/internals/plugins/featurePlugins/useChartZAxis/utils.d.ts +0 -0
- package/modern/internals/plugins/models/chart.d.ts +14 -0
- package/modern/internals/plugins/models/helpers.d.ts +7 -0
- package/modern/internals/plugins/models/index.d.ts +4 -0
- package/modern/internals/plugins/models/plugin.d.ts +171 -0
- package/modern/internals/plugins/models/seriesConfig/colorProcessor.types.d.ts +5 -0
- package/modern/internals/plugins/models/seriesConfig/extremumGetter.types.d.ts +22 -0
- package/modern/internals/plugins/models/seriesConfig/index.d.ts +6 -0
- package/modern/internals/plugins/models/seriesConfig/legendGetter.types.d.ts +4 -0
- package/modern/internals/plugins/models/seriesConfig/seriesConfig.types.d.ts +16 -0
- package/modern/internals/plugins/models/seriesConfig/seriesProcessor.types.d.ts +16 -0
- package/modern/internals/plugins/models/seriesConfig/tooltipGetter.types.d.ts +7 -0
- package/modern/internals/plugins/utils/ChartStore.d.ts +13 -0
- package/modern/internals/plugins/utils/selectors.d.ts +10 -0
- package/modern/internals/stackSeries.d.ts +27 -0
- package/modern/internals/store/extractPluginParamsFromProps.d.ts +13 -0
- package/modern/internals/store/useChartModels.d.ts +7 -0
- package/modern/internals/store/useCharts.d.ts +25 -0
- package/modern/internals/store/useCharts.js +21 -19
- package/modern/internals/store/useCharts.types.d.ts +5 -0
- package/modern/internals/store/useSelector.d.ts +4 -0
- package/modern/internals/store/useSelector.js +4 -1
- package/modern/internals/store/useStore.d.ts +5 -0
- package/modern/internals/store/useStore.js +1 -1
- package/modern/internals/ts-generic.d.ts +3 -0
- package/modern/internals/useStringInterpolator.d.ts +1 -0
- package/modern/models/axis.d.ts +369 -0
- package/modern/models/colorMapping.d.ts +46 -0
- package/modern/models/curve.d.ts +6 -0
- package/modern/models/index.d.ts +6 -0
- package/modern/models/index.js +0 -1
- package/modern/models/position.d.ts +10 -0
- package/modern/models/seriesType/bar.d.ts +38 -0
- package/modern/models/seriesType/common.d.ts +60 -0
- package/modern/models/seriesType/config.d.ts +81 -0
- package/modern/models/seriesType/index.d.ts +15 -0
- package/modern/models/seriesType/line.d.ts +104 -0
- package/modern/models/seriesType/pie.d.ts +166 -0
- package/modern/models/seriesType/scatter.d.ts +63 -0
- package/modern/models/stacking.d.ts +2 -0
- package/modern/models/z-axis.d.ts +22 -0
- package/modern/package.json +1 -0
- package/modern/themeAugmentation/components.d.ts +62 -0
- package/modern/themeAugmentation/index.d.ts +3 -0
- package/modern/themeAugmentation/overrides.d.ts +34 -0
- package/modern/themeAugmentation/props.d.ts +34 -0
- package/package.json +39 -9
- package/tests/firePointerEvent.js +12 -5
- package/themeAugmentation/components.d.ts +1 -3
- package/themeAugmentation/index.d.ts +1 -1
- package/themeAugmentation/index.js +1 -0
- package/themeAugmentation/overrides.d.ts +7 -10
- package/themeAugmentation/props.d.ts +11 -13
- package/tsconfig.build.tsbuildinfo +1 -0
- package/BarChart/extremums.d.ts +0 -3
- package/BarChart/formatter.d.ts +0 -3
- package/BarChart/formatter.js +0 -73
- package/BarChart/getColor.d.ts +0 -3
- package/BarChart/legend.d.ts +0 -3
- package/BarChart/legend.js +0 -22
- package/BarChart/package.json +0 -6
- package/BarChart/plugin.d.ts +0 -2
- package/BarChart/plugin.js +0 -13
- package/BarChart/tooltip.d.ts +0 -3
- package/BarChart/tooltip.js +0 -25
- package/ChartContainer/package.json +0 -6
- package/ChartDataProvider/package.json +0 -6
- package/ChartsAxis/package.json +0 -6
- package/ChartsAxisHighlight/package.json +0 -6
- package/ChartsClipPath/package.json +0 -6
- package/ChartsGrid/package.json +0 -6
- package/ChartsLabel/package.json +0 -6
- package/ChartsLegend/package.json +0 -6
- package/ChartsOverlay/package.json +0 -6
- package/ChartsReferenceLine/package.json +0 -6
- package/ChartsSurface/package.json +0 -6
- package/ChartsText/package.json +0 -6
- package/ChartsTooltip/package.json +0 -6
- package/ChartsVoronoiHandler/ChartsVoronoiHandler.d.ts +0 -20
- package/ChartsVoronoiHandler/ChartsVoronoiHandler.js +0 -249
- package/ChartsVoronoiHandler/index.d.ts +0 -1
- package/ChartsVoronoiHandler/index.js +0 -1
- package/ChartsVoronoiHandler/package.json +0 -6
- package/ChartsXAxis/package.json +0 -6
- package/ChartsYAxis/package.json +0 -6
- package/Gauge/package.json +0 -6
- package/LineChart/extremums.d.ts +0 -3
- package/LineChart/formatter.d.ts +0 -3
- package/LineChart/formatter.js +0 -77
- package/LineChart/getColor.d.ts +0 -3
- package/LineChart/legend.d.ts +0 -3
- package/LineChart/legend.js +0 -22
- package/LineChart/package.json +0 -6
- package/LineChart/plugin.d.ts +0 -2
- package/LineChart/plugin.js +0 -13
- package/LineChart/tooltip.d.ts +0 -3
- package/LineChart/tooltip.js +0 -25
- package/PieChart/formatter.d.ts +0 -3
- package/PieChart/formatter.js +0 -49
- package/PieChart/getColor.d.ts +0 -3
- package/PieChart/legend.d.ts +0 -3
- package/PieChart/legend.js +0 -25
- package/PieChart/package.json +0 -6
- package/PieChart/plugin.d.ts +0 -2
- package/PieChart/plugin.js +0 -10
- package/PieChart/tooltip.d.ts +0 -3
- package/PieChart/tooltip.js +0 -29
- package/ScatterChart/extremums.d.ts +0 -3
- package/ScatterChart/formatter.d.ts +0 -3
- package/ScatterChart/formatter.js +0 -32
- package/ScatterChart/getColor.d.ts +0 -3
- package/ScatterChart/legend.d.ts +0 -3
- package/ScatterChart/legend.js +0 -22
- package/ScatterChart/package.json +0 -6
- package/ScatterChart/plugin.d.ts +0 -2
- package/ScatterChart/plugin.js +0 -13
- package/ScatterChart/tooltip.d.ts +0 -3
- package/ScatterChart/tooltip.js +0 -25
- package/SparkLineChart/package.json +0 -6
- package/colorPalettes/package.json +0 -6
- package/constants/package.json +0 -6
- package/context/package.json +0 -6
- package/hooks/package.json +0 -6
- package/hooks/useChartDimensions.d.ts +0 -10
- package/hooks/useChartDimensions.js +0 -18
- package/internals/calculateMargins.d.ts +0 -7
- package/internals/calculateMargins.js +0 -25
- package/internals/package.json +0 -6
- package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxis.selectors.d.ts +0 -1336
- package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxis.selectors.js +0 -89
- package/models/layout.d.ts +0 -18
- package/models/package.json +0 -6
- package/modern/BarChart/formatter.js +0 -73
- package/modern/BarChart/legend.js +0 -22
- package/modern/BarChart/plugin.js +0 -13
- package/modern/BarChart/tooltip.js +0 -25
- package/modern/ChartsVoronoiHandler/ChartsVoronoiHandler.js +0 -249
- package/modern/ChartsVoronoiHandler/index.js +0 -1
- package/modern/LineChart/formatter.js +0 -77
- package/modern/LineChart/legend.js +0 -22
- package/modern/LineChart/plugin.js +0 -13
- package/modern/LineChart/tooltip.js +0 -25
- package/modern/PieChart/formatter.js +0 -49
- package/modern/PieChart/legend.js +0 -25
- package/modern/PieChart/plugin.js +0 -10
- package/modern/PieChart/tooltip.js +0 -29
- package/modern/ScatterChart/formatter.js +0 -32
- package/modern/ScatterChart/legend.js +0 -22
- package/modern/ScatterChart/plugin.js +0 -13
- package/modern/ScatterChart/tooltip.js +0 -25
- package/modern/hooks/useChartDimensions.js +0 -18
- package/modern/internals/calculateMargins.js +0 -25
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxis.selectors.js +0 -89
- package/node/BarChart/AnimatedBarElement.js +0 -29
- package/node/BarChart/BarChart.js +0 -343
- package/node/BarChart/BarChart.plugins.js +0 -11
- package/node/BarChart/BarClipPath.js +0 -49
- package/node/BarChart/BarElement.js +0 -109
- package/node/BarChart/BarLabel/BarLabel.js +0 -60
- package/node/BarChart/BarLabel/BarLabelItem.js +0 -126
- package/node/BarChart/BarLabel/BarLabelPlot.js +0 -82
- package/node/BarChart/BarLabel/barLabelClasses.js +0 -29
- package/node/BarChart/BarLabel/getBarLabel.js +0 -31
- package/node/BarChart/BarLabel/index.js +0 -25
- package/node/BarChart/BarPlot.js +0 -327
- package/node/BarChart/checkScaleErrors.js +0 -33
- package/node/BarChart/formatter.js +0 -80
- package/node/BarChart/getRadius.js +0 -37
- package/node/BarChart/index.js +0 -49
- package/node/BarChart/legend.js +0 -28
- package/node/BarChart/plugin.js +0 -20
- package/node/BarChart/tooltip.js +0 -31
- package/node/BarChart/types.js +0 -5
- package/node/BarChart/useBarChartProps.js +0 -151
- package/node/ChartContainer/ChartContainer.js +0 -270
- package/node/ChartContainer/index.js +0 -16
- package/node/ChartContainer/useChartContainerProps.js +0 -68
- package/node/ChartDataProvider/ChartDataProvider.js +0 -103
- package/node/ChartDataProvider/index.js +0 -16
- package/node/ChartDataProvider/useChartDataProviderProps.js +0 -52
- package/node/ChartsAxis/ChartsAxis.js +0 -137
- package/node/ChartsAxis/axisClasses.js +0 -14
- package/node/ChartsAxis/index.js +0 -27
- package/node/ChartsAxisHighlight/ChartsAxisHighlight.js +0 -56
- package/node/ChartsAxisHighlight/ChartsAxisHighlight.types.js +0 -5
- package/node/ChartsAxisHighlight/ChartsAxisHighlightPath.js +0 -40
- package/node/ChartsAxisHighlight/ChartsXAxisHighlight.js +0 -57
- package/node/ChartsAxisHighlight/ChartsYAxisHighlight.js +0 -57
- package/node/ChartsAxisHighlight/chartsAxisHighlightClasses.js +0 -14
- package/node/ChartsAxisHighlight/index.js +0 -49
- package/node/ChartsClipPath/ChartsClipPath.js +0 -59
- package/node/ChartsClipPath/index.js +0 -16
- package/node/ChartsGrid/ChartsGrid.js +0 -97
- package/node/ChartsGrid/ChartsHorizontalGrid.js +0 -44
- package/node/ChartsGrid/ChartsVerticalGrid.js +0 -44
- package/node/ChartsGrid/chartsGridClasses.js +0 -14
- package/node/ChartsGrid/index.js +0 -27
- package/node/ChartsGrid/styledComponents.js +0 -28
- package/node/ChartsLabel/ChartsLabel.js +0 -49
- package/node/ChartsLabel/ChartsLabelGradient.js +0 -141
- package/node/ChartsLabel/ChartsLabelMark.js +0 -117
- package/node/ChartsLabel/index.js +0 -26
- package/node/ChartsLabel/labelClasses.js +0 -22
- package/node/ChartsLabel/labelGradientClasses.js +0 -27
- package/node/ChartsLabel/labelMarkClasses.js +0 -27
- package/node/ChartsLegend/ChartsLegend.js +0 -144
- package/node/ChartsLegend/ContinuousColorLegend.js +0 -276
- package/node/ChartsLegend/PiecewiseColorLegend.js +0 -273
- package/node/ChartsLegend/chartsLegend.types.js +0 -5
- package/node/ChartsLegend/chartsLegendClasses.js +0 -28
- package/node/ChartsLegend/colorLegend.types.js +0 -5
- package/node/ChartsLegend/continuousColorLegendClasses.js +0 -31
- package/node/ChartsLegend/direction.js +0 -5
- package/node/ChartsLegend/index.js +0 -135
- package/node/ChartsLegend/legend.types.js +0 -5
- package/node/ChartsLegend/legendContext.types.js +0 -5
- package/node/ChartsLegend/onClickContextBuilder.js +0 -14
- package/node/ChartsLegend/piecewiseColorDefaultLabelFormatter.js +0 -15
- package/node/ChartsLegend/piecewiseColorLegend.types.js +0 -5
- package/node/ChartsLegend/piecewiseColorLegendClasses.js +0 -31
- package/node/ChartsLegend/useAxis.js +0 -47
- package/node/ChartsOverlay/ChartsLoadingOverlay.js +0 -43
- package/node/ChartsOverlay/ChartsNoDataOverlay.js +0 -43
- package/node/ChartsOverlay/ChartsOverlay.js +0 -41
- package/node/ChartsOverlay/index.js +0 -26
- package/node/ChartsReferenceLine/ChartsReferenceLine.js +0 -82
- package/node/ChartsReferenceLine/ChartsXReferenceLine.js +0 -109
- package/node/ChartsReferenceLine/ChartsYReferenceLine.js +0 -109
- package/node/ChartsReferenceLine/chartsReferenceLineClasses.js +0 -14
- package/node/ChartsReferenceLine/common.js +0 -27
- package/node/ChartsReferenceLine/index.js +0 -27
- package/node/ChartsSurface/ChartsSurface.js +0 -106
- package/node/ChartsSurface/index.js +0 -16
- package/node/ChartsText/ChartsText.js +0 -100
- package/node/ChartsText/index.js +0 -12
- package/node/ChartsTooltip/ChartTooltip.types.js +0 -5
- package/node/ChartsTooltip/ChartsAxisTooltipContent.js +0 -102
- package/node/ChartsTooltip/ChartsItemTooltipContent.js +0 -71
- package/node/ChartsTooltip/ChartsTooltip.js +0 -201
- package/node/ChartsTooltip/ChartsTooltipContainer.js +0 -286
- package/node/ChartsTooltip/ChartsTooltipTable.js +0 -90
- package/node/ChartsTooltip/chartsTooltipClasses.js +0 -32
- package/node/ChartsTooltip/index.js +0 -126
- package/node/ChartsTooltip/useAxisTooltip.js +0 -92
- package/node/ChartsTooltip/useItemTooltip.js +0 -45
- package/node/ChartsTooltip/utils.js +0 -92
- package/node/ChartsVoronoiHandler/ChartsVoronoiHandler.js +0 -255
- package/node/ChartsVoronoiHandler/index.js +0 -16
- package/node/ChartsXAxis/ChartsXAxis.js +0 -389
- package/node/ChartsXAxis/index.js +0 -16
- package/node/ChartsYAxis/ChartsYAxis.js +0 -332
- package/node/ChartsYAxis/index.js +0 -16
- package/node/Gauge/Gauge.js +0 -149
- package/node/Gauge/GaugeContainer.js +0 -178
- package/node/Gauge/GaugeProvider.js +0 -98
- package/node/Gauge/GaugeReferenceArc.js +0 -44
- package/node/Gauge/GaugeValueArc.js +0 -51
- package/node/Gauge/GaugeValueText.js +0 -77
- package/node/Gauge/gaugeClasses.js +0 -15
- package/node/Gauge/index.js +0 -87
- package/node/Gauge/utils.js +0 -75
- package/node/LineChart/AnimatedArea.js +0 -84
- package/node/LineChart/AnimatedLine.js +0 -84
- package/node/LineChart/AppearingMask.js +0 -49
- package/node/LineChart/AreaElement.js +0 -119
- package/node/LineChart/AreaPlot.js +0 -219
- package/node/LineChart/CircleMarkElement.js +0 -110
- package/node/LineChart/LineChart.js +0 -343
- package/node/LineChart/LineChart.plugins.js +0 -11
- package/node/LineChart/LineElement.js +0 -119
- package/node/LineChart/LineHighlightElement.js +0 -110
- package/node/LineChart/LineHighlightPlot.js +0 -128
- package/node/LineChart/LinePlot.js +0 -202
- package/node/LineChart/MarkElement.js +0 -123
- package/node/LineChart/MarkPlot.js +0 -185
- package/node/LineChart/formatter.js +0 -84
- package/node/LineChart/index.js +0 -154
- package/node/LineChart/legend.js +0 -28
- package/node/LineChart/markElementClasses.js +0 -28
- package/node/LineChart/plugin.js +0 -20
- package/node/LineChart/tooltip.js +0 -31
- package/node/LineChart/useLineChartProps.js +0 -159
- package/node/PieChart/PieArc.js +0 -116
- package/node/PieChart/PieArcLabel.js +0 -121
- package/node/PieChart/PieArcLabelPlot.js +0 -203
- package/node/PieChart/PieArcPlot.js +0 -176
- package/node/PieChart/PieChart.js +0 -207
- package/node/PieChart/PieChart.plugins.js +0 -9
- package/node/PieChart/PiePlot.js +0 -169
- package/node/PieChart/dataTransform/transition.js +0 -145
- package/node/PieChart/dataTransform/useTransformData.js +0 -56
- package/node/PieChart/formatter.js +0 -56
- package/node/PieChart/getPieCoordinates.js +0 -25
- package/node/PieChart/index.js +0 -82
- package/node/PieChart/legend.js +0 -31
- package/node/PieChart/plugin.js +0 -17
- package/node/PieChart/tooltip.js +0 -36
- package/node/ScatterChart/Scatter.js +0 -123
- package/node/ScatterChart/ScatterChart.js +0 -361
- package/node/ScatterChart/ScatterChart.plugins.js +0 -11
- package/node/ScatterChart/ScatterPlot.js +0 -105
- package/node/ScatterChart/formatter.js +0 -39
- package/node/ScatterChart/index.js +0 -38
- package/node/ScatterChart/legend.js +0 -28
- package/node/ScatterChart/plugin.js +0 -20
- package/node/ScatterChart/tooltip.js +0 -31
- package/node/ScatterChart/useScatterChartProps.js +0 -124
- package/node/SparkLineChart/SparkLineChart.js +0 -369
- package/node/SparkLineChart/index.js +0 -16
- package/node/colorPalettes/colorPalettes.js +0 -22
- package/node/colorPalettes/index.js +0 -16
- package/node/constants/index.js +0 -15
- package/node/context/AnimationProvider/Animation.types.js +0 -5
- package/node/context/AnimationProvider/AnimationContext.js +0 -17
- package/node/context/AnimationProvider/AnimationProvider.js +0 -60
- package/node/context/AnimationProvider/index.js +0 -49
- package/node/context/AnimationProvider/useSkipAnimation.js +0 -25
- package/node/context/ChartProvider/ChartContext.js +0 -15
- package/node/context/ChartProvider/ChartProvider.js +0 -46
- package/node/context/ChartProvider/ChartProvider.types.js +0 -5
- package/node/context/ChartProvider/index.js +0 -38
- package/node/context/ChartProvider/useChartContext.js +0 -18
- package/node/context/PolarProvider/Polar.types.js +0 -5
- package/node/context/PolarProvider/PolarContext.js +0 -20
- package/node/context/PolarProvider/PolarProvider.js +0 -62
- package/node/context/PolarProvider/getAxisExtremum.js +0 -49
- package/node/context/PolarProvider/index.js +0 -1
- package/node/context/PolarProvider/usePolarContext.js +0 -12
- package/node/context/context.types.js +0 -5
- package/node/context/index.js +0 -5
- package/node/hooks/index.js +0 -178
- package/node/hooks/useAxis.js +0 -53
- package/node/hooks/useAxisEvents.js +0 -1
- package/node/hooks/useChartDimensions.js +0 -25
- package/node/hooks/useChartGradientId.js +0 -56
- package/node/hooks/useChartId.js +0 -14
- package/node/hooks/useColorScale.js +0 -35
- package/node/hooks/useDrawingArea.js +0 -14
- package/node/hooks/useInteractionItemProps.js +0 -44
- package/node/hooks/useItemHighlighted.js +0 -28
- package/node/hooks/useItemHighlightedGetter.js +0 -27
- package/node/hooks/useLegend.js +0 -35
- package/node/hooks/useMounted.js +0 -25
- package/node/hooks/useScale.js +0 -31
- package/node/hooks/useSeries.js +0 -74
- package/node/hooks/useSvgRef.js +0 -15
- package/node/hooks/useTicks.js +0 -89
- package/node/hooks/useZAxis.js +0 -33
- package/node/index.js +0 -298
- package/node/internals/calculateMargins.js +0 -33
- package/node/internals/cleanId.js +0 -12
- package/node/internals/colorScale.js +0 -24
- package/node/internals/components/AxisSharedComponents.js +0 -33
- package/node/internals/components/ChartsAxesGradients/ChartsAxesGradients.js +0 -141
- package/node/internals/components/ChartsAxesGradients/ChartsContinuousGradient.js +0 -63
- package/node/internals/components/ChartsAxesGradients/ChartsContinuousGradientObjectBound.js +0 -69
- package/node/internals/components/ChartsAxesGradients/ChartsPiecewiseGradient.js +0 -53
- package/node/internals/components/ChartsAxesGradients/index.js +0 -16
- package/node/internals/components/ChartsWrapper/ChartsWrapper.js +0 -72
- package/node/internals/components/ChartsWrapper/index.js +0 -16
- package/node/internals/configInit.js +0 -26
- package/node/internals/consumeSlots.js +0 -109
- package/node/internals/consumeThemeProps.js +0 -78
- package/node/internals/defaultizeColor.js +0 -20
- package/node/internals/defaultizeValueFormatter.js +0 -17
- package/node/internals/domUtils.js +0 -138
- package/node/internals/geometry.js +0 -40
- package/node/internals/getCurve.js +0 -33
- package/node/internals/getLabel.js +0 -9
- package/node/internals/getPercentageValue.js +0 -34
- package/node/internals/getSVGPoint.js +0 -17
- package/node/internals/getScale.js +0 -23
- package/node/internals/getSymbol.js +0 -27
- package/node/internals/getWordsByLines.js +0 -21
- package/node/internals/index.js +0 -431
- package/node/internals/isBandScale.js +0 -9
- package/node/internals/isCartesian.js +0 -14
- package/node/internals/isDefined.js +0 -9
- package/node/internals/isInfinity.js +0 -9
- package/node/internals/notNull.js +0 -9
- package/node/internals/plugins/allPlugins.js +0 -13
- package/node/internals/plugins/corePlugins/corePlugins.js +0 -14
- package/node/internals/plugins/corePlugins/index.js +0 -12
- package/node/internals/plugins/corePlugins/useChartDimensions/index.js +0 -27
- package/node/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.js +0 -183
- package/node/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.selectors.js +0 -32
- package/node/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.types.js +0 -5
- package/node/internals/plugins/corePlugins/useChartId/index.js +0 -27
- package/node/internals/plugins/corePlugins/useChartId/useChartId.js +0 -41
- package/node/internals/plugins/corePlugins/useChartId/useChartId.selectors.js +0 -15
- package/node/internals/plugins/corePlugins/useChartId/useChartId.types.js +0 -5
- package/node/internals/plugins/corePlugins/useChartId/useChartId.utils.js +0 -12
- package/node/internals/plugins/corePlugins/useChartSeries/index.js +0 -27
- package/node/internals/plugins/corePlugins/useChartSeries/processSeries.js +0 -58
- package/node/internals/plugins/corePlugins/useChartSeries/useChartSeries.js +0 -80
- package/node/internals/plugins/corePlugins/useChartSeries/useChartSeries.selectors.js +0 -11
- package/node/internals/plugins/corePlugins/useChartSeries/useChartSeries.types.js +0 -5
- package/node/internals/plugins/corePlugins/useChartSeries/useColorProcessor.js +0 -27
- package/node/internals/plugins/featurePlugins/useChartCartesianAxis/computeAxisValue.js +0 -134
- package/node/internals/plugins/featurePlugins/useChartCartesianAxis/createAxisFilterMapper.js +0 -69
- package/node/internals/plugins/featurePlugins/useChartCartesianAxis/defaultizeAxis.js +0 -31
- package/node/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisExtremum.js +0 -29
- package/node/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisValue.js +0 -65
- package/node/internals/plugins/featurePlugins/useChartCartesianAxis/index.js +0 -59
- package/node/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxis.js +0 -213
- package/node/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxis.selectors.js +0 -98
- package/node/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxis.types.js +0 -5
- package/node/internals/plugins/featurePlugins/useChartCartesianAxis/zoom.js +0 -26
- package/node/internals/plugins/featurePlugins/useChartCartesianAxis/zoom.types.js +0 -5
- package/node/internals/plugins/featurePlugins/useChartHighlight/createIsFaded.js +0 -19
- package/node/internals/plugins/featurePlugins/useChartHighlight/createIsHighlighted.js +0 -19
- package/node/internals/plugins/featurePlugins/useChartHighlight/highlightConfig.types.js +0 -5
- package/node/internals/plugins/featurePlugins/useChartHighlight/index.js +0 -27
- package/node/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.js +0 -52
- package/node/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.selectors.js +0 -37
- package/node/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.types.js +0 -5
- package/node/internals/plugins/featurePlugins/useChartInteraction/index.js +0 -27
- package/node/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.js +0 -98
- package/node/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.selectors.js +0 -16
- package/node/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.types.js +0 -5
- package/node/internals/plugins/featurePlugins/useChartZAxis/index.js +0 -27
- package/node/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.js +0 -94
- package/node/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.selectors.js +0 -9
- package/node/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.types.js +0 -5
- package/node/internals/plugins/featurePlugins/useChartZAxis/utils.js +0 -1
- package/node/internals/plugins/models/chart.js +0 -5
- package/node/internals/plugins/models/helpers.js +0 -5
- package/node/internals/plugins/models/index.js +0 -49
- package/node/internals/plugins/models/plugin.js +0 -5
- package/node/internals/plugins/models/seriesConfig/colorProcessor.types.js +0 -5
- package/node/internals/plugins/models/seriesConfig/extremumGetter.types.js +0 -5
- package/node/internals/plugins/models/seriesConfig/index.js +0 -71
- package/node/internals/plugins/models/seriesConfig/legendGetter.types.js +0 -5
- package/node/internals/plugins/models/seriesConfig/seriesConfig.types.js +0 -5
- package/node/internals/plugins/models/seriesConfig/seriesProcessor.types.js +0 -5
- package/node/internals/plugins/models/seriesConfig/tooltipGetter.types.js +0 -5
- package/node/internals/plugins/utils/ChartStore.js +0 -31
- package/node/internals/plugins/utils/selectors.js +0 -44
- package/node/internals/stackSeries.js +0 -101
- package/node/internals/store/extractPluginParamsFromProps.js +0 -36
- package/node/internals/store/useChartModels.js +0 -73
- package/node/internals/store/useCharts.js +0 -92
- package/node/internals/store/useCharts.types.js +0 -5
- package/node/internals/store/useSelector.js +0 -13
- package/node/internals/store/useStore.js +0 -15
- package/node/internals/ts-generic.js +0 -5
- package/node/internals/useStringInterpolator.js +0 -30
- package/node/models/axis.js +0 -22
- package/node/models/colorMapping.js +0 -5
- package/node/models/curve.js +0 -5
- package/node/models/index.js +0 -38
- package/node/models/layout.js +0 -5
- package/node/models/position.js +0 -5
- package/node/models/seriesType/bar.js +0 -5
- package/node/models/seriesType/common.js +0 -5
- package/node/models/seriesType/config.js +0 -5
- package/node/models/seriesType/index.js +0 -71
- package/node/models/seriesType/line.js +0 -5
- package/node/models/seriesType/pie.js +0 -5
- package/node/models/seriesType/scatter.js +0 -5
- package/node/models/stacking.js +0 -5
- package/node/models/z-axis.js +0 -5
- package/node/tests/firePointerEvent.js +0 -42
- package/node/themeAugmentation/index.js +0 -1
- package/themeAugmentation/package.json +0 -6
- /package/{node/BarChart → BarChart/seriesConfig}/extremums.js +0 -0
- /package/{node/BarChart → BarChart/seriesConfig}/getColor.js +0 -0
- /package/{node/LineChart → LineChart/seriesConfig}/extremums.js +0 -0
- /package/{node/LineChart → LineChart/seriesConfig}/getColor.js +0 -0
- /package/{node/PieChart → PieChart/seriesConfig}/getColor.js +0 -0
- /package/{node/ScatterChart → ScatterChart/seriesConfig}/extremums.js +0 -0
- /package/{node/ScatterChart → ScatterChart/seriesConfig}/getColor.js +0 -0
- /package/{models/layout.js → esm/BarChart/BarLabel/BarLabel.types.js} +0 -0
- /package/{BarChart → esm/BarChart/seriesConfig}/extremums.js +0 -0
- /package/{BarChart → esm/BarChart/seriesConfig}/getColor.js +0 -0
- /package/{modern/models/layout.js → esm/BarChart/types.js} +0 -0
- /package/{LineChart → esm/LineChart/seriesConfig}/extremums.js +0 -0
- /package/{LineChart → esm/LineChart/seriesConfig}/getColor.js +0 -0
- /package/{PieChart → esm/PieChart/seriesConfig}/getColor.js +0 -0
- /package/{ScatterChart → esm/ScatterChart/seriesConfig}/extremums.js +0 -0
- /package/{ScatterChart → esm/ScatterChart/seriesConfig}/getColor.js +0 -0
- /package/{node/BarChart/BarLabel/BarLabel.types.js → internals/plugins/featurePlugins/useChartVoronoi/useChartVoronoi.types.js} +0 -0
- /package/modern/BarChart/{extremums.js → seriesConfig/extremums.js} +0 -0
- /package/modern/BarChart/{getColor.js → seriesConfig/getColor.js} +0 -0
- /package/modern/LineChart/{extremums.js → seriesConfig/extremums.js} +0 -0
- /package/modern/LineChart/{getColor.js → seriesConfig/getColor.js} +0 -0
- /package/modern/PieChart/{getColor.js → seriesConfig/getColor.js} +0 -0
- /package/modern/ScatterChart/{extremums.js → seriesConfig/extremums.js} +0 -0
- /package/modern/ScatterChart/{getColor.js → seriesConfig/getColor.js} +0 -0
package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxis.selectors.d.ts
DELETED
|
@@ -1,1336 +0,0 @@
|
|
|
1
|
-
import { AxisId } from '../../../../models/axis';
|
|
2
|
-
import { UseChartCartesianAxisSignature } from './useChartCartesianAxis.types';
|
|
3
|
-
import { ChartState } from '../../models/chart';
|
|
4
|
-
import { ZoomData } from './zoom.types';
|
|
5
|
-
export declare const createZoomMap: (zoom: ZoomData[]) => Map<AxisId, ZoomData>;
|
|
6
|
-
export declare const selectorChartCartesianAxisState: (state: ChartState<[UseChartCartesianAxisSignature]>) => {
|
|
7
|
-
x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
|
|
8
|
-
y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
|
|
9
|
-
};
|
|
10
|
-
export declare const selectorChartRawXAxis: ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("./useChartCartesianAxis.types").UseChartCartesianAxisState & Partial<{}> & {
|
|
11
|
-
cacheKey: import("../../models").ChartStateCacheKey;
|
|
12
|
-
}) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[]) & {
|
|
13
|
-
clearCache: () => void;
|
|
14
|
-
resultsCount: () => number;
|
|
15
|
-
resetResultsCount: () => void;
|
|
16
|
-
} & {
|
|
17
|
-
resultFunc: (resultFuncArgs_0: {
|
|
18
|
-
x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
|
|
19
|
-
y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
|
|
20
|
-
}) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[];
|
|
21
|
-
memoizedResultFunc: ((resultFuncArgs_0: {
|
|
22
|
-
x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
|
|
23
|
-
y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
|
|
24
|
-
}) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[]) & {
|
|
25
|
-
clearCache: () => void;
|
|
26
|
-
resultsCount: () => number;
|
|
27
|
-
resetResultsCount: () => void;
|
|
28
|
-
};
|
|
29
|
-
lastResult: () => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[];
|
|
30
|
-
dependencies: [(state: ChartState<[UseChartCartesianAxisSignature]>) => {
|
|
31
|
-
x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
|
|
32
|
-
y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
|
|
33
|
-
}];
|
|
34
|
-
recomputations: () => number;
|
|
35
|
-
resetRecomputations: () => void;
|
|
36
|
-
dependencyRecomputations: () => number;
|
|
37
|
-
resetDependencyRecomputations: () => void;
|
|
38
|
-
} & {
|
|
39
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
40
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
41
|
-
};
|
|
42
|
-
export declare const selectorChartRawYAxis: ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("./useChartCartesianAxis.types").UseChartCartesianAxisState & Partial<{}> & {
|
|
43
|
-
cacheKey: import("../../models").ChartStateCacheKey;
|
|
44
|
-
}) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[]) & {
|
|
45
|
-
clearCache: () => void;
|
|
46
|
-
resultsCount: () => number;
|
|
47
|
-
resetResultsCount: () => void;
|
|
48
|
-
} & {
|
|
49
|
-
resultFunc: (resultFuncArgs_0: {
|
|
50
|
-
x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
|
|
51
|
-
y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
|
|
52
|
-
}) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[];
|
|
53
|
-
memoizedResultFunc: ((resultFuncArgs_0: {
|
|
54
|
-
x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
|
|
55
|
-
y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
|
|
56
|
-
}) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[]) & {
|
|
57
|
-
clearCache: () => void;
|
|
58
|
-
resultsCount: () => number;
|
|
59
|
-
resetResultsCount: () => void;
|
|
60
|
-
};
|
|
61
|
-
lastResult: () => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[];
|
|
62
|
-
dependencies: [(state: ChartState<[UseChartCartesianAxisSignature]>) => {
|
|
63
|
-
x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
|
|
64
|
-
y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
|
|
65
|
-
}];
|
|
66
|
-
recomputations: () => number;
|
|
67
|
-
resetRecomputations: () => void;
|
|
68
|
-
dependencyRecomputations: () => number;
|
|
69
|
-
resetDependencyRecomputations: () => void;
|
|
70
|
-
} & {
|
|
71
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
72
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
73
|
-
};
|
|
74
|
-
/**
|
|
75
|
-
* The only interesting selectors that merge axis data and zoom if provided.
|
|
76
|
-
*/
|
|
77
|
-
export declare const selectorChartXAxis: ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("./useChartCartesianAxis.types").UseChartCartesianAxisState & Partial<{}> & {
|
|
78
|
-
cacheKey: import("../../models").ChartStateCacheKey;
|
|
79
|
-
}) => {
|
|
80
|
-
axis: import("./useChartCartesianAxis.types").DefaultizedAxisConfig<import("../../..").ChartsAxisProps>;
|
|
81
|
-
axisIds: string[];
|
|
82
|
-
}) & {
|
|
83
|
-
clearCache: () => void;
|
|
84
|
-
resultsCount: () => number;
|
|
85
|
-
resetResultsCount: () => void;
|
|
86
|
-
} & {
|
|
87
|
-
resultFunc: (resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[], resultFuncArgs_1: {
|
|
88
|
-
width: number;
|
|
89
|
-
left: number;
|
|
90
|
-
right: number;
|
|
91
|
-
height: number;
|
|
92
|
-
top: number;
|
|
93
|
-
bottom: number;
|
|
94
|
-
}, resultFuncArgs_2: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>, resultFuncArgs_3: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>, resultFuncArgs_4: Map<AxisId, ZoomData> | undefined, resultFuncArgs_5: undefined, resultFuncArgs_6: import("./zoom.types").GetZoomAxisFilters | undefined) => {
|
|
95
|
-
axis: import("./useChartCartesianAxis.types").DefaultizedAxisConfig<import("../../..").ChartsAxisProps>;
|
|
96
|
-
axisIds: string[];
|
|
97
|
-
};
|
|
98
|
-
memoizedResultFunc: ((resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[], resultFuncArgs_1: {
|
|
99
|
-
width: number;
|
|
100
|
-
left: number;
|
|
101
|
-
right: number;
|
|
102
|
-
height: number;
|
|
103
|
-
top: number;
|
|
104
|
-
bottom: number;
|
|
105
|
-
}, resultFuncArgs_2: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>, resultFuncArgs_3: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>, resultFuncArgs_4: Map<AxisId, ZoomData> | undefined, resultFuncArgs_5: undefined, resultFuncArgs_6: import("./zoom.types").GetZoomAxisFilters | undefined) => {
|
|
106
|
-
axis: import("./useChartCartesianAxis.types").DefaultizedAxisConfig<import("../../..").ChartsAxisProps>;
|
|
107
|
-
axisIds: string[];
|
|
108
|
-
}) & {
|
|
109
|
-
clearCache: () => void;
|
|
110
|
-
resultsCount: () => number;
|
|
111
|
-
resetResultsCount: () => void;
|
|
112
|
-
};
|
|
113
|
-
lastResult: () => {
|
|
114
|
-
axis: import("./useChartCartesianAxis.types").DefaultizedAxisConfig<import("../../..").ChartsAxisProps>;
|
|
115
|
-
axisIds: string[];
|
|
116
|
-
};
|
|
117
|
-
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("./useChartCartesianAxis.types").UseChartCartesianAxisState & Partial<{}> & {
|
|
118
|
-
cacheKey: import("../../models").ChartStateCacheKey;
|
|
119
|
-
}) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[]) & {
|
|
120
|
-
clearCache: () => void;
|
|
121
|
-
resultsCount: () => number;
|
|
122
|
-
resetResultsCount: () => void;
|
|
123
|
-
} & {
|
|
124
|
-
resultFunc: (resultFuncArgs_0: {
|
|
125
|
-
x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
|
|
126
|
-
y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
|
|
127
|
-
}) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[];
|
|
128
|
-
memoizedResultFunc: ((resultFuncArgs_0: {
|
|
129
|
-
x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
|
|
130
|
-
y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
|
|
131
|
-
}) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[]) & {
|
|
132
|
-
clearCache: () => void;
|
|
133
|
-
resultsCount: () => number;
|
|
134
|
-
resetResultsCount: () => void;
|
|
135
|
-
};
|
|
136
|
-
lastResult: () => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[];
|
|
137
|
-
dependencies: [(state: ChartState<[UseChartCartesianAxisSignature]>) => {
|
|
138
|
-
x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
|
|
139
|
-
y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
|
|
140
|
-
}];
|
|
141
|
-
recomputations: () => number;
|
|
142
|
-
resetRecomputations: () => void;
|
|
143
|
-
dependencyRecomputations: () => number;
|
|
144
|
-
resetDependencyRecomputations: () => void;
|
|
145
|
-
} & {
|
|
146
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
147
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
148
|
-
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
|
|
149
|
-
cacheKey: import("../../models").ChartStateCacheKey;
|
|
150
|
-
}) => {
|
|
151
|
-
width: number;
|
|
152
|
-
left: number;
|
|
153
|
-
right: number;
|
|
154
|
-
height: number;
|
|
155
|
-
top: number;
|
|
156
|
-
bottom: number;
|
|
157
|
-
}) & {
|
|
158
|
-
clearCache: () => void;
|
|
159
|
-
resultsCount: () => number;
|
|
160
|
-
resetResultsCount: () => void;
|
|
161
|
-
} & {
|
|
162
|
-
resultFunc: (resultFuncArgs_0: {
|
|
163
|
-
left: number;
|
|
164
|
-
top: number;
|
|
165
|
-
bottom: number;
|
|
166
|
-
right: number;
|
|
167
|
-
width: number;
|
|
168
|
-
height: number;
|
|
169
|
-
propsWidth: number | undefined;
|
|
170
|
-
propsHeight: number | undefined;
|
|
171
|
-
}) => {
|
|
172
|
-
width: number;
|
|
173
|
-
left: number;
|
|
174
|
-
right: number;
|
|
175
|
-
height: number;
|
|
176
|
-
top: number;
|
|
177
|
-
bottom: number;
|
|
178
|
-
};
|
|
179
|
-
memoizedResultFunc: ((resultFuncArgs_0: {
|
|
180
|
-
left: number;
|
|
181
|
-
top: number;
|
|
182
|
-
bottom: number;
|
|
183
|
-
right: number;
|
|
184
|
-
width: number;
|
|
185
|
-
height: number;
|
|
186
|
-
propsWidth: number | undefined;
|
|
187
|
-
propsHeight: number | undefined;
|
|
188
|
-
}) => {
|
|
189
|
-
width: number;
|
|
190
|
-
left: number;
|
|
191
|
-
right: number;
|
|
192
|
-
height: number;
|
|
193
|
-
top: number;
|
|
194
|
-
bottom: number;
|
|
195
|
-
}) & {
|
|
196
|
-
clearCache: () => void;
|
|
197
|
-
resultsCount: () => number;
|
|
198
|
-
resetResultsCount: () => void;
|
|
199
|
-
};
|
|
200
|
-
lastResult: () => {
|
|
201
|
-
width: number;
|
|
202
|
-
left: number;
|
|
203
|
-
right: number;
|
|
204
|
-
height: number;
|
|
205
|
-
top: number;
|
|
206
|
-
bottom: number;
|
|
207
|
-
};
|
|
208
|
-
dependencies: [import("../../..").ChartRootSelector<import("../../..").UseChartDimensionsSignature>];
|
|
209
|
-
recomputations: () => number;
|
|
210
|
-
resetRecomputations: () => void;
|
|
211
|
-
dependencyRecomputations: () => number;
|
|
212
|
-
resetDependencyRecomputations: () => void;
|
|
213
|
-
} & {
|
|
214
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
215
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
216
|
-
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
|
|
217
|
-
cacheKey: import("../../models").ChartStateCacheKey;
|
|
218
|
-
}) => import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>) & {
|
|
219
|
-
clearCache: () => void;
|
|
220
|
-
resultsCount: () => number;
|
|
221
|
-
resetResultsCount: () => void;
|
|
222
|
-
} & {
|
|
223
|
-
resultFunc: (resultFuncArgs_0: {
|
|
224
|
-
processedSeries: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>;
|
|
225
|
-
seriesConfig: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>;
|
|
226
|
-
}) => import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>;
|
|
227
|
-
memoizedResultFunc: ((resultFuncArgs_0: {
|
|
228
|
-
processedSeries: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>;
|
|
229
|
-
seriesConfig: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>;
|
|
230
|
-
}) => import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>) & {
|
|
231
|
-
clearCache: () => void;
|
|
232
|
-
resultsCount: () => number;
|
|
233
|
-
resetResultsCount: () => void;
|
|
234
|
-
};
|
|
235
|
-
lastResult: () => import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>;
|
|
236
|
-
dependencies: [import("../../..").ChartRootSelector<import("../../..").UseChartSeriesSignature>];
|
|
237
|
-
recomputations: () => number;
|
|
238
|
-
resetRecomputations: () => void;
|
|
239
|
-
dependencyRecomputations: () => number;
|
|
240
|
-
resetDependencyRecomputations: () => void;
|
|
241
|
-
} & {
|
|
242
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
243
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
244
|
-
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
|
|
245
|
-
cacheKey: import("../../models").ChartStateCacheKey;
|
|
246
|
-
}) => import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>) & {
|
|
247
|
-
clearCache: () => void;
|
|
248
|
-
resultsCount: () => number;
|
|
249
|
-
resetResultsCount: () => void;
|
|
250
|
-
} & {
|
|
251
|
-
resultFunc: (resultFuncArgs_0: {
|
|
252
|
-
processedSeries: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>;
|
|
253
|
-
seriesConfig: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>;
|
|
254
|
-
}) => import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>;
|
|
255
|
-
memoizedResultFunc: ((resultFuncArgs_0: {
|
|
256
|
-
processedSeries: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>;
|
|
257
|
-
seriesConfig: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>;
|
|
258
|
-
}) => import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>) & {
|
|
259
|
-
clearCache: () => void;
|
|
260
|
-
resultsCount: () => number;
|
|
261
|
-
resetResultsCount: () => void;
|
|
262
|
-
};
|
|
263
|
-
lastResult: () => import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>;
|
|
264
|
-
dependencies: [import("../../..").ChartRootSelector<import("../../..").UseChartSeriesSignature>];
|
|
265
|
-
recomputations: () => number;
|
|
266
|
-
resetRecomputations: () => void;
|
|
267
|
-
dependencyRecomputations: () => number;
|
|
268
|
-
resetDependencyRecomputations: () => void;
|
|
269
|
-
} & {
|
|
270
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
271
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
272
|
-
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("./useChartCartesianAxis.types").UseChartCartesianAxisState & Partial<{}> & {
|
|
273
|
-
cacheKey: import("../../models").ChartStateCacheKey;
|
|
274
|
-
}) => Map<AxisId, ZoomData> | undefined) & {
|
|
275
|
-
clearCache: () => void;
|
|
276
|
-
resultsCount: () => number;
|
|
277
|
-
resetResultsCount: () => void;
|
|
278
|
-
} & {
|
|
279
|
-
resultFunc: (resultFuncArgs_0: {
|
|
280
|
-
isInteracting: boolean;
|
|
281
|
-
zoomData: ZoomData[];
|
|
282
|
-
} | undefined) => Map<AxisId, ZoomData> | undefined;
|
|
283
|
-
memoizedResultFunc: ((resultFuncArgs_0: {
|
|
284
|
-
isInteracting: boolean;
|
|
285
|
-
zoomData: ZoomData[];
|
|
286
|
-
} | undefined) => Map<AxisId, ZoomData> | undefined) & {
|
|
287
|
-
clearCache: () => void;
|
|
288
|
-
resultsCount: () => number;
|
|
289
|
-
resetResultsCount: () => void;
|
|
290
|
-
};
|
|
291
|
-
lastResult: () => Map<AxisId, ZoomData> | undefined;
|
|
292
|
-
dependencies: [(state: ChartState<[UseChartCartesianAxisSignature]>) => {
|
|
293
|
-
isInteracting: boolean;
|
|
294
|
-
zoomData: ZoomData[];
|
|
295
|
-
} | undefined];
|
|
296
|
-
recomputations: () => number;
|
|
297
|
-
resetRecomputations: () => void;
|
|
298
|
-
dependencyRecomputations: () => number;
|
|
299
|
-
resetDependencyRecomputations: () => void;
|
|
300
|
-
} & {
|
|
301
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
302
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
303
|
-
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("./useChartCartesianAxis.types").UseChartCartesianAxisState & Partial<{}> & {
|
|
304
|
-
cacheKey: import("../../models").ChartStateCacheKey;
|
|
305
|
-
}) => undefined) & {
|
|
306
|
-
clearCache: () => void;
|
|
307
|
-
resultsCount: () => number;
|
|
308
|
-
resetResultsCount: () => void;
|
|
309
|
-
} & {
|
|
310
|
-
resultFunc: (resultFuncArgs_0: {
|
|
311
|
-
isInteracting: boolean;
|
|
312
|
-
zoomData: ZoomData[];
|
|
313
|
-
} | undefined) => undefined;
|
|
314
|
-
memoizedResultFunc: ((resultFuncArgs_0: {
|
|
315
|
-
isInteracting: boolean;
|
|
316
|
-
zoomData: ZoomData[];
|
|
317
|
-
} | undefined) => undefined) & {
|
|
318
|
-
clearCache: () => void;
|
|
319
|
-
resultsCount: () => number;
|
|
320
|
-
resetResultsCount: () => void;
|
|
321
|
-
};
|
|
322
|
-
lastResult: () => undefined;
|
|
323
|
-
dependencies: [(state: ChartState<[UseChartCartesianAxisSignature]>) => {
|
|
324
|
-
isInteracting: boolean;
|
|
325
|
-
zoomData: ZoomData[];
|
|
326
|
-
} | undefined];
|
|
327
|
-
recomputations: () => number;
|
|
328
|
-
resetRecomputations: () => void;
|
|
329
|
-
dependencyRecomputations: () => number;
|
|
330
|
-
resetDependencyRecomputations: () => void;
|
|
331
|
-
} & {
|
|
332
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
333
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
334
|
-
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("./useChartCartesianAxis.types").UseChartCartesianAxisState & Partial<{}> & {
|
|
335
|
-
cacheKey: import("../../models").ChartStateCacheKey;
|
|
336
|
-
}) => import("./zoom.types").GetZoomAxisFilters | undefined) & {
|
|
337
|
-
clearCache: () => void;
|
|
338
|
-
resultsCount: () => number;
|
|
339
|
-
resetResultsCount: () => void;
|
|
340
|
-
} & {
|
|
341
|
-
resultFunc: (resultFuncArgs_0: undefined, resultFuncArgs_1: undefined, resultFuncArgs_2: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[], resultFuncArgs_3: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[]) => import("./zoom.types").GetZoomAxisFilters | undefined;
|
|
342
|
-
memoizedResultFunc: ((resultFuncArgs_0: undefined, resultFuncArgs_1: undefined, resultFuncArgs_2: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[], resultFuncArgs_3: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[]) => import("./zoom.types").GetZoomAxisFilters | undefined) & {
|
|
343
|
-
clearCache: () => void;
|
|
344
|
-
resultsCount: () => number;
|
|
345
|
-
resetResultsCount: () => void;
|
|
346
|
-
};
|
|
347
|
-
lastResult: () => import("./zoom.types").GetZoomAxisFilters | undefined;
|
|
348
|
-
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("./useChartCartesianAxis.types").UseChartCartesianAxisState & Partial<{}> & {
|
|
349
|
-
cacheKey: import("../../models").ChartStateCacheKey;
|
|
350
|
-
}) => undefined) & {
|
|
351
|
-
clearCache: () => void;
|
|
352
|
-
resultsCount: () => number;
|
|
353
|
-
resetResultsCount: () => void;
|
|
354
|
-
} & {
|
|
355
|
-
resultFunc: (resultFuncArgs_0: Map<AxisId, ZoomData> | undefined, resultFuncArgs_1: undefined, resultFuncArgs_2: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>, resultFuncArgs_3: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>) => undefined;
|
|
356
|
-
memoizedResultFunc: ((resultFuncArgs_0: Map<AxisId, ZoomData> | undefined, resultFuncArgs_1: undefined, resultFuncArgs_2: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>, resultFuncArgs_3: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>) => undefined) & {
|
|
357
|
-
clearCache: () => void;
|
|
358
|
-
resultsCount: () => number;
|
|
359
|
-
resetResultsCount: () => void;
|
|
360
|
-
};
|
|
361
|
-
lastResult: () => undefined;
|
|
362
|
-
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("./useChartCartesianAxis.types").UseChartCartesianAxisState & Partial<{}> & {
|
|
363
|
-
cacheKey: import("../../models").ChartStateCacheKey;
|
|
364
|
-
}) => Map<AxisId, ZoomData> | undefined) & {
|
|
365
|
-
clearCache: () => void;
|
|
366
|
-
resultsCount: () => number;
|
|
367
|
-
resetResultsCount: () => void;
|
|
368
|
-
} & {
|
|
369
|
-
resultFunc: (resultFuncArgs_0: {
|
|
370
|
-
isInteracting: boolean;
|
|
371
|
-
zoomData: ZoomData[];
|
|
372
|
-
} | undefined) => Map<AxisId, ZoomData> | undefined;
|
|
373
|
-
memoizedResultFunc: ((resultFuncArgs_0: {
|
|
374
|
-
isInteracting: boolean;
|
|
375
|
-
zoomData: ZoomData[];
|
|
376
|
-
} | undefined) => Map<AxisId, ZoomData> | undefined) & {
|
|
377
|
-
clearCache: () => void;
|
|
378
|
-
resultsCount: () => number;
|
|
379
|
-
resetResultsCount: () => void;
|
|
380
|
-
};
|
|
381
|
-
lastResult: () => Map<AxisId, ZoomData> | undefined;
|
|
382
|
-
dependencies: [(state: ChartState<[UseChartCartesianAxisSignature]>) => {
|
|
383
|
-
isInteracting: boolean;
|
|
384
|
-
zoomData: ZoomData[];
|
|
385
|
-
} | undefined];
|
|
386
|
-
recomputations: () => number;
|
|
387
|
-
resetRecomputations: () => void;
|
|
388
|
-
dependencyRecomputations: () => number;
|
|
389
|
-
resetDependencyRecomputations: () => void;
|
|
390
|
-
} & {
|
|
391
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
392
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
393
|
-
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("./useChartCartesianAxis.types").UseChartCartesianAxisState & Partial<{}> & {
|
|
394
|
-
cacheKey: import("../../models").ChartStateCacheKey;
|
|
395
|
-
}) => undefined) & {
|
|
396
|
-
clearCache: () => void;
|
|
397
|
-
resultsCount: () => number;
|
|
398
|
-
resetResultsCount: () => void;
|
|
399
|
-
} & {
|
|
400
|
-
resultFunc: (resultFuncArgs_0: {
|
|
401
|
-
isInteracting: boolean;
|
|
402
|
-
zoomData: ZoomData[];
|
|
403
|
-
} | undefined) => undefined;
|
|
404
|
-
memoizedResultFunc: ((resultFuncArgs_0: {
|
|
405
|
-
isInteracting: boolean;
|
|
406
|
-
zoomData: ZoomData[];
|
|
407
|
-
} | undefined) => undefined) & {
|
|
408
|
-
clearCache: () => void;
|
|
409
|
-
resultsCount: () => number;
|
|
410
|
-
resetResultsCount: () => void;
|
|
411
|
-
};
|
|
412
|
-
lastResult: () => undefined;
|
|
413
|
-
dependencies: [(state: ChartState<[UseChartCartesianAxisSignature]>) => {
|
|
414
|
-
isInteracting: boolean;
|
|
415
|
-
zoomData: ZoomData[];
|
|
416
|
-
} | undefined];
|
|
417
|
-
recomputations: () => number;
|
|
418
|
-
resetRecomputations: () => void;
|
|
419
|
-
dependencyRecomputations: () => number;
|
|
420
|
-
resetDependencyRecomputations: () => void;
|
|
421
|
-
} & {
|
|
422
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
423
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
424
|
-
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
|
|
425
|
-
cacheKey: import("../../models").ChartStateCacheKey;
|
|
426
|
-
}) => import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>) & {
|
|
427
|
-
clearCache: () => void;
|
|
428
|
-
resultsCount: () => number;
|
|
429
|
-
resetResultsCount: () => void;
|
|
430
|
-
} & {
|
|
431
|
-
resultFunc: (resultFuncArgs_0: {
|
|
432
|
-
processedSeries: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>;
|
|
433
|
-
seriesConfig: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>;
|
|
434
|
-
}) => import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>;
|
|
435
|
-
memoizedResultFunc: ((resultFuncArgs_0: {
|
|
436
|
-
processedSeries: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>;
|
|
437
|
-
seriesConfig: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>;
|
|
438
|
-
}) => import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>) & {
|
|
439
|
-
clearCache: () => void;
|
|
440
|
-
resultsCount: () => number;
|
|
441
|
-
resetResultsCount: () => void;
|
|
442
|
-
};
|
|
443
|
-
lastResult: () => import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>;
|
|
444
|
-
dependencies: [import("../../..").ChartRootSelector<import("../../..").UseChartSeriesSignature>];
|
|
445
|
-
recomputations: () => number;
|
|
446
|
-
resetRecomputations: () => void;
|
|
447
|
-
dependencyRecomputations: () => number;
|
|
448
|
-
resetDependencyRecomputations: () => void;
|
|
449
|
-
} & {
|
|
450
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
451
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
452
|
-
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
|
|
453
|
-
cacheKey: import("../../models").ChartStateCacheKey;
|
|
454
|
-
}) => import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>) & {
|
|
455
|
-
clearCache: () => void;
|
|
456
|
-
resultsCount: () => number;
|
|
457
|
-
resetResultsCount: () => void;
|
|
458
|
-
} & {
|
|
459
|
-
resultFunc: (resultFuncArgs_0: {
|
|
460
|
-
processedSeries: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>;
|
|
461
|
-
seriesConfig: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>;
|
|
462
|
-
}) => import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>;
|
|
463
|
-
memoizedResultFunc: ((resultFuncArgs_0: {
|
|
464
|
-
processedSeries: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>;
|
|
465
|
-
seriesConfig: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>;
|
|
466
|
-
}) => import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>) & {
|
|
467
|
-
clearCache: () => void;
|
|
468
|
-
resultsCount: () => number;
|
|
469
|
-
resetResultsCount: () => void;
|
|
470
|
-
};
|
|
471
|
-
lastResult: () => import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>;
|
|
472
|
-
dependencies: [import("../../..").ChartRootSelector<import("../../..").UseChartSeriesSignature>];
|
|
473
|
-
recomputations: () => number;
|
|
474
|
-
resetRecomputations: () => void;
|
|
475
|
-
dependencyRecomputations: () => number;
|
|
476
|
-
resetDependencyRecomputations: () => void;
|
|
477
|
-
} & {
|
|
478
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
479
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
480
|
-
}];
|
|
481
|
-
recomputations: () => number;
|
|
482
|
-
resetRecomputations: () => void;
|
|
483
|
-
dependencyRecomputations: () => number;
|
|
484
|
-
resetDependencyRecomputations: () => void;
|
|
485
|
-
} & {
|
|
486
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
487
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
488
|
-
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("./useChartCartesianAxis.types").UseChartCartesianAxisState & Partial<{}> & {
|
|
489
|
-
cacheKey: import("../../models").ChartStateCacheKey;
|
|
490
|
-
}) => undefined) & {
|
|
491
|
-
clearCache: () => void;
|
|
492
|
-
resultsCount: () => number;
|
|
493
|
-
resetResultsCount: () => void;
|
|
494
|
-
} & {
|
|
495
|
-
resultFunc: (resultFuncArgs_0: Map<AxisId, ZoomData> | undefined, resultFuncArgs_1: undefined, resultFuncArgs_2: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>, resultFuncArgs_3: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>) => undefined;
|
|
496
|
-
memoizedResultFunc: ((resultFuncArgs_0: Map<AxisId, ZoomData> | undefined, resultFuncArgs_1: undefined, resultFuncArgs_2: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>, resultFuncArgs_3: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>) => undefined) & {
|
|
497
|
-
clearCache: () => void;
|
|
498
|
-
resultsCount: () => number;
|
|
499
|
-
resetResultsCount: () => void;
|
|
500
|
-
};
|
|
501
|
-
lastResult: () => undefined;
|
|
502
|
-
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("./useChartCartesianAxis.types").UseChartCartesianAxisState & Partial<{}> & {
|
|
503
|
-
cacheKey: import("../../models").ChartStateCacheKey;
|
|
504
|
-
}) => Map<AxisId, ZoomData> | undefined) & {
|
|
505
|
-
clearCache: () => void;
|
|
506
|
-
resultsCount: () => number;
|
|
507
|
-
resetResultsCount: () => void;
|
|
508
|
-
} & {
|
|
509
|
-
resultFunc: (resultFuncArgs_0: {
|
|
510
|
-
isInteracting: boolean;
|
|
511
|
-
zoomData: ZoomData[];
|
|
512
|
-
} | undefined) => Map<AxisId, ZoomData> | undefined;
|
|
513
|
-
memoizedResultFunc: ((resultFuncArgs_0: {
|
|
514
|
-
isInteracting: boolean;
|
|
515
|
-
zoomData: ZoomData[];
|
|
516
|
-
} | undefined) => Map<AxisId, ZoomData> | undefined) & {
|
|
517
|
-
clearCache: () => void;
|
|
518
|
-
resultsCount: () => number;
|
|
519
|
-
resetResultsCount: () => void;
|
|
520
|
-
};
|
|
521
|
-
lastResult: () => Map<AxisId, ZoomData> | undefined;
|
|
522
|
-
dependencies: [(state: ChartState<[UseChartCartesianAxisSignature]>) => {
|
|
523
|
-
isInteracting: boolean;
|
|
524
|
-
zoomData: ZoomData[];
|
|
525
|
-
} | undefined];
|
|
526
|
-
recomputations: () => number;
|
|
527
|
-
resetRecomputations: () => void;
|
|
528
|
-
dependencyRecomputations: () => number;
|
|
529
|
-
resetDependencyRecomputations: () => void;
|
|
530
|
-
} & {
|
|
531
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
532
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
533
|
-
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("./useChartCartesianAxis.types").UseChartCartesianAxisState & Partial<{}> & {
|
|
534
|
-
cacheKey: import("../../models").ChartStateCacheKey;
|
|
535
|
-
}) => undefined) & {
|
|
536
|
-
clearCache: () => void;
|
|
537
|
-
resultsCount: () => number;
|
|
538
|
-
resetResultsCount: () => void;
|
|
539
|
-
} & {
|
|
540
|
-
resultFunc: (resultFuncArgs_0: {
|
|
541
|
-
isInteracting: boolean;
|
|
542
|
-
zoomData: ZoomData[];
|
|
543
|
-
} | undefined) => undefined;
|
|
544
|
-
memoizedResultFunc: ((resultFuncArgs_0: {
|
|
545
|
-
isInteracting: boolean;
|
|
546
|
-
zoomData: ZoomData[];
|
|
547
|
-
} | undefined) => undefined) & {
|
|
548
|
-
clearCache: () => void;
|
|
549
|
-
resultsCount: () => number;
|
|
550
|
-
resetResultsCount: () => void;
|
|
551
|
-
};
|
|
552
|
-
lastResult: () => undefined;
|
|
553
|
-
dependencies: [(state: ChartState<[UseChartCartesianAxisSignature]>) => {
|
|
554
|
-
isInteracting: boolean;
|
|
555
|
-
zoomData: ZoomData[];
|
|
556
|
-
} | undefined];
|
|
557
|
-
recomputations: () => number;
|
|
558
|
-
resetRecomputations: () => void;
|
|
559
|
-
dependencyRecomputations: () => number;
|
|
560
|
-
resetDependencyRecomputations: () => void;
|
|
561
|
-
} & {
|
|
562
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
563
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
564
|
-
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
|
|
565
|
-
cacheKey: import("../../models").ChartStateCacheKey;
|
|
566
|
-
}) => import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>) & {
|
|
567
|
-
clearCache: () => void;
|
|
568
|
-
resultsCount: () => number;
|
|
569
|
-
resetResultsCount: () => void;
|
|
570
|
-
} & {
|
|
571
|
-
resultFunc: (resultFuncArgs_0: {
|
|
572
|
-
processedSeries: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>;
|
|
573
|
-
seriesConfig: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>;
|
|
574
|
-
}) => import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>;
|
|
575
|
-
memoizedResultFunc: ((resultFuncArgs_0: {
|
|
576
|
-
processedSeries: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>;
|
|
577
|
-
seriesConfig: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>;
|
|
578
|
-
}) => import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>) & {
|
|
579
|
-
clearCache: () => void;
|
|
580
|
-
resultsCount: () => number;
|
|
581
|
-
resetResultsCount: () => void;
|
|
582
|
-
};
|
|
583
|
-
lastResult: () => import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>;
|
|
584
|
-
dependencies: [import("../../..").ChartRootSelector<import("../../..").UseChartSeriesSignature>];
|
|
585
|
-
recomputations: () => number;
|
|
586
|
-
resetRecomputations: () => void;
|
|
587
|
-
dependencyRecomputations: () => number;
|
|
588
|
-
resetDependencyRecomputations: () => void;
|
|
589
|
-
} & {
|
|
590
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
591
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
592
|
-
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
|
|
593
|
-
cacheKey: import("../../models").ChartStateCacheKey;
|
|
594
|
-
}) => import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>) & {
|
|
595
|
-
clearCache: () => void;
|
|
596
|
-
resultsCount: () => number;
|
|
597
|
-
resetResultsCount: () => void;
|
|
598
|
-
} & {
|
|
599
|
-
resultFunc: (resultFuncArgs_0: {
|
|
600
|
-
processedSeries: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>;
|
|
601
|
-
seriesConfig: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>;
|
|
602
|
-
}) => import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>;
|
|
603
|
-
memoizedResultFunc: ((resultFuncArgs_0: {
|
|
604
|
-
processedSeries: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>;
|
|
605
|
-
seriesConfig: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>;
|
|
606
|
-
}) => import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>) & {
|
|
607
|
-
clearCache: () => void;
|
|
608
|
-
resultsCount: () => number;
|
|
609
|
-
resetResultsCount: () => void;
|
|
610
|
-
};
|
|
611
|
-
lastResult: () => import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>;
|
|
612
|
-
dependencies: [import("../../..").ChartRootSelector<import("../../..").UseChartSeriesSignature>];
|
|
613
|
-
recomputations: () => number;
|
|
614
|
-
resetRecomputations: () => void;
|
|
615
|
-
dependencyRecomputations: () => number;
|
|
616
|
-
resetDependencyRecomputations: () => void;
|
|
617
|
-
} & {
|
|
618
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
619
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
620
|
-
}];
|
|
621
|
-
recomputations: () => number;
|
|
622
|
-
resetRecomputations: () => void;
|
|
623
|
-
dependencyRecomputations: () => number;
|
|
624
|
-
resetDependencyRecomputations: () => void;
|
|
625
|
-
} & {
|
|
626
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
627
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
628
|
-
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("./useChartCartesianAxis.types").UseChartCartesianAxisState & Partial<{}> & {
|
|
629
|
-
cacheKey: import("../../models").ChartStateCacheKey;
|
|
630
|
-
}) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[]) & {
|
|
631
|
-
clearCache: () => void;
|
|
632
|
-
resultsCount: () => number;
|
|
633
|
-
resetResultsCount: () => void;
|
|
634
|
-
} & {
|
|
635
|
-
resultFunc: (resultFuncArgs_0: {
|
|
636
|
-
x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
|
|
637
|
-
y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
|
|
638
|
-
}) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[];
|
|
639
|
-
memoizedResultFunc: ((resultFuncArgs_0: {
|
|
640
|
-
x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
|
|
641
|
-
y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
|
|
642
|
-
}) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[]) & {
|
|
643
|
-
clearCache: () => void;
|
|
644
|
-
resultsCount: () => number;
|
|
645
|
-
resetResultsCount: () => void;
|
|
646
|
-
};
|
|
647
|
-
lastResult: () => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[];
|
|
648
|
-
dependencies: [(state: ChartState<[UseChartCartesianAxisSignature]>) => {
|
|
649
|
-
x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
|
|
650
|
-
y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
|
|
651
|
-
}];
|
|
652
|
-
recomputations: () => number;
|
|
653
|
-
resetRecomputations: () => void;
|
|
654
|
-
dependencyRecomputations: () => number;
|
|
655
|
-
resetDependencyRecomputations: () => void;
|
|
656
|
-
} & {
|
|
657
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
658
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
659
|
-
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("./useChartCartesianAxis.types").UseChartCartesianAxisState & Partial<{}> & {
|
|
660
|
-
cacheKey: import("../../models").ChartStateCacheKey;
|
|
661
|
-
}) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[]) & {
|
|
662
|
-
clearCache: () => void;
|
|
663
|
-
resultsCount: () => number;
|
|
664
|
-
resetResultsCount: () => void;
|
|
665
|
-
} & {
|
|
666
|
-
resultFunc: (resultFuncArgs_0: {
|
|
667
|
-
x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
|
|
668
|
-
y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
|
|
669
|
-
}) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[];
|
|
670
|
-
memoizedResultFunc: ((resultFuncArgs_0: {
|
|
671
|
-
x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
|
|
672
|
-
y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
|
|
673
|
-
}) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[]) & {
|
|
674
|
-
clearCache: () => void;
|
|
675
|
-
resultsCount: () => number;
|
|
676
|
-
resetResultsCount: () => void;
|
|
677
|
-
};
|
|
678
|
-
lastResult: () => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[];
|
|
679
|
-
dependencies: [(state: ChartState<[UseChartCartesianAxisSignature]>) => {
|
|
680
|
-
x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
|
|
681
|
-
y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
|
|
682
|
-
}];
|
|
683
|
-
recomputations: () => number;
|
|
684
|
-
resetRecomputations: () => void;
|
|
685
|
-
dependencyRecomputations: () => number;
|
|
686
|
-
resetDependencyRecomputations: () => void;
|
|
687
|
-
} & {
|
|
688
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
689
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
690
|
-
}];
|
|
691
|
-
recomputations: () => number;
|
|
692
|
-
resetRecomputations: () => void;
|
|
693
|
-
dependencyRecomputations: () => number;
|
|
694
|
-
resetDependencyRecomputations: () => void;
|
|
695
|
-
} & {
|
|
696
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
697
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
698
|
-
}];
|
|
699
|
-
recomputations: () => number;
|
|
700
|
-
resetRecomputations: () => void;
|
|
701
|
-
dependencyRecomputations: () => number;
|
|
702
|
-
resetDependencyRecomputations: () => void;
|
|
703
|
-
} & {
|
|
704
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
705
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
706
|
-
};
|
|
707
|
-
export declare const selectorChartYAxis: ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("./useChartCartesianAxis.types").UseChartCartesianAxisState & Partial<{}> & {
|
|
708
|
-
cacheKey: import("../../models").ChartStateCacheKey;
|
|
709
|
-
}) => {
|
|
710
|
-
axis: import("./useChartCartesianAxis.types").DefaultizedAxisConfig<import("../../..").ChartsYAxisProps>;
|
|
711
|
-
axisIds: string[];
|
|
712
|
-
}) & {
|
|
713
|
-
clearCache: () => void;
|
|
714
|
-
resultsCount: () => number;
|
|
715
|
-
resetResultsCount: () => void;
|
|
716
|
-
} & {
|
|
717
|
-
resultFunc: (resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[], resultFuncArgs_1: {
|
|
718
|
-
width: number;
|
|
719
|
-
left: number;
|
|
720
|
-
right: number;
|
|
721
|
-
height: number;
|
|
722
|
-
top: number;
|
|
723
|
-
bottom: number;
|
|
724
|
-
}, resultFuncArgs_2: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>, resultFuncArgs_3: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>, resultFuncArgs_4: Map<AxisId, ZoomData> | undefined, resultFuncArgs_5: undefined, resultFuncArgs_6: import("./zoom.types").GetZoomAxisFilters | undefined) => {
|
|
725
|
-
axis: import("./useChartCartesianAxis.types").DefaultizedAxisConfig<import("../../..").ChartsYAxisProps>;
|
|
726
|
-
axisIds: string[];
|
|
727
|
-
};
|
|
728
|
-
memoizedResultFunc: ((resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[], resultFuncArgs_1: {
|
|
729
|
-
width: number;
|
|
730
|
-
left: number;
|
|
731
|
-
right: number;
|
|
732
|
-
height: number;
|
|
733
|
-
top: number;
|
|
734
|
-
bottom: number;
|
|
735
|
-
}, resultFuncArgs_2: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>, resultFuncArgs_3: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>, resultFuncArgs_4: Map<AxisId, ZoomData> | undefined, resultFuncArgs_5: undefined, resultFuncArgs_6: import("./zoom.types").GetZoomAxisFilters | undefined) => {
|
|
736
|
-
axis: import("./useChartCartesianAxis.types").DefaultizedAxisConfig<import("../../..").ChartsYAxisProps>;
|
|
737
|
-
axisIds: string[];
|
|
738
|
-
}) & {
|
|
739
|
-
clearCache: () => void;
|
|
740
|
-
resultsCount: () => number;
|
|
741
|
-
resetResultsCount: () => void;
|
|
742
|
-
};
|
|
743
|
-
lastResult: () => {
|
|
744
|
-
axis: import("./useChartCartesianAxis.types").DefaultizedAxisConfig<import("../../..").ChartsYAxisProps>;
|
|
745
|
-
axisIds: string[];
|
|
746
|
-
};
|
|
747
|
-
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("./useChartCartesianAxis.types").UseChartCartesianAxisState & Partial<{}> & {
|
|
748
|
-
cacheKey: import("../../models").ChartStateCacheKey;
|
|
749
|
-
}) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[]) & {
|
|
750
|
-
clearCache: () => void;
|
|
751
|
-
resultsCount: () => number;
|
|
752
|
-
resetResultsCount: () => void;
|
|
753
|
-
} & {
|
|
754
|
-
resultFunc: (resultFuncArgs_0: {
|
|
755
|
-
x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
|
|
756
|
-
y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
|
|
757
|
-
}) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[];
|
|
758
|
-
memoizedResultFunc: ((resultFuncArgs_0: {
|
|
759
|
-
x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
|
|
760
|
-
y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
|
|
761
|
-
}) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[]) & {
|
|
762
|
-
clearCache: () => void;
|
|
763
|
-
resultsCount: () => number;
|
|
764
|
-
resetResultsCount: () => void;
|
|
765
|
-
};
|
|
766
|
-
lastResult: () => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[];
|
|
767
|
-
dependencies: [(state: ChartState<[UseChartCartesianAxisSignature]>) => {
|
|
768
|
-
x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
|
|
769
|
-
y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
|
|
770
|
-
}];
|
|
771
|
-
recomputations: () => number;
|
|
772
|
-
resetRecomputations: () => void;
|
|
773
|
-
dependencyRecomputations: () => number;
|
|
774
|
-
resetDependencyRecomputations: () => void;
|
|
775
|
-
} & {
|
|
776
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
777
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
778
|
-
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
|
|
779
|
-
cacheKey: import("../../models").ChartStateCacheKey;
|
|
780
|
-
}) => {
|
|
781
|
-
width: number;
|
|
782
|
-
left: number;
|
|
783
|
-
right: number;
|
|
784
|
-
height: number;
|
|
785
|
-
top: number;
|
|
786
|
-
bottom: number;
|
|
787
|
-
}) & {
|
|
788
|
-
clearCache: () => void;
|
|
789
|
-
resultsCount: () => number;
|
|
790
|
-
resetResultsCount: () => void;
|
|
791
|
-
} & {
|
|
792
|
-
resultFunc: (resultFuncArgs_0: {
|
|
793
|
-
left: number;
|
|
794
|
-
top: number;
|
|
795
|
-
bottom: number;
|
|
796
|
-
right: number;
|
|
797
|
-
width: number;
|
|
798
|
-
height: number;
|
|
799
|
-
propsWidth: number | undefined;
|
|
800
|
-
propsHeight: number | undefined;
|
|
801
|
-
}) => {
|
|
802
|
-
width: number;
|
|
803
|
-
left: number;
|
|
804
|
-
right: number;
|
|
805
|
-
height: number;
|
|
806
|
-
top: number;
|
|
807
|
-
bottom: number;
|
|
808
|
-
};
|
|
809
|
-
memoizedResultFunc: ((resultFuncArgs_0: {
|
|
810
|
-
left: number;
|
|
811
|
-
top: number;
|
|
812
|
-
bottom: number;
|
|
813
|
-
right: number;
|
|
814
|
-
width: number;
|
|
815
|
-
height: number;
|
|
816
|
-
propsWidth: number | undefined;
|
|
817
|
-
propsHeight: number | undefined;
|
|
818
|
-
}) => {
|
|
819
|
-
width: number;
|
|
820
|
-
left: number;
|
|
821
|
-
right: number;
|
|
822
|
-
height: number;
|
|
823
|
-
top: number;
|
|
824
|
-
bottom: number;
|
|
825
|
-
}) & {
|
|
826
|
-
clearCache: () => void;
|
|
827
|
-
resultsCount: () => number;
|
|
828
|
-
resetResultsCount: () => void;
|
|
829
|
-
};
|
|
830
|
-
lastResult: () => {
|
|
831
|
-
width: number;
|
|
832
|
-
left: number;
|
|
833
|
-
right: number;
|
|
834
|
-
height: number;
|
|
835
|
-
top: number;
|
|
836
|
-
bottom: number;
|
|
837
|
-
};
|
|
838
|
-
dependencies: [import("../../..").ChartRootSelector<import("../../..").UseChartDimensionsSignature>];
|
|
839
|
-
recomputations: () => number;
|
|
840
|
-
resetRecomputations: () => void;
|
|
841
|
-
dependencyRecomputations: () => number;
|
|
842
|
-
resetDependencyRecomputations: () => void;
|
|
843
|
-
} & {
|
|
844
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
845
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
846
|
-
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
|
|
847
|
-
cacheKey: import("../../models").ChartStateCacheKey;
|
|
848
|
-
}) => import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>) & {
|
|
849
|
-
clearCache: () => void;
|
|
850
|
-
resultsCount: () => number;
|
|
851
|
-
resetResultsCount: () => void;
|
|
852
|
-
} & {
|
|
853
|
-
resultFunc: (resultFuncArgs_0: {
|
|
854
|
-
processedSeries: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>;
|
|
855
|
-
seriesConfig: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>;
|
|
856
|
-
}) => import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>;
|
|
857
|
-
memoizedResultFunc: ((resultFuncArgs_0: {
|
|
858
|
-
processedSeries: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>;
|
|
859
|
-
seriesConfig: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>;
|
|
860
|
-
}) => import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>) & {
|
|
861
|
-
clearCache: () => void;
|
|
862
|
-
resultsCount: () => number;
|
|
863
|
-
resetResultsCount: () => void;
|
|
864
|
-
};
|
|
865
|
-
lastResult: () => import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>;
|
|
866
|
-
dependencies: [import("../../..").ChartRootSelector<import("../../..").UseChartSeriesSignature>];
|
|
867
|
-
recomputations: () => number;
|
|
868
|
-
resetRecomputations: () => void;
|
|
869
|
-
dependencyRecomputations: () => number;
|
|
870
|
-
resetDependencyRecomputations: () => void;
|
|
871
|
-
} & {
|
|
872
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
873
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
874
|
-
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
|
|
875
|
-
cacheKey: import("../../models").ChartStateCacheKey;
|
|
876
|
-
}) => import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>) & {
|
|
877
|
-
clearCache: () => void;
|
|
878
|
-
resultsCount: () => number;
|
|
879
|
-
resetResultsCount: () => void;
|
|
880
|
-
} & {
|
|
881
|
-
resultFunc: (resultFuncArgs_0: {
|
|
882
|
-
processedSeries: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>;
|
|
883
|
-
seriesConfig: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>;
|
|
884
|
-
}) => import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>;
|
|
885
|
-
memoizedResultFunc: ((resultFuncArgs_0: {
|
|
886
|
-
processedSeries: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>;
|
|
887
|
-
seriesConfig: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>;
|
|
888
|
-
}) => import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>) & {
|
|
889
|
-
clearCache: () => void;
|
|
890
|
-
resultsCount: () => number;
|
|
891
|
-
resetResultsCount: () => void;
|
|
892
|
-
};
|
|
893
|
-
lastResult: () => import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>;
|
|
894
|
-
dependencies: [import("../../..").ChartRootSelector<import("../../..").UseChartSeriesSignature>];
|
|
895
|
-
recomputations: () => number;
|
|
896
|
-
resetRecomputations: () => void;
|
|
897
|
-
dependencyRecomputations: () => number;
|
|
898
|
-
resetDependencyRecomputations: () => void;
|
|
899
|
-
} & {
|
|
900
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
901
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
902
|
-
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("./useChartCartesianAxis.types").UseChartCartesianAxisState & Partial<{}> & {
|
|
903
|
-
cacheKey: import("../../models").ChartStateCacheKey;
|
|
904
|
-
}) => Map<AxisId, ZoomData> | undefined) & {
|
|
905
|
-
clearCache: () => void;
|
|
906
|
-
resultsCount: () => number;
|
|
907
|
-
resetResultsCount: () => void;
|
|
908
|
-
} & {
|
|
909
|
-
resultFunc: (resultFuncArgs_0: {
|
|
910
|
-
isInteracting: boolean;
|
|
911
|
-
zoomData: ZoomData[];
|
|
912
|
-
} | undefined) => Map<AxisId, ZoomData> | undefined;
|
|
913
|
-
memoizedResultFunc: ((resultFuncArgs_0: {
|
|
914
|
-
isInteracting: boolean;
|
|
915
|
-
zoomData: ZoomData[];
|
|
916
|
-
} | undefined) => Map<AxisId, ZoomData> | undefined) & {
|
|
917
|
-
clearCache: () => void;
|
|
918
|
-
resultsCount: () => number;
|
|
919
|
-
resetResultsCount: () => void;
|
|
920
|
-
};
|
|
921
|
-
lastResult: () => Map<AxisId, ZoomData> | undefined;
|
|
922
|
-
dependencies: [(state: ChartState<[UseChartCartesianAxisSignature]>) => {
|
|
923
|
-
isInteracting: boolean;
|
|
924
|
-
zoomData: ZoomData[];
|
|
925
|
-
} | undefined];
|
|
926
|
-
recomputations: () => number;
|
|
927
|
-
resetRecomputations: () => void;
|
|
928
|
-
dependencyRecomputations: () => number;
|
|
929
|
-
resetDependencyRecomputations: () => void;
|
|
930
|
-
} & {
|
|
931
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
932
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
933
|
-
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("./useChartCartesianAxis.types").UseChartCartesianAxisState & Partial<{}> & {
|
|
934
|
-
cacheKey: import("../../models").ChartStateCacheKey;
|
|
935
|
-
}) => undefined) & {
|
|
936
|
-
clearCache: () => void;
|
|
937
|
-
resultsCount: () => number;
|
|
938
|
-
resetResultsCount: () => void;
|
|
939
|
-
} & {
|
|
940
|
-
resultFunc: (resultFuncArgs_0: {
|
|
941
|
-
isInteracting: boolean;
|
|
942
|
-
zoomData: ZoomData[];
|
|
943
|
-
} | undefined) => undefined;
|
|
944
|
-
memoizedResultFunc: ((resultFuncArgs_0: {
|
|
945
|
-
isInteracting: boolean;
|
|
946
|
-
zoomData: ZoomData[];
|
|
947
|
-
} | undefined) => undefined) & {
|
|
948
|
-
clearCache: () => void;
|
|
949
|
-
resultsCount: () => number;
|
|
950
|
-
resetResultsCount: () => void;
|
|
951
|
-
};
|
|
952
|
-
lastResult: () => undefined;
|
|
953
|
-
dependencies: [(state: ChartState<[UseChartCartesianAxisSignature]>) => {
|
|
954
|
-
isInteracting: boolean;
|
|
955
|
-
zoomData: ZoomData[];
|
|
956
|
-
} | undefined];
|
|
957
|
-
recomputations: () => number;
|
|
958
|
-
resetRecomputations: () => void;
|
|
959
|
-
dependencyRecomputations: () => number;
|
|
960
|
-
resetDependencyRecomputations: () => void;
|
|
961
|
-
} & {
|
|
962
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
963
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
964
|
-
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("./useChartCartesianAxis.types").UseChartCartesianAxisState & Partial<{}> & {
|
|
965
|
-
cacheKey: import("../../models").ChartStateCacheKey;
|
|
966
|
-
}) => import("./zoom.types").GetZoomAxisFilters | undefined) & {
|
|
967
|
-
clearCache: () => void;
|
|
968
|
-
resultsCount: () => number;
|
|
969
|
-
resetResultsCount: () => void;
|
|
970
|
-
} & {
|
|
971
|
-
resultFunc: (resultFuncArgs_0: undefined, resultFuncArgs_1: undefined, resultFuncArgs_2: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[], resultFuncArgs_3: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[]) => import("./zoom.types").GetZoomAxisFilters | undefined;
|
|
972
|
-
memoizedResultFunc: ((resultFuncArgs_0: undefined, resultFuncArgs_1: undefined, resultFuncArgs_2: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[], resultFuncArgs_3: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[]) => import("./zoom.types").GetZoomAxisFilters | undefined) & {
|
|
973
|
-
clearCache: () => void;
|
|
974
|
-
resultsCount: () => number;
|
|
975
|
-
resetResultsCount: () => void;
|
|
976
|
-
};
|
|
977
|
-
lastResult: () => import("./zoom.types").GetZoomAxisFilters | undefined;
|
|
978
|
-
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("./useChartCartesianAxis.types").UseChartCartesianAxisState & Partial<{}> & {
|
|
979
|
-
cacheKey: import("../../models").ChartStateCacheKey;
|
|
980
|
-
}) => undefined) & {
|
|
981
|
-
clearCache: () => void;
|
|
982
|
-
resultsCount: () => number;
|
|
983
|
-
resetResultsCount: () => void;
|
|
984
|
-
} & {
|
|
985
|
-
resultFunc: (resultFuncArgs_0: Map<AxisId, ZoomData> | undefined, resultFuncArgs_1: undefined, resultFuncArgs_2: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>, resultFuncArgs_3: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>) => undefined;
|
|
986
|
-
memoizedResultFunc: ((resultFuncArgs_0: Map<AxisId, ZoomData> | undefined, resultFuncArgs_1: undefined, resultFuncArgs_2: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>, resultFuncArgs_3: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>) => undefined) & {
|
|
987
|
-
clearCache: () => void;
|
|
988
|
-
resultsCount: () => number;
|
|
989
|
-
resetResultsCount: () => void;
|
|
990
|
-
};
|
|
991
|
-
lastResult: () => undefined;
|
|
992
|
-
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("./useChartCartesianAxis.types").UseChartCartesianAxisState & Partial<{}> & {
|
|
993
|
-
cacheKey: import("../../models").ChartStateCacheKey;
|
|
994
|
-
}) => Map<AxisId, ZoomData> | undefined) & {
|
|
995
|
-
clearCache: () => void;
|
|
996
|
-
resultsCount: () => number;
|
|
997
|
-
resetResultsCount: () => void;
|
|
998
|
-
} & {
|
|
999
|
-
resultFunc: (resultFuncArgs_0: {
|
|
1000
|
-
isInteracting: boolean;
|
|
1001
|
-
zoomData: ZoomData[];
|
|
1002
|
-
} | undefined) => Map<AxisId, ZoomData> | undefined;
|
|
1003
|
-
memoizedResultFunc: ((resultFuncArgs_0: {
|
|
1004
|
-
isInteracting: boolean;
|
|
1005
|
-
zoomData: ZoomData[];
|
|
1006
|
-
} | undefined) => Map<AxisId, ZoomData> | undefined) & {
|
|
1007
|
-
clearCache: () => void;
|
|
1008
|
-
resultsCount: () => number;
|
|
1009
|
-
resetResultsCount: () => void;
|
|
1010
|
-
};
|
|
1011
|
-
lastResult: () => Map<AxisId, ZoomData> | undefined;
|
|
1012
|
-
dependencies: [(state: ChartState<[UseChartCartesianAxisSignature]>) => {
|
|
1013
|
-
isInteracting: boolean;
|
|
1014
|
-
zoomData: ZoomData[];
|
|
1015
|
-
} | undefined];
|
|
1016
|
-
recomputations: () => number;
|
|
1017
|
-
resetRecomputations: () => void;
|
|
1018
|
-
dependencyRecomputations: () => number;
|
|
1019
|
-
resetDependencyRecomputations: () => void;
|
|
1020
|
-
} & {
|
|
1021
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
1022
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1023
|
-
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("./useChartCartesianAxis.types").UseChartCartesianAxisState & Partial<{}> & {
|
|
1024
|
-
cacheKey: import("../../models").ChartStateCacheKey;
|
|
1025
|
-
}) => undefined) & {
|
|
1026
|
-
clearCache: () => void;
|
|
1027
|
-
resultsCount: () => number;
|
|
1028
|
-
resetResultsCount: () => void;
|
|
1029
|
-
} & {
|
|
1030
|
-
resultFunc: (resultFuncArgs_0: {
|
|
1031
|
-
isInteracting: boolean;
|
|
1032
|
-
zoomData: ZoomData[];
|
|
1033
|
-
} | undefined) => undefined;
|
|
1034
|
-
memoizedResultFunc: ((resultFuncArgs_0: {
|
|
1035
|
-
isInteracting: boolean;
|
|
1036
|
-
zoomData: ZoomData[];
|
|
1037
|
-
} | undefined) => undefined) & {
|
|
1038
|
-
clearCache: () => void;
|
|
1039
|
-
resultsCount: () => number;
|
|
1040
|
-
resetResultsCount: () => void;
|
|
1041
|
-
};
|
|
1042
|
-
lastResult: () => undefined;
|
|
1043
|
-
dependencies: [(state: ChartState<[UseChartCartesianAxisSignature]>) => {
|
|
1044
|
-
isInteracting: boolean;
|
|
1045
|
-
zoomData: ZoomData[];
|
|
1046
|
-
} | undefined];
|
|
1047
|
-
recomputations: () => number;
|
|
1048
|
-
resetRecomputations: () => void;
|
|
1049
|
-
dependencyRecomputations: () => number;
|
|
1050
|
-
resetDependencyRecomputations: () => void;
|
|
1051
|
-
} & {
|
|
1052
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
1053
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1054
|
-
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
|
|
1055
|
-
cacheKey: import("../../models").ChartStateCacheKey;
|
|
1056
|
-
}) => import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>) & {
|
|
1057
|
-
clearCache: () => void;
|
|
1058
|
-
resultsCount: () => number;
|
|
1059
|
-
resetResultsCount: () => void;
|
|
1060
|
-
} & {
|
|
1061
|
-
resultFunc: (resultFuncArgs_0: {
|
|
1062
|
-
processedSeries: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>;
|
|
1063
|
-
seriesConfig: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>;
|
|
1064
|
-
}) => import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>;
|
|
1065
|
-
memoizedResultFunc: ((resultFuncArgs_0: {
|
|
1066
|
-
processedSeries: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>;
|
|
1067
|
-
seriesConfig: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>;
|
|
1068
|
-
}) => import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>) & {
|
|
1069
|
-
clearCache: () => void;
|
|
1070
|
-
resultsCount: () => number;
|
|
1071
|
-
resetResultsCount: () => void;
|
|
1072
|
-
};
|
|
1073
|
-
lastResult: () => import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>;
|
|
1074
|
-
dependencies: [import("../../..").ChartRootSelector<import("../../..").UseChartSeriesSignature>];
|
|
1075
|
-
recomputations: () => number;
|
|
1076
|
-
resetRecomputations: () => void;
|
|
1077
|
-
dependencyRecomputations: () => number;
|
|
1078
|
-
resetDependencyRecomputations: () => void;
|
|
1079
|
-
} & {
|
|
1080
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
1081
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1082
|
-
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
|
|
1083
|
-
cacheKey: import("../../models").ChartStateCacheKey;
|
|
1084
|
-
}) => import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>) & {
|
|
1085
|
-
clearCache: () => void;
|
|
1086
|
-
resultsCount: () => number;
|
|
1087
|
-
resetResultsCount: () => void;
|
|
1088
|
-
} & {
|
|
1089
|
-
resultFunc: (resultFuncArgs_0: {
|
|
1090
|
-
processedSeries: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>;
|
|
1091
|
-
seriesConfig: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>;
|
|
1092
|
-
}) => import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>;
|
|
1093
|
-
memoizedResultFunc: ((resultFuncArgs_0: {
|
|
1094
|
-
processedSeries: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>;
|
|
1095
|
-
seriesConfig: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>;
|
|
1096
|
-
}) => import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>) & {
|
|
1097
|
-
clearCache: () => void;
|
|
1098
|
-
resultsCount: () => number;
|
|
1099
|
-
resetResultsCount: () => void;
|
|
1100
|
-
};
|
|
1101
|
-
lastResult: () => import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>;
|
|
1102
|
-
dependencies: [import("../../..").ChartRootSelector<import("../../..").UseChartSeriesSignature>];
|
|
1103
|
-
recomputations: () => number;
|
|
1104
|
-
resetRecomputations: () => void;
|
|
1105
|
-
dependencyRecomputations: () => number;
|
|
1106
|
-
resetDependencyRecomputations: () => void;
|
|
1107
|
-
} & {
|
|
1108
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
1109
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1110
|
-
}];
|
|
1111
|
-
recomputations: () => number;
|
|
1112
|
-
resetRecomputations: () => void;
|
|
1113
|
-
dependencyRecomputations: () => number;
|
|
1114
|
-
resetDependencyRecomputations: () => void;
|
|
1115
|
-
} & {
|
|
1116
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
1117
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1118
|
-
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("./useChartCartesianAxis.types").UseChartCartesianAxisState & Partial<{}> & {
|
|
1119
|
-
cacheKey: import("../../models").ChartStateCacheKey;
|
|
1120
|
-
}) => undefined) & {
|
|
1121
|
-
clearCache: () => void;
|
|
1122
|
-
resultsCount: () => number;
|
|
1123
|
-
resetResultsCount: () => void;
|
|
1124
|
-
} & {
|
|
1125
|
-
resultFunc: (resultFuncArgs_0: Map<AxisId, ZoomData> | undefined, resultFuncArgs_1: undefined, resultFuncArgs_2: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>, resultFuncArgs_3: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>) => undefined;
|
|
1126
|
-
memoizedResultFunc: ((resultFuncArgs_0: Map<AxisId, ZoomData> | undefined, resultFuncArgs_1: undefined, resultFuncArgs_2: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>, resultFuncArgs_3: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>) => undefined) & {
|
|
1127
|
-
clearCache: () => void;
|
|
1128
|
-
resultsCount: () => number;
|
|
1129
|
-
resetResultsCount: () => void;
|
|
1130
|
-
};
|
|
1131
|
-
lastResult: () => undefined;
|
|
1132
|
-
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("./useChartCartesianAxis.types").UseChartCartesianAxisState & Partial<{}> & {
|
|
1133
|
-
cacheKey: import("../../models").ChartStateCacheKey;
|
|
1134
|
-
}) => Map<AxisId, ZoomData> | undefined) & {
|
|
1135
|
-
clearCache: () => void;
|
|
1136
|
-
resultsCount: () => number;
|
|
1137
|
-
resetResultsCount: () => void;
|
|
1138
|
-
} & {
|
|
1139
|
-
resultFunc: (resultFuncArgs_0: {
|
|
1140
|
-
isInteracting: boolean;
|
|
1141
|
-
zoomData: ZoomData[];
|
|
1142
|
-
} | undefined) => Map<AxisId, ZoomData> | undefined;
|
|
1143
|
-
memoizedResultFunc: ((resultFuncArgs_0: {
|
|
1144
|
-
isInteracting: boolean;
|
|
1145
|
-
zoomData: ZoomData[];
|
|
1146
|
-
} | undefined) => Map<AxisId, ZoomData> | undefined) & {
|
|
1147
|
-
clearCache: () => void;
|
|
1148
|
-
resultsCount: () => number;
|
|
1149
|
-
resetResultsCount: () => void;
|
|
1150
|
-
};
|
|
1151
|
-
lastResult: () => Map<AxisId, ZoomData> | undefined;
|
|
1152
|
-
dependencies: [(state: ChartState<[UseChartCartesianAxisSignature]>) => {
|
|
1153
|
-
isInteracting: boolean;
|
|
1154
|
-
zoomData: ZoomData[];
|
|
1155
|
-
} | undefined];
|
|
1156
|
-
recomputations: () => number;
|
|
1157
|
-
resetRecomputations: () => void;
|
|
1158
|
-
dependencyRecomputations: () => number;
|
|
1159
|
-
resetDependencyRecomputations: () => void;
|
|
1160
|
-
} & {
|
|
1161
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
1162
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1163
|
-
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("./useChartCartesianAxis.types").UseChartCartesianAxisState & Partial<{}> & {
|
|
1164
|
-
cacheKey: import("../../models").ChartStateCacheKey;
|
|
1165
|
-
}) => undefined) & {
|
|
1166
|
-
clearCache: () => void;
|
|
1167
|
-
resultsCount: () => number;
|
|
1168
|
-
resetResultsCount: () => void;
|
|
1169
|
-
} & {
|
|
1170
|
-
resultFunc: (resultFuncArgs_0: {
|
|
1171
|
-
isInteracting: boolean;
|
|
1172
|
-
zoomData: ZoomData[];
|
|
1173
|
-
} | undefined) => undefined;
|
|
1174
|
-
memoizedResultFunc: ((resultFuncArgs_0: {
|
|
1175
|
-
isInteracting: boolean;
|
|
1176
|
-
zoomData: ZoomData[];
|
|
1177
|
-
} | undefined) => undefined) & {
|
|
1178
|
-
clearCache: () => void;
|
|
1179
|
-
resultsCount: () => number;
|
|
1180
|
-
resetResultsCount: () => void;
|
|
1181
|
-
};
|
|
1182
|
-
lastResult: () => undefined;
|
|
1183
|
-
dependencies: [(state: ChartState<[UseChartCartesianAxisSignature]>) => {
|
|
1184
|
-
isInteracting: boolean;
|
|
1185
|
-
zoomData: ZoomData[];
|
|
1186
|
-
} | undefined];
|
|
1187
|
-
recomputations: () => number;
|
|
1188
|
-
resetRecomputations: () => void;
|
|
1189
|
-
dependencyRecomputations: () => number;
|
|
1190
|
-
resetDependencyRecomputations: () => void;
|
|
1191
|
-
} & {
|
|
1192
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
1193
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1194
|
-
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
|
|
1195
|
-
cacheKey: import("../../models").ChartStateCacheKey;
|
|
1196
|
-
}) => import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>) & {
|
|
1197
|
-
clearCache: () => void;
|
|
1198
|
-
resultsCount: () => number;
|
|
1199
|
-
resetResultsCount: () => void;
|
|
1200
|
-
} & {
|
|
1201
|
-
resultFunc: (resultFuncArgs_0: {
|
|
1202
|
-
processedSeries: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>;
|
|
1203
|
-
seriesConfig: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>;
|
|
1204
|
-
}) => import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>;
|
|
1205
|
-
memoizedResultFunc: ((resultFuncArgs_0: {
|
|
1206
|
-
processedSeries: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>;
|
|
1207
|
-
seriesConfig: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>;
|
|
1208
|
-
}) => import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>) & {
|
|
1209
|
-
clearCache: () => void;
|
|
1210
|
-
resultsCount: () => number;
|
|
1211
|
-
resetResultsCount: () => void;
|
|
1212
|
-
};
|
|
1213
|
-
lastResult: () => import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>;
|
|
1214
|
-
dependencies: [import("../../..").ChartRootSelector<import("../../..").UseChartSeriesSignature>];
|
|
1215
|
-
recomputations: () => number;
|
|
1216
|
-
resetRecomputations: () => void;
|
|
1217
|
-
dependencyRecomputations: () => number;
|
|
1218
|
-
resetDependencyRecomputations: () => void;
|
|
1219
|
-
} & {
|
|
1220
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
1221
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1222
|
-
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
|
|
1223
|
-
cacheKey: import("../../models").ChartStateCacheKey;
|
|
1224
|
-
}) => import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>) & {
|
|
1225
|
-
clearCache: () => void;
|
|
1226
|
-
resultsCount: () => number;
|
|
1227
|
-
resetResultsCount: () => void;
|
|
1228
|
-
} & {
|
|
1229
|
-
resultFunc: (resultFuncArgs_0: {
|
|
1230
|
-
processedSeries: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>;
|
|
1231
|
-
seriesConfig: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>;
|
|
1232
|
-
}) => import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>;
|
|
1233
|
-
memoizedResultFunc: ((resultFuncArgs_0: {
|
|
1234
|
-
processedSeries: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>;
|
|
1235
|
-
seriesConfig: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>;
|
|
1236
|
-
}) => import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>) & {
|
|
1237
|
-
clearCache: () => void;
|
|
1238
|
-
resultsCount: () => number;
|
|
1239
|
-
resetResultsCount: () => void;
|
|
1240
|
-
};
|
|
1241
|
-
lastResult: () => import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>;
|
|
1242
|
-
dependencies: [import("../../..").ChartRootSelector<import("../../..").UseChartSeriesSignature>];
|
|
1243
|
-
recomputations: () => number;
|
|
1244
|
-
resetRecomputations: () => void;
|
|
1245
|
-
dependencyRecomputations: () => number;
|
|
1246
|
-
resetDependencyRecomputations: () => void;
|
|
1247
|
-
} & {
|
|
1248
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
1249
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1250
|
-
}];
|
|
1251
|
-
recomputations: () => number;
|
|
1252
|
-
resetRecomputations: () => void;
|
|
1253
|
-
dependencyRecomputations: () => number;
|
|
1254
|
-
resetDependencyRecomputations: () => void;
|
|
1255
|
-
} & {
|
|
1256
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
1257
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1258
|
-
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("./useChartCartesianAxis.types").UseChartCartesianAxisState & Partial<{}> & {
|
|
1259
|
-
cacheKey: import("../../models").ChartStateCacheKey;
|
|
1260
|
-
}) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[]) & {
|
|
1261
|
-
clearCache: () => void;
|
|
1262
|
-
resultsCount: () => number;
|
|
1263
|
-
resetResultsCount: () => void;
|
|
1264
|
-
} & {
|
|
1265
|
-
resultFunc: (resultFuncArgs_0: {
|
|
1266
|
-
x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
|
|
1267
|
-
y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
|
|
1268
|
-
}) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[];
|
|
1269
|
-
memoizedResultFunc: ((resultFuncArgs_0: {
|
|
1270
|
-
x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
|
|
1271
|
-
y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
|
|
1272
|
-
}) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[]) & {
|
|
1273
|
-
clearCache: () => void;
|
|
1274
|
-
resultsCount: () => number;
|
|
1275
|
-
resetResultsCount: () => void;
|
|
1276
|
-
};
|
|
1277
|
-
lastResult: () => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[];
|
|
1278
|
-
dependencies: [(state: ChartState<[UseChartCartesianAxisSignature]>) => {
|
|
1279
|
-
x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
|
|
1280
|
-
y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
|
|
1281
|
-
}];
|
|
1282
|
-
recomputations: () => number;
|
|
1283
|
-
resetRecomputations: () => void;
|
|
1284
|
-
dependencyRecomputations: () => number;
|
|
1285
|
-
resetDependencyRecomputations: () => void;
|
|
1286
|
-
} & {
|
|
1287
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
1288
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1289
|
-
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("./useChartCartesianAxis.types").UseChartCartesianAxisState & Partial<{}> & {
|
|
1290
|
-
cacheKey: import("../../models").ChartStateCacheKey;
|
|
1291
|
-
}) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[]) & {
|
|
1292
|
-
clearCache: () => void;
|
|
1293
|
-
resultsCount: () => number;
|
|
1294
|
-
resetResultsCount: () => void;
|
|
1295
|
-
} & {
|
|
1296
|
-
resultFunc: (resultFuncArgs_0: {
|
|
1297
|
-
x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
|
|
1298
|
-
y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
|
|
1299
|
-
}) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[];
|
|
1300
|
-
memoizedResultFunc: ((resultFuncArgs_0: {
|
|
1301
|
-
x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
|
|
1302
|
-
y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
|
|
1303
|
-
}) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[]) & {
|
|
1304
|
-
clearCache: () => void;
|
|
1305
|
-
resultsCount: () => number;
|
|
1306
|
-
resetResultsCount: () => void;
|
|
1307
|
-
};
|
|
1308
|
-
lastResult: () => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[];
|
|
1309
|
-
dependencies: [(state: ChartState<[UseChartCartesianAxisSignature]>) => {
|
|
1310
|
-
x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
|
|
1311
|
-
y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
|
|
1312
|
-
}];
|
|
1313
|
-
recomputations: () => number;
|
|
1314
|
-
resetRecomputations: () => void;
|
|
1315
|
-
dependencyRecomputations: () => number;
|
|
1316
|
-
resetDependencyRecomputations: () => void;
|
|
1317
|
-
} & {
|
|
1318
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
1319
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1320
|
-
}];
|
|
1321
|
-
recomputations: () => number;
|
|
1322
|
-
resetRecomputations: () => void;
|
|
1323
|
-
dependencyRecomputations: () => number;
|
|
1324
|
-
resetDependencyRecomputations: () => void;
|
|
1325
|
-
} & {
|
|
1326
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
1327
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1328
|
-
}];
|
|
1329
|
-
recomputations: () => number;
|
|
1330
|
-
resetRecomputations: () => void;
|
|
1331
|
-
dependencyRecomputations: () => number;
|
|
1332
|
-
resetDependencyRecomputations: () => void;
|
|
1333
|
-
} & {
|
|
1334
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
1335
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1336
|
-
};
|