@mui/x-charts 8.0.0-beta.3 → 8.0.0
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/BarChart.js +663 -12
- package/BarChart/BarClipPath.js +14 -15
- package/BarChart/BarLabel/barLabelClasses.d.ts +5 -0
- package/BarChart/BarPlot.js +5 -2
- package/BarChart/barElementClasses.d.ts +5 -0
- package/BarChart/barElementClasses.js +1 -1
- package/BarChart/seriesConfig/getColor.js +6 -0
- package/CHANGELOG.md +282 -96
- package/ChartContainer/ChartContainer.js +1010 -23
- package/ChartDataProvider/ChartDataProvider.d.ts +1 -4
- package/ChartDataProvider/ChartDataProvider.js +18 -16
- package/ChartDataProvider/useChartDataProviderProps.d.ts +1 -3
- package/ChartDataProvider/useChartDataProviderProps.js +4 -8
- package/ChartsTooltip/ChartsAxisTooltipContent.js +4 -12
- package/ChartsTooltip/ChartsItemTooltipContent.js +43 -1
- package/ChartsTooltip/ChartsTooltipContainer.js +5 -1
- package/ChartsTooltip/ChartsTooltipTable.js +5 -5
- package/ChartsTooltip/index.d.ts +3 -1
- package/ChartsTooltip/index.js +14 -11
- package/ChartsTooltip/useAxisTooltip.d.ts +7 -6
- package/ChartsTooltip/useAxisTooltip.js +57 -2
- package/ChartsTooltip/useItemTooltip.d.ts +15 -11
- package/ChartsTooltip/useItemTooltip.js +48 -4
- package/Gauge/Gauge.js +10 -3
- package/Gauge/GaugeContainer.js +5 -0
- package/Gauge/GaugeValueArc.d.ts +7 -1
- package/Gauge/GaugeValueArc.js +60 -10
- package/Gauge/gaugeClasses.d.ts +1 -2
- package/Gauge/gaugeClasses.js +2 -3
- package/LineChart/AreaElement.d.ts +5 -0
- package/LineChart/AreaElement.js +1 -1
- package/LineChart/AreaPlot.js +2 -2
- package/LineChart/LineChart.js +663 -12
- package/LineChart/LineElement.d.ts +5 -0
- package/LineChart/LineElement.js +1 -1
- package/LineChart/LinePlot.js +2 -2
- package/LineChart/MarkPlot.js +2 -2
- package/LineChart/markElementClasses.d.ts +5 -0
- package/LineChart/markElementClasses.js +1 -1
- package/LineChart/seriesConfig/getColor.js +6 -0
- package/PieChart/PieArc.d.ts +5 -0
- package/PieChart/PieArc.js +1 -1
- package/PieChart/PieArcLabel.d.ts +5 -0
- package/PieChart/PieArcLabel.js +1 -1
- package/PieChart/PiePlot.js +2 -2
- package/RadarChart/RadarAxisHighlight/RadarAxisHighlight.d.ts +1 -8
- package/RadarChart/RadarAxisHighlight/RadarAxisHighlight.js +53 -15
- package/RadarChart/RadarAxisHighlight/radarAxisHighlightClasses.d.ts +0 -2
- package/RadarChart/RadarAxisHighlight/radarAxisHighlightClasses.js +1 -1
- package/RadarChart/RadarChart.d.ts +6 -4
- package/RadarChart/RadarChart.js +10 -13
- package/RadarChart/RadarDataProvider/RadarDataProvider.d.ts +1 -1
- package/RadarChart/RadarDataProvider/RadarDataProvider.js +1 -1
- package/RadarChart/RadarGrid/CircularRadarGrid.js +11 -7
- package/RadarChart/RadarGrid/CircularRadarStripes.d.ts +6 -0
- package/RadarChart/RadarGrid/CircularRadarStripes.js +38 -0
- package/RadarChart/RadarGrid/RadarGrid.js +52 -12
- package/RadarChart/RadarGrid/RadarGrid.types.d.ts +26 -1
- package/RadarChart/RadarGrid/SharpRadarGrid.js +11 -7
- package/RadarChart/RadarGrid/SharpRadarStripes.d.ts +6 -0
- package/RadarChart/RadarGrid/SharpRadarStripes.js +44 -0
- package/RadarChart/RadarGrid/radarGridClasses.d.ts +12 -0
- package/RadarChart/RadarGrid/radarGridClasses.js +25 -0
- package/RadarChart/RadarSeriesPlot/RadarSeriesArea.d.ts +16 -0
- package/RadarChart/RadarSeriesPlot/RadarSeriesArea.js +54 -7
- package/RadarChart/RadarSeriesPlot/RadarSeriesMarks.d.ts +16 -0
- package/RadarChart/RadarSeriesPlot/RadarSeriesMarks.js +59 -10
- package/RadarChart/RadarSeriesPlot/RadarSeriesPlot.js +21 -24
- package/RadarChart/RadarSeriesPlot/RadarSeriesPlot.types.d.ts +1 -2
- package/RadarChart/RadarSeriesPlot/index.d.ts +2 -2
- package/RadarChart/RadarSeriesPlot/index.js +14 -22
- package/RadarChart/RadarSeriesPlot/radarSeriesPlotClasses.d.ts +6 -2
- package/RadarChart/RadarSeriesPlot/radarSeriesPlotClasses.js +3 -1
- package/RadarChart/RadarSeriesPlot/useRadarSeriesData.d.ts +2 -1
- package/RadarChart/seriesConfig/index.js +3 -1
- package/RadarChart/seriesConfig/tooltip.d.ts +2 -1
- package/RadarChart/seriesConfig/tooltip.js +25 -10
- package/RadarChart/useRadarChartProps.d.ts +0 -2
- package/RadarChart/useRadarChartProps.js +4 -7
- package/ScatterChart/Scatter.d.ts +2 -1
- package/ScatterChart/ScatterChart.js +663 -12
- package/ScatterChart/seriesConfig/getColor.js +9 -0
- package/SparkLineChart/SparkLineChart.d.ts +3 -4
- package/SparkLineChart/SparkLineChart.js +662 -11
- package/context/ChartProvider/ChartProvider.d.ts +1 -1
- package/context/ChartProvider/ChartProvider.types.d.ts +1 -2
- package/esm/BarChart/BarChart.js +663 -12
- package/esm/BarChart/BarClipPath.js +14 -15
- package/esm/BarChart/BarLabel/barLabelClasses.d.ts +5 -0
- package/esm/BarChart/BarPlot.js +4 -1
- package/esm/BarChart/barElementClasses.d.ts +5 -0
- package/esm/BarChart/barElementClasses.js +1 -1
- package/esm/BarChart/seriesConfig/getColor.js +6 -0
- package/esm/ChartContainer/ChartContainer.js +1010 -23
- package/esm/ChartDataProvider/ChartDataProvider.d.ts +1 -4
- package/esm/ChartDataProvider/ChartDataProvider.js +18 -16
- package/esm/ChartDataProvider/useChartDataProviderProps.d.ts +1 -3
- package/esm/ChartDataProvider/useChartDataProviderProps.js +4 -8
- package/esm/ChartsTooltip/ChartsAxisTooltipContent.js +4 -12
- package/esm/ChartsTooltip/ChartsItemTooltipContent.js +44 -2
- package/esm/ChartsTooltip/ChartsTooltipContainer.js +5 -1
- package/esm/ChartsTooltip/ChartsTooltipTable.js +5 -5
- package/esm/ChartsTooltip/index.d.ts +3 -1
- package/esm/ChartsTooltip/index.js +1 -1
- package/esm/ChartsTooltip/useAxisTooltip.d.ts +7 -6
- package/esm/ChartsTooltip/useAxisTooltip.js +58 -3
- package/esm/ChartsTooltip/useItemTooltip.d.ts +15 -11
- package/esm/ChartsTooltip/useItemTooltip.js +45 -4
- package/esm/Gauge/Gauge.js +10 -3
- package/esm/Gauge/GaugeContainer.js +5 -0
- package/esm/Gauge/GaugeValueArc.d.ts +7 -1
- package/esm/Gauge/GaugeValueArc.js +61 -10
- package/esm/Gauge/gaugeClasses.d.ts +1 -2
- package/esm/Gauge/gaugeClasses.js +1 -2
- package/esm/LineChart/AreaElement.d.ts +5 -0
- package/esm/LineChart/AreaElement.js +1 -1
- package/esm/LineChart/AreaPlot.js +1 -1
- package/esm/LineChart/LineChart.js +663 -12
- package/esm/LineChart/LineElement.d.ts +5 -0
- package/esm/LineChart/LineElement.js +1 -1
- package/esm/LineChart/LinePlot.js +1 -1
- package/esm/LineChart/MarkPlot.js +1 -1
- package/esm/LineChart/markElementClasses.d.ts +5 -0
- package/esm/LineChart/markElementClasses.js +1 -1
- package/esm/LineChart/seriesConfig/getColor.js +6 -0
- package/esm/PieChart/PieArc.d.ts +5 -0
- package/esm/PieChart/PieArc.js +1 -1
- package/esm/PieChart/PieArcLabel.d.ts +5 -0
- package/esm/PieChart/PieArcLabel.js +1 -1
- package/esm/PieChart/PiePlot.js +1 -1
- package/esm/RadarChart/RadarAxisHighlight/RadarAxisHighlight.d.ts +1 -8
- package/esm/RadarChart/RadarAxisHighlight/RadarAxisHighlight.js +53 -15
- package/esm/RadarChart/RadarAxisHighlight/radarAxisHighlightClasses.d.ts +0 -2
- package/esm/RadarChart/RadarAxisHighlight/radarAxisHighlightClasses.js +1 -1
- package/esm/RadarChart/RadarChart.d.ts +6 -4
- package/esm/RadarChart/RadarChart.js +11 -14
- package/esm/RadarChart/RadarDataProvider/RadarDataProvider.d.ts +1 -1
- package/esm/RadarChart/RadarDataProvider/RadarDataProvider.js +1 -1
- package/esm/RadarChart/RadarGrid/CircularRadarGrid.js +11 -7
- package/esm/RadarChart/RadarGrid/CircularRadarStripes.d.ts +6 -0
- package/esm/RadarChart/RadarGrid/CircularRadarStripes.js +31 -0
- package/esm/RadarChart/RadarGrid/RadarGrid.js +53 -13
- package/esm/RadarChart/RadarGrid/RadarGrid.types.d.ts +26 -1
- package/esm/RadarChart/RadarGrid/SharpRadarGrid.js +11 -7
- package/esm/RadarChart/RadarGrid/SharpRadarStripes.d.ts +6 -0
- package/esm/RadarChart/RadarGrid/SharpRadarStripes.js +37 -0
- package/esm/RadarChart/RadarGrid/radarGridClasses.d.ts +12 -0
- package/esm/RadarChart/RadarGrid/radarGridClasses.js +15 -0
- package/esm/RadarChart/RadarSeriesPlot/RadarSeriesArea.d.ts +16 -0
- package/esm/RadarChart/RadarSeriesPlot/RadarSeriesArea.js +53 -7
- package/esm/RadarChart/RadarSeriesPlot/RadarSeriesMarks.d.ts +16 -0
- package/esm/RadarChart/RadarSeriesPlot/RadarSeriesMarks.js +58 -10
- package/esm/RadarChart/RadarSeriesPlot/RadarSeriesPlot.js +21 -24
- package/esm/RadarChart/RadarSeriesPlot/RadarSeriesPlot.types.d.ts +1 -2
- package/esm/RadarChart/RadarSeriesPlot/index.d.ts +2 -2
- package/esm/RadarChart/RadarSeriesPlot/index.js +2 -2
- package/esm/RadarChart/RadarSeriesPlot/radarSeriesPlotClasses.d.ts +6 -2
- package/esm/RadarChart/RadarSeriesPlot/radarSeriesPlotClasses.js +3 -1
- package/esm/RadarChart/RadarSeriesPlot/useRadarSeriesData.d.ts +2 -1
- package/esm/RadarChart/seriesConfig/index.js +2 -1
- package/esm/RadarChart/seriesConfig/tooltip.d.ts +2 -1
- package/esm/RadarChart/seriesConfig/tooltip.js +23 -9
- package/esm/RadarChart/useRadarChartProps.d.ts +0 -2
- package/esm/RadarChart/useRadarChartProps.js +4 -7
- package/esm/ScatterChart/Scatter.d.ts +2 -1
- package/esm/ScatterChart/ScatterChart.js +663 -12
- package/esm/ScatterChart/seriesConfig/getColor.js +9 -0
- package/esm/SparkLineChart/SparkLineChart.d.ts +3 -4
- package/esm/SparkLineChart/SparkLineChart.js +662 -11
- package/esm/context/ChartProvider/ChartProvider.d.ts +1 -1
- package/esm/context/ChartProvider/ChartProvider.types.d.ts +1 -2
- package/esm/hooks/animation/index.d.ts +1 -0
- package/esm/hooks/animation/index.js +1 -0
- package/esm/hooks/animation/useAnimate.d.ts +83 -0
- package/esm/hooks/animation/useAnimate.js +47 -0
- package/esm/hooks/animation/useAnimateArea.js +5 -8
- package/esm/hooks/animation/useAnimateBar.js +5 -11
- package/esm/hooks/animation/useAnimateBarLabel.js +5 -11
- package/esm/hooks/animation/useAnimateGaugeValueArc.d.ts +19 -0
- package/esm/hooks/animation/useAnimateGaugeValueArc.js +54 -0
- package/esm/hooks/animation/useAnimateLine.js +5 -8
- package/esm/hooks/animation/useAnimatePieArc.js +17 -25
- package/esm/hooks/animation/useAnimatePieArcLabel.js +14 -18
- package/esm/hooks/useAxisSystem.d.ts +8 -0
- package/esm/hooks/useAxisSystem.js +26 -0
- package/esm/hooks/useIsHydrated.js +1 -1
- package/{context/AnimationProvider → esm/hooks}/useSkipAnimation.d.ts +2 -2
- package/esm/hooks/useSkipAnimation.js +16 -0
- package/esm/index.js +1 -1
- package/{modern/internals/animation/useAnimate.d.ts → esm/internals/animation/useAnimateInternal.d.ts} +3 -1
- package/{modern/internals/animation/useAnimate.js → esm/internals/animation/useAnimateInternal.js} +3 -1
- package/esm/internals/domUtils.js +11 -6
- package/esm/internals/index.d.ts +0 -2
- package/esm/internals/index.js +0 -2
- package/esm/internals/isCartesian.d.ts +2 -7
- package/esm/internals/isCartesian.js +0 -3
- package/esm/internals/isPolar.d.ts +2 -7
- package/esm/internals/isPolar.js +0 -3
- package/esm/internals/plugins/allPlugins.d.ts +1 -6
- package/esm/internals/plugins/allPlugins.js +0 -2
- package/esm/internals/plugins/corePlugins/corePlugins.d.ts +1 -1
- package/esm/internals/plugins/corePlugins/corePlugins.js +2 -1
- package/esm/internals/plugins/corePlugins/useChartAnimation/index.d.ts +3 -0
- package/esm/internals/plugins/corePlugins/useChartAnimation/index.js +2 -0
- package/esm/internals/plugins/corePlugins/useChartAnimation/useChartAnimation.d.ts +3 -0
- package/esm/internals/plugins/corePlugins/useChartAnimation/useChartAnimation.js +88 -0
- package/esm/internals/plugins/corePlugins/useChartAnimation/useChartAnimation.selectors.d.ts +31 -0
- package/esm/internals/plugins/corePlugins/useChartAnimation/useChartAnimation.selectors.js +3 -0
- package/esm/internals/plugins/corePlugins/useChartAnimation/useChartAnimation.types.d.ts +39 -0
- package/esm/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.selectors.d.ts +23 -23
- package/esm/internals/plugins/corePlugins/useChartId/useChartId.selectors.d.ts +1 -1
- package/esm/internals/plugins/corePlugins/useChartSeries/useChartSeries.selectors.d.ts +2 -2
- package/esm/internals/plugins/corePlugins/useChartSeries/useColorProcessor.d.ts +2 -5
- package/esm/internals/plugins/corePlugins/useChartSeries/useColorProcessor.js +1 -0
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/index.d.ts +1 -0
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/index.js +1 -0
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartAxisSize.selectors.d.ts +8 -8
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxis.types.d.ts +7 -9
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisLayout.selectors.d.ts +2 -2
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisRendering.selectors.d.ts +121 -121
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianInteraction.selectors.d.ts +5 -5
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianInteraction.selectors.js +0 -5
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/zoom.types.d.ts +10 -1
- package/esm/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.selectors.d.ts +23 -23
- package/esm/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.selectors.d.ts +9 -9
- package/esm/internals/plugins/featurePlugins/useChartPolarAxis/computeAxisValue.d.ts +1 -1
- package/esm/internals/plugins/featurePlugins/useChartPolarAxis/computeAxisValue.js +9 -3
- package/esm/internals/plugins/featurePlugins/useChartPolarAxis/getAxisIndex.d.ts +6 -0
- package/esm/internals/plugins/featurePlugins/useChartPolarAxis/{getAxisValue.js → getAxisIndex.js} +0 -12
- package/{modern/internals/plugins/featurePlugins/useChartCartesianAxis → esm/internals/plugins/featurePlugins/useChartPolarAxis}/getAxisTriggerTooltip.d.ts +2 -2
- package/{modern/internals/plugins/featurePlugins/useChartCartesianAxis → esm/internals/plugins/featurePlugins/useChartPolarAxis}/getAxisTriggerTooltip.js +2 -2
- package/esm/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarAxis.selectors.d.ts +106 -130
- package/esm/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarAxis.types.d.ts +3 -22
- package/esm/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarInteraction.selectors.d.ts +7 -3669
- package/esm/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarInteraction.selectors.js +65 -9
- package/esm/internals/plugins/featurePlugins/useChartVoronoi/useChartVoronoi.selectors.d.ts +1 -1
- package/esm/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.selectors.d.ts +1 -1
- package/esm/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.types.d.ts +0 -1
- package/esm/internals/plugins/models/seriesConfig/colorProcessor.types.d.ts +10 -1
- package/esm/internals/plugins/models/seriesConfig/polarExtremumGetter.types.d.ts +0 -4
- package/esm/internals/plugins/models/seriesConfig/tooltipGetter.types.d.ts +64 -5
- package/esm/internals/store/useCharts.d.ts +1 -1
- package/esm/internals/store/useSelector.js +1 -4
- package/esm/models/axis.d.ts +15 -3
- package/esm/models/axis.js +4 -0
- package/esm/models/index.d.ts +1 -1
- package/esm/models/seriesType/common.d.ts +1 -2
- package/esm/models/seriesType/index.d.ts +21 -1
- package/esm/models/seriesType/index.js +24 -0
- package/esm/models/seriesType/radar.d.ts +6 -2
- package/hooks/animation/index.d.ts +1 -0
- package/hooks/animation/index.js +11 -0
- package/hooks/animation/useAnimate.d.ts +83 -0
- package/hooks/animation/useAnimate.js +54 -0
- package/hooks/animation/useAnimateArea.js +5 -9
- package/hooks/animation/useAnimateBar.js +5 -11
- package/hooks/animation/useAnimateBarLabel.js +5 -11
- package/hooks/animation/useAnimateGaugeValueArc.d.ts +19 -0
- package/hooks/animation/useAnimateGaugeValueArc.js +60 -0
- package/hooks/animation/useAnimateLine.js +5 -9
- package/hooks/animation/useAnimatePieArc.js +17 -26
- package/hooks/animation/useAnimatePieArcLabel.js +14 -19
- package/hooks/useAxisSystem.d.ts +8 -0
- package/hooks/useAxisSystem.js +30 -0
- package/hooks/useIsHydrated.js +1 -1
- package/{esm/context/AnimationProvider → hooks}/useSkipAnimation.d.ts +2 -2
- package/hooks/useSkipAnimation.js +20 -0
- package/index.js +1 -1
- package/{esm/internals/animation/useAnimate.d.ts → internals/animation/useAnimateInternal.d.ts} +3 -1
- package/internals/animation/{useAnimate.js → useAnimateInternal.js} +4 -2
- package/internals/domUtils.js +11 -6
- package/internals/index.d.ts +0 -2
- package/internals/index.js +0 -12
- package/internals/isCartesian.d.ts +2 -7
- package/internals/isCartesian.js +0 -4
- package/internals/isPolar.d.ts +2 -7
- package/internals/isPolar.js +0 -4
- package/internals/plugins/allPlugins.d.ts +1 -6
- package/internals/plugins/allPlugins.js +1 -3
- package/internals/plugins/corePlugins/corePlugins.d.ts +1 -1
- package/internals/plugins/corePlugins/corePlugins.js +2 -1
- package/internals/plugins/corePlugins/useChartAnimation/index.d.ts +3 -0
- package/internals/plugins/corePlugins/useChartAnimation/index.js +27 -0
- package/internals/plugins/corePlugins/useChartAnimation/useChartAnimation.d.ts +3 -0
- package/internals/plugins/corePlugins/useChartAnimation/useChartAnimation.js +96 -0
- package/internals/plugins/corePlugins/useChartAnimation/useChartAnimation.selectors.d.ts +31 -0
- package/internals/plugins/corePlugins/useChartAnimation/useChartAnimation.selectors.js +9 -0
- package/internals/plugins/corePlugins/useChartAnimation/useChartAnimation.types.d.ts +39 -0
- package/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.selectors.d.ts +23 -23
- package/internals/plugins/corePlugins/useChartId/useChartId.selectors.d.ts +1 -1
- package/internals/plugins/corePlugins/useChartSeries/useChartSeries.selectors.d.ts +2 -2
- package/internals/plugins/corePlugins/useChartSeries/useColorProcessor.d.ts +2 -5
- package/internals/plugins/corePlugins/useChartSeries/useColorProcessor.js +1 -0
- package/internals/plugins/featurePlugins/useChartCartesianAxis/index.d.ts +1 -0
- package/internals/plugins/featurePlugins/useChartCartesianAxis/index.js +12 -0
- package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartAxisSize.selectors.d.ts +8 -8
- package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxis.types.d.ts +7 -9
- package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisLayout.selectors.d.ts +2 -2
- package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisRendering.selectors.d.ts +121 -121
- package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianInteraction.selectors.d.ts +5 -5
- package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianInteraction.selectors.js +1 -6
- package/internals/plugins/featurePlugins/useChartCartesianAxis/zoom.types.d.ts +10 -1
- package/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.selectors.d.ts +23 -23
- package/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.selectors.d.ts +9 -9
- package/internals/plugins/featurePlugins/useChartPolarAxis/computeAxisValue.d.ts +1 -1
- package/internals/plugins/featurePlugins/useChartPolarAxis/computeAxisValue.js +9 -3
- package/internals/plugins/featurePlugins/useChartPolarAxis/getAxisIndex.d.ts +6 -0
- package/internals/plugins/featurePlugins/useChartPolarAxis/{getAxisValue.js → getAxisIndex.js} +0 -13
- package/internals/plugins/featurePlugins/useChartPolarAxis/getAxisTriggerTooltip.d.ts +5 -0
- package/internals/plugins/featurePlugins/useChartPolarAxis/getAxisTriggerTooltip.js +28 -0
- package/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarAxis.selectors.d.ts +106 -130
- package/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarAxis.types.d.ts +3 -22
- package/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarInteraction.selectors.d.ts +7 -3669
- package/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarInteraction.selectors.js +66 -10
- package/internals/plugins/featurePlugins/useChartVoronoi/useChartVoronoi.selectors.d.ts +1 -1
- package/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.selectors.d.ts +1 -1
- package/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.types.d.ts +0 -1
- package/internals/plugins/models/seriesConfig/colorProcessor.types.d.ts +10 -1
- package/internals/plugins/models/seriesConfig/polarExtremumGetter.types.d.ts +0 -4
- package/internals/plugins/models/seriesConfig/tooltipGetter.types.d.ts +64 -5
- package/internals/store/useCharts.d.ts +1 -1
- package/internals/store/useSelector.js +1 -5
- package/models/axis.d.ts +15 -3
- package/models/axis.js +4 -0
- package/models/index.d.ts +1 -1
- package/models/seriesType/common.d.ts +1 -2
- package/models/seriesType/index.d.ts +21 -1
- package/models/seriesType/index.js +24 -0
- package/models/seriesType/radar.d.ts +6 -2
- package/package.json +5 -13
- package/RadarChart/RadarAxisHighlight/RadarAxisPointsHighlight.d.ts +0 -13
- package/RadarChart/RadarAxisHighlight/RadarAxisPointsHighlight.js +0 -54
- package/RadarChart/RadarAxisHighlight/RadarAxisSliceHighlight.d.ts +0 -13
- package/RadarChart/RadarAxisHighlight/RadarAxisSliceHighlight.js +0 -57
- package/context/AnimationProvider/Animation.types.d.ts +0 -15
- package/context/AnimationProvider/AnimationContext.d.ts +0 -4
- package/context/AnimationProvider/AnimationContext.js +0 -17
- package/context/AnimationProvider/AnimationProvider.d.ts +0 -4
- package/context/AnimationProvider/AnimationProvider.js +0 -58
- package/context/AnimationProvider/index.d.ts +0 -4
- package/context/AnimationProvider/index.js +0 -49
- package/context/AnimationProvider/useSkipAnimation.js +0 -25
- package/context/context.types.d.ts +0 -4
- package/context/context.types.js +0 -5
- package/esm/RadarChart/RadarAxisHighlight/RadarAxisPointsHighlight.d.ts +0 -13
- package/esm/RadarChart/RadarAxisHighlight/RadarAxisPointsHighlight.js +0 -47
- package/esm/RadarChart/RadarAxisHighlight/RadarAxisSliceHighlight.d.ts +0 -13
- package/esm/RadarChart/RadarAxisHighlight/RadarAxisSliceHighlight.js +0 -50
- package/esm/context/AnimationProvider/Animation.types.d.ts +0 -15
- package/esm/context/AnimationProvider/AnimationContext.d.ts +0 -4
- package/esm/context/AnimationProvider/AnimationContext.js +0 -10
- package/esm/context/AnimationProvider/AnimationProvider.d.ts +0 -4
- package/esm/context/AnimationProvider/AnimationProvider.js +0 -52
- package/esm/context/AnimationProvider/index.d.ts +0 -4
- package/esm/context/AnimationProvider/index.js +0 -4
- package/esm/context/AnimationProvider/useSkipAnimation.js +0 -20
- package/esm/context/context.types.d.ts +0 -4
- package/esm/context/context.types.js +0 -1
- package/esm/hooks/getValueToPositionMapper.d.ts +0 -8
- package/esm/hooks/getValueToPositionMapper.js +0 -15
- package/esm/hooks/useAxisEvents.d.ts +0 -0
- package/esm/hooks/useAxisEvents.js +0 -0
- package/esm/internals/animation/useAnimate.js +0 -74
- package/esm/internals/notNull.d.ts +0 -1
- package/esm/internals/notNull.js +0 -3
- package/esm/internals/plugins/featurePlugins/useChartPolarAxis/getAxisValue.d.ts +0 -11
- package/esm/internals/plugins/featurePlugins/useChartZAxis/utils.d.ts +0 -0
- package/esm/internals/plugins/featurePlugins/useChartZAxis/utils.js +0 -0
- package/esm/internals/useStringInterpolator.d.ts +0 -1
- package/esm/internals/useStringInterpolator.js +0 -21
- package/hooks/getValueToPositionMapper.d.ts +0 -8
- package/hooks/getValueToPositionMapper.js +0 -20
- package/hooks/useAxisEvents.d.ts +0 -0
- package/hooks/useAxisEvents.js +0 -1
- package/internals/animation/useAnimate.d.ts +0 -19
- package/internals/notNull.d.ts +0 -1
- package/internals/notNull.js +0 -9
- package/internals/plugins/featurePlugins/useChartPolarAxis/getAxisValue.d.ts +0 -11
- package/internals/plugins/featurePlugins/useChartZAxis/utils.d.ts +0 -0
- package/internals/plugins/featurePlugins/useChartZAxis/utils.js +0 -1
- package/internals/useStringInterpolator.d.ts +0 -1
- package/internals/useStringInterpolator.js +0 -30
- package/modern/BarChart/AnimatedBarElement.d.ts +0 -42
- package/modern/BarChart/AnimatedBarElement.js +0 -19
- package/modern/BarChart/BarChart.d.ts +0 -66
- package/modern/BarChart/BarChart.js +0 -323
- package/modern/BarChart/BarChart.plugins.d.ts +0 -7
- package/modern/BarChart/BarChart.plugins.js +0 -5
- package/modern/BarChart/BarClipPath.d.ts +0 -32
- package/modern/BarChart/BarClipPath.js +0 -109
- package/modern/BarChart/BarElement.d.ts +0 -39
- package/modern/BarChart/BarElement.js +0 -106
- package/modern/BarChart/BarLabel/BarLabel.d.ts +0 -34
- package/modern/BarChart/BarLabel/BarLabel.js +0 -80
- package/modern/BarChart/BarLabel/BarLabel.types.d.ts +0 -41
- package/modern/BarChart/BarLabel/BarLabel.types.js +0 -1
- package/modern/BarChart/BarLabel/BarLabelItem.d.ts +0 -78
- package/modern/BarChart/BarLabel/BarLabelItem.js +0 -131
- package/modern/BarChart/BarLabel/BarLabelPlot.d.ts +0 -13
- package/modern/BarChart/BarLabel/BarLabelPlot.js +0 -45
- package/modern/BarChart/BarLabel/barLabelClasses.d.ts +0 -15
- package/modern/BarChart/BarLabel/barLabelClasses.js +0 -20
- package/modern/BarChart/BarLabel/getBarLabel.d.ts +0 -10
- package/modern/BarChart/BarLabel/getBarLabel.js +0 -24
- package/modern/BarChart/BarLabel/index.d.ts +0 -6
- package/modern/BarChart/BarLabel/index.js +0 -2
- package/modern/BarChart/BarPlot.d.ts +0 -49
- package/modern/BarChart/BarPlot.js +0 -303
- package/modern/BarChart/barElementClasses.d.ts +0 -21
- package/modern/BarChart/barElementClasses.js +0 -19
- package/modern/BarChart/checkScaleErrors.d.ts +0 -10
- package/modern/BarChart/checkScaleErrors.js +0 -33
- package/modern/BarChart/getRadius.d.ts +0 -20
- package/modern/BarChart/getRadius.js +0 -30
- package/modern/BarChart/index.d.ts +0 -5
- package/modern/BarChart/index.js +0 -5
- package/modern/BarChart/seriesConfig/extremums.d.ts +0 -3
- package/modern/BarChart/seriesConfig/extremums.js +0 -75
- package/modern/BarChart/seriesConfig/getColor.d.ts +0 -3
- package/modern/BarChart/seriesConfig/getColor.js +0 -28
- package/modern/BarChart/seriesConfig/getSeriesWithDefaultValues.d.ts +0 -3
- package/modern/BarChart/seriesConfig/getSeriesWithDefaultValues.js +0 -8
- package/modern/BarChart/seriesConfig/index.d.ts +0 -2
- package/modern/BarChart/seriesConfig/index.js +0 -16
- package/modern/BarChart/seriesConfig/legend.d.ts +0 -3
- package/modern/BarChart/seriesConfig/legend.js +0 -22
- package/modern/BarChart/seriesConfig/seriesProcessor.d.ts +0 -3
- package/modern/BarChart/seriesConfig/seriesProcessor.js +0 -73
- package/modern/BarChart/seriesConfig/tooltip.d.ts +0 -4
- package/modern/BarChart/seriesConfig/tooltip.js +0 -37
- package/modern/BarChart/types.d.ts +0 -23
- package/modern/BarChart/types.js +0 -1
- package/modern/BarChart/useBarChartProps.d.ts +0 -34
- package/modern/BarChart/useBarChartProps.js +0 -136
- package/modern/ChartContainer/ChartContainer.d.ts +0 -35
- package/modern/ChartContainer/ChartContainer.js +0 -400
- package/modern/ChartContainer/index.d.ts +0 -1
- package/modern/ChartContainer/index.js +0 -1
- package/modern/ChartContainer/useChartContainerProps.d.ts +0 -15
- package/modern/ChartContainer/useChartContainerProps.js +0 -71
- package/modern/ChartDataProvider/ChartDataProvider.d.ts +0 -41
- package/modern/ChartDataProvider/ChartDataProvider.js +0 -98
- package/modern/ChartDataProvider/index.d.ts +0 -1
- package/modern/ChartDataProvider/index.js +0 -1
- package/modern/ChartDataProvider/useChartDataProviderProps.d.ts +0 -11
- package/modern/ChartDataProvider/useChartDataProviderProps.js +0 -31
- package/modern/ChartsAxis/ChartsAxis.d.ts +0 -28
- package/modern/ChartsAxis/ChartsAxis.js +0 -69
- package/modern/ChartsAxis/axisClasses.d.ts +0 -33
- package/modern/ChartsAxis/axisClasses.js +0 -6
- package/modern/ChartsAxis/index.d.ts +0 -2
- package/modern/ChartsAxis/index.js +0 -2
- package/modern/ChartsAxisHighlight/ChartsAxisHighlight.d.ts +0 -16
- package/modern/ChartsAxisHighlight/ChartsAxisHighlight.js +0 -50
- package/modern/ChartsAxisHighlight/ChartsAxisHighlight.types.d.ts +0 -5
- package/modern/ChartsAxisHighlight/ChartsAxisHighlight.types.js +0 -1
- package/modern/ChartsAxisHighlight/ChartsAxisHighlightPath.d.ts +0 -6
- package/modern/ChartsAxisHighlight/ChartsAxisHighlightPath.js +0 -34
- package/modern/ChartsAxisHighlight/ChartsXAxisHighlight.d.ts +0 -10
- package/modern/ChartsAxisHighlight/ChartsXAxisHighlight.js +0 -53
- package/modern/ChartsAxisHighlight/ChartsYAxisHighlight.d.ts +0 -10
- package/modern/ChartsAxisHighlight/ChartsYAxisHighlight.js +0 -53
- package/modern/ChartsAxisHighlight/chartsAxisHighlightClasses.d.ts +0 -7
- package/modern/ChartsAxisHighlight/chartsAxisHighlightClasses.js +0 -6
- package/modern/ChartsAxisHighlight/index.d.ts +0 -4
- package/modern/ChartsAxisHighlight/index.js +0 -4
- package/modern/ChartsClipPath/ChartsClipPath.d.ts +0 -20
- package/modern/ChartsClipPath/ChartsClipPath.js +0 -53
- package/modern/ChartsClipPath/index.d.ts +0 -1
- package/modern/ChartsClipPath/index.js +0 -1
- package/modern/ChartsGrid/ChartsGrid.d.ts +0 -30
- package/modern/ChartsGrid/ChartsGrid.js +0 -91
- package/modern/ChartsGrid/ChartsHorizontalGrid.d.ts +0 -14
- package/modern/ChartsGrid/ChartsHorizontalGrid.js +0 -37
- package/modern/ChartsGrid/ChartsVerticalGrid.d.ts +0 -14
- package/modern/ChartsGrid/ChartsVerticalGrid.js +0 -37
- package/modern/ChartsGrid/chartsGridClasses.d.ts +0 -13
- package/modern/ChartsGrid/chartsGridClasses.js +0 -6
- package/modern/ChartsGrid/index.d.ts +0 -2
- package/modern/ChartsGrid/index.js +0 -2
- package/modern/ChartsGrid/styledComponents.d.ts +0 -2
- package/modern/ChartsGrid/styledComponents.js +0 -22
- package/modern/ChartsLabel/ChartsLabel.d.ts +0 -18
- package/modern/ChartsLabel/ChartsLabel.js +0 -43
- package/modern/ChartsLabel/ChartsLabelGradient.d.ts +0 -41
- package/modern/ChartsLabel/ChartsLabelGradient.js +0 -135
- package/modern/ChartsLabel/ChartsLabelMark.d.ts +0 -31
- package/modern/ChartsLabel/ChartsLabelMark.js +0 -120
- package/modern/ChartsLabel/index.d.ts +0 -8
- package/modern/ChartsLabel/index.js +0 -4
- package/modern/ChartsLabel/labelClasses.d.ts +0 -8
- package/modern/ChartsLabel/labelClasses.js +0 -13
- package/modern/ChartsLabel/labelGradientClasses.d.ts +0 -16
- package/modern/ChartsLabel/labelGradientClasses.js +0 -18
- package/modern/ChartsLabel/labelMarkClasses.d.ts +0 -18
- package/modern/ChartsLabel/labelMarkClasses.js +0 -18
- package/modern/ChartsLegend/ChartsLegend.d.ts +0 -27
- package/modern/ChartsLegend/ChartsLegend.js +0 -138
- package/modern/ChartsLegend/ContinuousColorLegend.d.ts +0 -56
- package/modern/ChartsLegend/ContinuousColorLegend.js +0 -271
- package/modern/ChartsLegend/PiecewiseColorLegend.d.ts +0 -42
- package/modern/ChartsLegend/PiecewiseColorLegend.js +0 -267
- package/modern/ChartsLegend/chartsLegend.types.d.ts +0 -26
- package/modern/ChartsLegend/chartsLegend.types.js +0 -1
- package/modern/ChartsLegend/chartsLegendClasses.d.ts +0 -18
- package/modern/ChartsLegend/chartsLegendClasses.js +0 -20
- package/modern/ChartsLegend/colorLegend.types.d.ts +0 -13
- package/modern/ChartsLegend/colorLegend.types.js +0 -1
- package/modern/ChartsLegend/continuousColorLegendClasses.d.ts +0 -26
- package/modern/ChartsLegend/continuousColorLegendClasses.js +0 -23
- package/modern/ChartsLegend/direction.d.ts +0 -1
- package/modern/ChartsLegend/direction.js +0 -1
- package/modern/ChartsLegend/index.d.ts +0 -16
- package/modern/ChartsLegend/index.js +0 -12
- package/modern/ChartsLegend/legend.types.d.ts +0 -9
- package/modern/ChartsLegend/legend.types.js +0 -1
- package/modern/ChartsLegend/legendContext.types.d.ts +0 -55
- package/modern/ChartsLegend/legendContext.types.js +0 -1
- package/modern/ChartsLegend/onClickContextBuilder.d.ts +0 -2
- package/modern/ChartsLegend/onClickContextBuilder.js +0 -7
- package/modern/ChartsLegend/piecewiseColorDefaultLabelFormatter.d.ts +0 -2
- package/modern/ChartsLegend/piecewiseColorDefaultLabelFormatter.js +0 -9
- package/modern/ChartsLegend/piecewiseColorLegend.types.d.ts +0 -26
- package/modern/ChartsLegend/piecewiseColorLegend.types.js +0 -1
- package/modern/ChartsLegend/piecewiseColorLegendClasses.d.ts +0 -28
- package/modern/ChartsLegend/piecewiseColorLegendClasses.js +0 -23
- package/modern/ChartsLegend/useAxis.d.ts +0 -10
- package/modern/ChartsLegend/useAxis.js +0 -42
- package/modern/ChartsOverlay/ChartsLoadingOverlay.d.ts +0 -3
- package/modern/ChartsOverlay/ChartsLoadingOverlay.js +0 -36
- package/modern/ChartsOverlay/ChartsNoDataOverlay.d.ts +0 -3
- package/modern/ChartsOverlay/ChartsNoDataOverlay.js +0 -36
- package/modern/ChartsOverlay/ChartsOverlay.d.ts +0 -45
- package/modern/ChartsOverlay/ChartsOverlay.js +0 -33
- package/modern/ChartsOverlay/index.d.ts +0 -4
- package/modern/ChartsOverlay/index.js +0 -3
- package/modern/ChartsReferenceLine/ChartsReferenceLine.d.ts +0 -10
- package/modern/ChartsReferenceLine/ChartsReferenceLine.js +0 -76
- package/modern/ChartsReferenceLine/ChartsXReferenceLine.d.ts +0 -13
- package/modern/ChartsReferenceLine/ChartsXReferenceLine.js +0 -102
- package/modern/ChartsReferenceLine/ChartsYReferenceLine.d.ts +0 -13
- package/modern/ChartsReferenceLine/ChartsYReferenceLine.js +0 -102
- package/modern/ChartsReferenceLine/chartsReferenceLineClasses.d.ts +0 -15
- package/modern/ChartsReferenceLine/chartsReferenceLineClasses.js +0 -6
- package/modern/ChartsReferenceLine/common.d.ts +0 -41
- package/modern/ChartsReferenceLine/common.js +0 -20
- package/modern/ChartsReferenceLine/index.d.ts +0 -2
- package/modern/ChartsReferenceLine/index.js +0 -2
- package/modern/ChartsSurface/ChartsSurface.d.ts +0 -25
- package/modern/ChartsSurface/ChartsSurface.js +0 -100
- package/modern/ChartsSurface/index.d.ts +0 -1
- package/modern/ChartsSurface/index.js +0 -1
- package/modern/ChartsText/ChartsText.d.ts +0 -17
- package/modern/ChartsText/ChartsText.js +0 -89
- package/modern/ChartsText/defaultTextPlacement.d.ts +0 -9
- package/modern/ChartsText/defaultTextPlacement.js +0 -34
- package/modern/ChartsText/index.d.ts +0 -3
- package/modern/ChartsText/index.js +0 -1
- package/modern/ChartsTooltip/ChartTooltip.types.d.ts +0 -15
- package/modern/ChartsTooltip/ChartTooltip.types.js +0 -1
- package/modern/ChartsTooltip/ChartsAxisTooltipContent.d.ts +0 -15
- package/modern/ChartsTooltip/ChartsAxisTooltipContent.js +0 -88
- package/modern/ChartsTooltip/ChartsItemTooltipContent.d.ts +0 -15
- package/modern/ChartsTooltip/ChartsItemTooltipContent.js +0 -67
- package/modern/ChartsTooltip/ChartsTooltip.d.ts +0 -17
- package/modern/ChartsTooltip/ChartsTooltip.js +0 -199
- package/modern/ChartsTooltip/ChartsTooltipContainer.d.ts +0 -33
- package/modern/ChartsTooltip/ChartsTooltipContainer.js +0 -291
- package/modern/ChartsTooltip/ChartsTooltipTable.d.ts +0 -18
- package/modern/ChartsTooltip/ChartsTooltipTable.js +0 -99
- package/modern/ChartsTooltip/chartsTooltipClasses.d.ts +0 -26
- package/modern/ChartsTooltip/chartsTooltipClasses.js +0 -22
- package/modern/ChartsTooltip/index.d.ts +0 -12
- package/modern/ChartsTooltip/index.js +0 -11
- package/modern/ChartsTooltip/useAxesTooltip.d.ts +0 -7
- package/modern/ChartsTooltip/useAxesTooltip.js +0 -12
- package/modern/ChartsTooltip/useAxisTooltip.d.ts +0 -41
- package/modern/ChartsTooltip/useAxisTooltip.js +0 -122
- package/modern/ChartsTooltip/useItemTooltip.d.ts +0 -12
- package/modern/ChartsTooltip/useItemTooltip.js +0 -43
- package/modern/ChartsTooltip/utils.d.ts +0 -16
- package/modern/ChartsTooltip/utils.js +0 -84
- package/modern/ChartsXAxis/ChartsXAxis.d.ts +0 -16
- package/modern/ChartsXAxis/ChartsXAxis.js +0 -460
- package/modern/ChartsXAxis/index.d.ts +0 -1
- package/modern/ChartsXAxis/index.js +0 -1
- package/modern/ChartsYAxis/ChartsYAxis.d.ts +0 -16
- package/modern/ChartsYAxis/ChartsYAxis.js +0 -379
- package/modern/ChartsYAxis/index.d.ts +0 -1
- package/modern/ChartsYAxis/index.js +0 -1
- package/modern/Gauge/Gauge.d.ts +0 -10
- package/modern/Gauge/Gauge.js +0 -144
- package/modern/Gauge/GaugeContainer.d.ts +0 -10
- package/modern/Gauge/GaugeContainer.js +0 -174
- package/modern/Gauge/GaugeProvider.d.ts +0 -117
- package/modern/Gauge/GaugeProvider.js +0 -91
- package/modern/Gauge/GaugeReferenceArc.d.ts +0 -2
- package/modern/Gauge/GaugeReferenceArc.js +0 -37
- package/modern/Gauge/GaugeValueArc.d.ts +0 -2
- package/modern/Gauge/GaugeValueArc.js +0 -44
- package/modern/Gauge/GaugeValueText.d.ts +0 -15
- package/modern/Gauge/GaugeValueText.js +0 -71
- package/modern/Gauge/gaugeClasses.d.ts +0 -14
- package/modern/Gauge/gaugeClasses.js +0 -7
- package/modern/Gauge/index.d.ts +0 -7
- package/modern/Gauge/index.js +0 -7
- package/modern/Gauge/utils.d.ts +0 -24
- package/modern/Gauge/utils.js +0 -66
- package/modern/LineChart/AnimatedArea.d.ts +0 -26
- package/modern/LineChart/AnimatedArea.js +0 -61
- package/modern/LineChart/AnimatedLine.d.ts +0 -23
- package/modern/LineChart/AnimatedLine.js +0 -63
- package/modern/LineChart/AppearingMask.d.ts +0 -17
- package/modern/LineChart/AppearingMask.js +0 -48
- package/modern/LineChart/AreaElement.d.ts +0 -61
- package/modern/LineChart/AreaElement.js +0 -111
- package/modern/LineChart/AreaPlot.d.ts +0 -29
- package/modern/LineChart/AreaPlot.js +0 -215
- package/modern/LineChart/CircleMarkElement.d.ts +0 -30
- package/modern/LineChart/CircleMarkElement.js +0 -105
- package/modern/LineChart/LineChart.d.ts +0 -82
- package/modern/LineChart/LineChart.js +0 -323
- package/modern/LineChart/LineChart.plugins.d.ts +0 -7
- package/modern/LineChart/LineChart.plugins.js +0 -5
- package/modern/LineChart/LineElement.d.ts +0 -61
- package/modern/LineChart/LineElement.js +0 -111
- package/modern/LineChart/LineHighlightElement.d.ts +0 -36
- package/modern/LineChart/LineHighlightElement.js +0 -79
- package/modern/LineChart/LineHighlightPlot.d.ts +0 -36
- package/modern/LineChart/LineHighlightPlot.js +0 -121
- package/modern/LineChart/LinePlot.d.ts +0 -28
- package/modern/LineChart/LinePlot.js +0 -199
- package/modern/LineChart/MarkElement.d.ts +0 -32
- package/modern/LineChart/MarkElement.js +0 -113
- package/modern/LineChart/MarkPlot.d.ts +0 -42
- package/modern/LineChart/MarkPlot.js +0 -180
- package/modern/LineChart/index.d.ts +0 -13
- package/modern/LineChart/index.js +0 -12
- package/modern/LineChart/markElementClasses.d.ts +0 -23
- package/modern/LineChart/markElementClasses.js +0 -20
- package/modern/LineChart/seriesConfig/extremums.d.ts +0 -3
- package/modern/LineChart/seriesConfig/extremums.js +0 -57
- package/modern/LineChart/seriesConfig/getColor.d.ts +0 -3
- package/modern/LineChart/seriesConfig/getColor.js +0 -26
- package/modern/LineChart/seriesConfig/getSeriesWithDefaultValues.d.ts +0 -3
- package/modern/LineChart/seriesConfig/getSeriesWithDefaultValues.js +0 -8
- package/modern/LineChart/seriesConfig/index.d.ts +0 -2
- package/modern/LineChart/seriesConfig/index.js +0 -16
- package/modern/LineChart/seriesConfig/legend.d.ts +0 -3
- package/modern/LineChart/seriesConfig/legend.js +0 -22
- package/modern/LineChart/seriesConfig/seriesProcessor.d.ts +0 -3
- package/modern/LineChart/seriesConfig/seriesProcessor.js +0 -77
- package/modern/LineChart/seriesConfig/tooltip.d.ts +0 -4
- package/modern/LineChart/seriesConfig/tooltip.js +0 -31
- package/modern/LineChart/useLineChartProps.d.ts +0 -40
- package/modern/LineChart/useLineChartProps.js +0 -140
- package/modern/PieChart/PieArc.d.ts +0 -44
- package/modern/PieChart/PieArc.js +0 -121
- package/modern/PieChart/PieArcLabel.d.ts +0 -46
- package/modern/PieChart/PieArcLabel.js +0 -117
- package/modern/PieChart/PieArcLabelPlot.d.ts +0 -36
- package/modern/PieChart/PieArcLabelPlot.js +0 -179
- package/modern/PieChart/PieArcPlot.d.ts +0 -43
- package/modern/PieChart/PieArcPlot.js +0 -157
- package/modern/PieChart/PieChart.d.ts +0 -49
- package/modern/PieChart/PieChart.js +0 -201
- package/modern/PieChart/PieChart.plugins.d.ts +0 -5
- package/modern/PieChart/PieChart.plugins.js +0 -3
- package/modern/PieChart/PiePlot.d.ts +0 -32
- package/modern/PieChart/PiePlot.js +0 -163
- package/modern/PieChart/dataTransform/useTransformData.d.ts +0 -16
- package/modern/PieChart/dataTransform/useTransformData.js +0 -50
- package/modern/PieChart/getPieCoordinates.d.ts +0 -7
- package/modern/PieChart/getPieCoordinates.js +0 -19
- package/modern/PieChart/index.d.ts +0 -7
- package/modern/PieChart/index.js +0 -7
- package/modern/PieChart/seriesConfig/getColor.d.ts +0 -3
- package/modern/PieChart/seriesConfig/getColor.js +0 -6
- package/modern/PieChart/seriesConfig/getSeriesWithDefaultValues.d.ts +0 -3
- package/modern/PieChart/seriesConfig/getSeriesWithDefaultValues.js +0 -11
- package/modern/PieChart/seriesConfig/index.d.ts +0 -2
- package/modern/PieChart/seriesConfig/index.js +0 -12
- package/modern/PieChart/seriesConfig/legend.d.ts +0 -3
- package/modern/PieChart/seriesConfig/legend.js +0 -25
- package/modern/PieChart/seriesConfig/seriesProcessor.d.ts +0 -3
- package/modern/PieChart/seriesConfig/seriesProcessor.js +0 -49
- package/modern/PieChart/seriesConfig/tooltip.d.ts +0 -3
- package/modern/PieChart/seriesConfig/tooltip.js +0 -32
- package/modern/RadarChart/RadarAxisHighlight/RadarAxisHighlight.d.ts +0 -20
- package/modern/RadarChart/RadarAxisHighlight/RadarAxisHighlight.js +0 -42
- package/modern/RadarChart/RadarAxisHighlight/RadarAxisPointsHighlight.d.ts +0 -13
- package/modern/RadarChart/RadarAxisHighlight/RadarAxisPointsHighlight.js +0 -47
- package/modern/RadarChart/RadarAxisHighlight/RadarAxisSliceHighlight.d.ts +0 -13
- package/modern/RadarChart/RadarAxisHighlight/RadarAxisSliceHighlight.js +0 -50
- package/modern/RadarChart/RadarAxisHighlight/index.d.ts +0 -1
- package/modern/RadarChart/RadarAxisHighlight/index.js +0 -1
- package/modern/RadarChart/RadarAxisHighlight/radarAxisHighlightClasses.d.ts +0 -13
- package/modern/RadarChart/RadarAxisHighlight/radarAxisHighlightClasses.js +0 -6
- package/modern/RadarChart/RadarAxisHighlight/useRadarAxisHighlight.d.ts +0 -62
- package/modern/RadarChart/RadarAxisHighlight/useRadarAxisHighlight.js +0 -96
- package/modern/RadarChart/RadarChart.d.ts +0 -25
- package/modern/RadarChart/RadarChart.js +0 -177
- package/modern/RadarChart/RadarDataProvider/RadarDataProvider.d.ts +0 -30
- package/modern/RadarChart/RadarDataProvider/RadarDataProvider.js +0 -192
- package/modern/RadarChart/RadarDataProvider/index.d.ts +0 -1
- package/modern/RadarChart/RadarDataProvider/index.js +0 -1
- package/modern/RadarChart/RadarDataProvider/radar.types.d.ts +0 -43
- package/modern/RadarChart/RadarDataProvider/radar.types.js +0 -1
- package/modern/RadarChart/RadarGrid/CircularRadarGrid.d.ts +0 -6
- package/modern/RadarChart/RadarGrid/CircularRadarGrid.js +0 -36
- package/modern/RadarChart/RadarGrid/RadarGrid.d.ts +0 -7
- package/modern/RadarChart/RadarGrid/RadarGrid.js +0 -49
- package/modern/RadarChart/RadarGrid/RadarGrid.types.d.ts +0 -24
- package/modern/RadarChart/RadarGrid/RadarGrid.types.js +0 -1
- package/modern/RadarChart/RadarGrid/SharpRadarGrid.d.ts +0 -6
- package/modern/RadarChart/RadarGrid/SharpRadarGrid.js +0 -36
- package/modern/RadarChart/RadarGrid/index.d.ts +0 -2
- package/modern/RadarChart/RadarGrid/index.js +0 -2
- package/modern/RadarChart/RadarGrid/useRadarGridData.d.ts +0 -11
- package/modern/RadarChart/RadarGrid/useRadarGridData.js +0 -38
- package/modern/RadarChart/RadarMetricLabels/RadarMetricLabels.d.ts +0 -3
- package/modern/RadarChart/RadarMetricLabels/RadarMetricLabels.js +0 -35
- package/modern/RadarChart/RadarMetricLabels/index.d.ts +0 -1
- package/modern/RadarChart/RadarMetricLabels/index.js +0 -1
- package/modern/RadarChart/RadarMetricLabels/useRadarMetricData.d.ts +0 -8
- package/modern/RadarChart/RadarMetricLabels/useRadarMetricData.js +0 -35
- package/modern/RadarChart/RadarSeriesPlot/RadarSeriesArea.d.ts +0 -7
- package/modern/RadarChart/RadarSeriesPlot/RadarSeriesArea.js +0 -39
- package/modern/RadarChart/RadarSeriesPlot/RadarSeriesMarks.d.ts +0 -7
- package/modern/RadarChart/RadarSeriesPlot/RadarSeriesMarks.js +0 -38
- package/modern/RadarChart/RadarSeriesPlot/RadarSeriesPlot.d.ts +0 -7
- package/modern/RadarChart/RadarSeriesPlot/RadarSeriesPlot.js +0 -68
- package/modern/RadarChart/RadarSeriesPlot/RadarSeriesPlot.types.d.ts +0 -18
- package/modern/RadarChart/RadarSeriesPlot/RadarSeriesPlot.types.js +0 -1
- package/modern/RadarChart/RadarSeriesPlot/getAreaPath.d.ts +0 -4
- package/modern/RadarChart/RadarSeriesPlot/getAreaPath.js +0 -3
- package/modern/RadarChart/RadarSeriesPlot/index.d.ts +0 -6
- package/modern/RadarChart/RadarSeriesPlot/index.js +0 -4
- package/modern/RadarChart/RadarSeriesPlot/radarSeriesPlotClasses.d.ts +0 -12
- package/modern/RadarChart/RadarSeriesPlot/radarSeriesPlotClasses.js +0 -15
- package/modern/RadarChart/RadarSeriesPlot/useRadarSeriesData.d.ts +0 -27
- package/modern/RadarChart/RadarSeriesPlot/useRadarSeriesData.js +0 -62
- package/modern/RadarChart/index.d.ts +0 -8
- package/modern/RadarChart/index.js +0 -6
- package/modern/RadarChart/seriesConfig/extremums.d.ts +0 -3
- package/modern/RadarChart/seriesConfig/extremums.js +0 -18
- package/modern/RadarChart/seriesConfig/formatter.d.ts +0 -3
- package/modern/RadarChart/seriesConfig/formatter.js +0 -12
- package/modern/RadarChart/seriesConfig/getColor.d.ts +0 -3
- package/modern/RadarChart/seriesConfig/getColor.js +0 -4
- package/modern/RadarChart/seriesConfig/getSeriesWithDefaultValues.d.ts +0 -3
- package/modern/RadarChart/seriesConfig/getSeriesWithDefaultValues.js +0 -8
- package/modern/RadarChart/seriesConfig/index.d.ts +0 -2
- package/modern/RadarChart/seriesConfig/index.js +0 -15
- package/modern/RadarChart/seriesConfig/legend.d.ts +0 -3
- package/modern/RadarChart/seriesConfig/legend.js +0 -22
- package/modern/RadarChart/seriesConfig/tooltip.d.ts +0 -3
- package/modern/RadarChart/seriesConfig/tooltip.js +0 -25
- package/modern/RadarChart/useRadarChartProps.d.ts +0 -26
- package/modern/RadarChart/useRadarChartProps.js +0 -77
- package/modern/ScatterChart/Scatter.d.ts +0 -36
- package/modern/ScatterChart/Scatter.js +0 -134
- package/modern/ScatterChart/ScatterChart.d.ts +0 -70
- package/modern/ScatterChart/ScatterChart.js +0 -339
- package/modern/ScatterChart/ScatterChart.plugins.d.ts +0 -8
- package/modern/ScatterChart/ScatterChart.plugins.js +0 -6
- package/modern/ScatterChart/ScatterMarker.d.ts +0 -46
- package/modern/ScatterChart/ScatterMarker.js +0 -70
- package/modern/ScatterChart/ScatterMarker.types.d.ts +0 -24
- package/modern/ScatterChart/ScatterMarker.types.js +0 -1
- package/modern/ScatterChart/ScatterPlot.d.ts +0 -35
- package/modern/ScatterChart/ScatterPlot.js +0 -99
- package/modern/ScatterChart/index.d.ts +0 -5
- package/modern/ScatterChart/index.js +0 -5
- package/modern/ScatterChart/seriesConfig/extremums.d.ts +0 -3
- package/modern/ScatterChart/seriesConfig/extremums.js +0 -55
- package/modern/ScatterChart/seriesConfig/getColor.d.ts +0 -3
- package/modern/ScatterChart/seriesConfig/getColor.js +0 -43
- package/modern/ScatterChart/seriesConfig/getSeriesWithDefaultValues.d.ts +0 -3
- package/modern/ScatterChart/seriesConfig/getSeriesWithDefaultValues.js +0 -8
- package/modern/ScatterChart/seriesConfig/index.d.ts +0 -2
- package/modern/ScatterChart/seriesConfig/index.js +0 -15
- package/modern/ScatterChart/seriesConfig/legend.d.ts +0 -3
- package/modern/ScatterChart/seriesConfig/legend.js +0 -22
- package/modern/ScatterChart/seriesConfig/seriesProcessor.d.ts +0 -3
- package/modern/ScatterChart/seriesConfig/seriesProcessor.js +0 -33
- package/modern/ScatterChart/seriesConfig/tooltip.d.ts +0 -3
- package/modern/ScatterChart/seriesConfig/tooltip.js +0 -25
- package/modern/ScatterChart/useScatterChartProps.d.ts +0 -29
- package/modern/ScatterChart/useScatterChartProps.js +0 -102
- package/modern/SparkLineChart/SparkLineChart.d.ts +0 -101
- package/modern/SparkLineChart/SparkLineChart.js +0 -376
- package/modern/SparkLineChart/index.d.ts +0 -1
- package/modern/SparkLineChart/index.js +0 -1
- package/modern/colorPalettes/colorPalettes.d.ts +0 -16
- package/modern/colorPalettes/colorPalettes.js +0 -12
- package/modern/colorPalettes/index.d.ts +0 -1
- package/modern/colorPalettes/index.js +0 -1
- package/modern/constants/index.d.ts +0 -13
- package/modern/constants/index.js +0 -15
- package/modern/context/AnimationProvider/Animation.types.d.ts +0 -15
- package/modern/context/AnimationProvider/Animation.types.js +0 -1
- package/modern/context/AnimationProvider/AnimationContext.d.ts +0 -4
- package/modern/context/AnimationProvider/AnimationContext.js +0 -10
- package/modern/context/AnimationProvider/AnimationProvider.d.ts +0 -4
- package/modern/context/AnimationProvider/AnimationProvider.js +0 -52
- package/modern/context/AnimationProvider/index.d.ts +0 -4
- package/modern/context/AnimationProvider/index.js +0 -4
- package/modern/context/AnimationProvider/useSkipAnimation.d.ts +0 -6
- package/modern/context/AnimationProvider/useSkipAnimation.js +0 -20
- package/modern/context/ChartProvider/ChartContext.d.ts +0 -6
- package/modern/context/ChartProvider/ChartContext.js +0 -8
- package/modern/context/ChartProvider/ChartProvider.d.ts +0 -8
- package/modern/context/ChartProvider/ChartProvider.js +0 -40
- package/modern/context/ChartProvider/ChartProvider.types.d.ts +0 -39
- package/modern/context/ChartProvider/ChartProvider.types.js +0 -1
- package/modern/context/ChartProvider/index.d.ts +0 -3
- package/modern/context/ChartProvider/index.js +0 -3
- package/modern/context/ChartProvider/useChartContext.d.ts +0 -3
- package/modern/context/ChartProvider/useChartContext.js +0 -11
- package/modern/context/context.types.d.ts +0 -4
- package/modern/context/context.types.js +0 -1
- package/modern/context/index.d.ts +0 -1
- package/modern/context/index.js +0 -1
- package/modern/hooks/animation/index.d.ts +0 -6
- package/modern/hooks/animation/index.js +0 -6
- package/modern/hooks/animation/useAnimateArea.d.ts +0 -15
- package/modern/hooks/animation/useAnimateArea.js +0 -27
- package/modern/hooks/animation/useAnimateBar.d.ts +0 -17
- package/modern/hooks/animation/useAnimateBar.js +0 -56
- package/modern/hooks/animation/useAnimateBarLabel.d.ts +0 -19
- package/modern/hooks/animation/useAnimateBarLabel.js +0 -59
- package/modern/hooks/animation/useAnimateLine.d.ts +0 -14
- package/modern/hooks/animation/useAnimateLine.js +0 -26
- package/modern/hooks/animation/useAnimatePieArc.d.ts +0 -15
- package/modern/hooks/animation/useAnimatePieArc.js +0 -70
- package/modern/hooks/animation/useAnimatePieArcLabel.d.ts +0 -15
- package/modern/hooks/animation/useAnimatePieArcLabel.js +0 -72
- package/modern/hooks/getValueToPositionMapper.d.ts +0 -8
- package/modern/hooks/getValueToPositionMapper.js +0 -15
- package/modern/hooks/index.d.ts +0 -17
- package/modern/hooks/index.js +0 -17
- package/modern/hooks/useAxis.d.ts +0 -51
- package/modern/hooks/useAxis.js +0 -119
- package/modern/hooks/useAxisEvents.d.ts +0 -0
- package/modern/hooks/useAxisEvents.js +0 -0
- package/modern/hooks/useBarSeries.d.ts +0 -36
- package/modern/hooks/useBarSeries.js +0 -43
- package/modern/hooks/useChartGradientId.d.ts +0 -31
- package/modern/hooks/useChartGradientId.js +0 -47
- package/modern/hooks/useChartId.d.ts +0 -5
- package/modern/hooks/useChartId.js +0 -14
- package/modern/hooks/useColorScale.d.ts +0 -22
- package/modern/hooks/useColorScale.js +0 -37
- package/modern/hooks/useDrawingArea.d.ts +0 -16
- package/modern/hooks/useDrawingArea.js +0 -16
- package/modern/hooks/useInteractionItemProps.d.ts +0 -16
- package/modern/hooks/useInteractionItemProps.js +0 -87
- package/modern/hooks/useIsHydrated.d.ts +0 -4
- package/modern/hooks/useIsHydrated.js +0 -14
- package/modern/hooks/useItemHighlighted.d.ts +0 -23
- package/modern/hooks/useItemHighlighted.js +0 -23
- package/modern/hooks/useItemHighlightedGetter.d.ts +0 -12
- package/modern/hooks/useItemHighlightedGetter.js +0 -23
- package/modern/hooks/useLegend.d.ts +0 -13
- package/modern/hooks/useLegend.js +0 -30
- package/modern/hooks/useLineSeries.d.ts +0 -36
- package/modern/hooks/useLineSeries.js +0 -43
- package/modern/hooks/useMounted.d.ts +0 -1
- package/modern/hooks/useMounted.js +0 -18
- package/modern/hooks/usePieSeries.d.ts +0 -35
- package/modern/hooks/usePieSeries.js +0 -42
- package/modern/hooks/useRadarSeries.d.ts +0 -35
- package/modern/hooks/useRadarSeries.js +0 -42
- package/modern/hooks/useScale.d.ts +0 -24
- package/modern/hooks/useScale.js +0 -47
- package/modern/hooks/useScatterSeries.d.ts +0 -35
- package/modern/hooks/useScatterSeries.js +0 -42
- package/modern/hooks/useSeries.d.ts +0 -7
- package/modern/hooks/useSeries.js +0 -15
- package/modern/hooks/useSvgRef.d.ts +0 -6
- package/modern/hooks/useSvgRef.js +0 -15
- package/modern/hooks/useTicks.d.ts +0 -59
- package/modern/hooks/useTicks.js +0 -91
- package/modern/hooks/useZAxis.d.ts +0 -7
- package/modern/hooks/useZAxis.js +0 -27
- package/modern/index.d.ts +0 -26
- package/modern/index.js +0 -33
- package/modern/internals/angleConversion.d.ts +0 -2
- package/modern/internals/angleConversion.js +0 -12
- package/modern/internals/animation/Transition.d.ts +0 -37
- package/modern/internals/animation/Transition.js +0 -83
- package/modern/internals/animation/animation.d.ts +0 -4
- package/modern/internals/animation/animation.js +0 -4
- package/modern/internals/clampAngle.d.ts +0 -6
- package/modern/internals/clampAngle.js +0 -11
- package/modern/internals/cleanId.d.ts +0 -4
- package/modern/internals/cleanId.js +0 -6
- package/modern/internals/colorScale.d.ts +0 -5
- package/modern/internals/colorScale.js +0 -16
- package/modern/internals/components/AxisSharedComponents.d.ts +0 -1
- package/modern/internals/components/AxisSharedComponents.js +0 -26
- package/modern/internals/components/ChartsAxesGradients/ChartsAxesGradients.d.ts +0 -2
- package/modern/internals/components/ChartsAxesGradients/ChartsAxesGradients.js +0 -133
- package/modern/internals/components/ChartsAxesGradients/ChartsContinuousGradient.d.ts +0 -19
- package/modern/internals/components/ChartsAxesGradients/ChartsContinuousGradient.js +0 -56
- package/modern/internals/components/ChartsAxesGradients/ChartsContinuousGradientObjectBound.d.ts +0 -13
- package/modern/internals/components/ChartsAxesGradients/ChartsContinuousGradientObjectBound.js +0 -61
- package/modern/internals/components/ChartsAxesGradients/ChartsPiecewiseGradient.d.ts +0 -12
- package/modern/internals/components/ChartsAxesGradients/ChartsPiecewiseGradient.js +0 -46
- package/modern/internals/components/ChartsAxesGradients/index.d.ts +0 -1
- package/modern/internals/components/ChartsAxesGradients/index.js +0 -1
- package/modern/internals/components/ChartsWrapper/ChartsWrapper.d.ts +0 -18
- package/modern/internals/components/ChartsWrapper/ChartsWrapper.js +0 -66
- package/modern/internals/components/ChartsWrapper/index.d.ts +0 -1
- package/modern/internals/components/ChartsWrapper/index.js +0 -1
- package/modern/internals/configInit.d.ts +0 -16
- package/modern/internals/configInit.js +0 -38
- package/modern/internals/consumeSlots.d.ts +0 -48
- package/modern/internals/consumeSlots.js +0 -97
- package/modern/internals/consumeThemeProps.d.ts +0 -50
- package/modern/internals/consumeThemeProps.js +0 -70
- package/modern/internals/createSeriesSelectorOfType.d.ts +0 -4
- package/modern/internals/createSeriesSelectorOfType.js +0 -43
- package/modern/internals/defaultizeMargin.d.ts +0 -3
- package/modern/internals/defaultizeMargin.js +0 -15
- package/modern/internals/defaultizeValueFormatter.d.ts +0 -6
- package/modern/internals/defaultizeValueFormatter.js +0 -10
- package/modern/internals/degToRad.d.ts +0 -2
- package/modern/internals/degToRad.js +0 -4
- package/modern/internals/domUtils.d.ts +0 -18
- package/modern/internals/domUtils.js +0 -129
- package/modern/internals/ellipsize.d.ts +0 -20
- package/modern/internals/ellipsize.js +0 -53
- package/modern/internals/geometry.d.ts +0 -9
- package/modern/internals/geometry.js +0 -35
- package/modern/internals/getCurve.d.ts +0 -2
- package/modern/internals/getCurve.js +0 -27
- package/modern/internals/getGraphemeCount.d.ts +0 -4
- package/modern/internals/getGraphemeCount.js +0 -19
- package/modern/internals/getLabel.d.ts +0 -1
- package/modern/internals/getLabel.js +0 -3
- package/modern/internals/getPercentageValue.d.ts +0 -7
- package/modern/internals/getPercentageValue.js +0 -28
- package/modern/internals/getSVGPoint.d.ts +0 -6
- package/modern/internals/getSVGPoint.js +0 -11
- package/modern/internals/getScale.d.ts +0 -2
- package/modern/internals/getScale.js +0 -17
- package/modern/internals/getSymbol.d.ts +0 -2
- package/modern/internals/getSymbol.js +0 -21
- package/modern/internals/getWordsByLines.d.ts +0 -33
- package/modern/internals/getWordsByLines.js +0 -14
- package/modern/internals/index.d.ts +0 -49
- package/modern/internals/index.js +0 -63
- package/modern/internals/invertTextAnchor.d.ts +0 -2
- package/modern/internals/invertTextAnchor.js +0 -10
- package/modern/internals/isBandScale.d.ts +0 -5
- package/modern/internals/isBandScale.js +0 -3
- package/modern/internals/isCartesian.d.ts +0 -7
- package/modern/internals/isCartesian.js +0 -7
- package/modern/internals/isDefined.d.ts +0 -1
- package/modern/internals/isDefined.js +0 -3
- package/modern/internals/isInfinity.d.ts +0 -1
- package/modern/internals/isInfinity.js +0 -3
- package/modern/internals/isPolar.d.ts +0 -7
- package/modern/internals/isPolar.js +0 -7
- package/modern/internals/notNull.d.ts +0 -1
- package/modern/internals/notNull.js +0 -3
- package/modern/internals/plugins/allPlugins.d.ts +0 -14
- package/modern/internals/plugins/allPlugins.js +0 -10
- package/modern/internals/plugins/corePlugins/corePlugins.d.ts +0 -9
- package/modern/internals/plugins/corePlugins/corePlugins.js +0 -9
- package/modern/internals/plugins/corePlugins/index.d.ts +0 -2
- package/modern/internals/plugins/corePlugins/index.js +0 -1
- package/modern/internals/plugins/corePlugins/useChartDimensions/index.d.ts +0 -3
- package/modern/internals/plugins/corePlugins/useChartDimensions/index.js +0 -2
- package/modern/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.d.ts +0 -3
- package/modern/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.js +0 -196
- package/modern/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.selectors.d.ts +0 -708
- package/modern/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.selectors.js +0 -26
- package/modern/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.types.d.ts +0 -90
- package/modern/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.types.js +0 -1
- package/modern/internals/plugins/corePlugins/useChartId/index.d.ts +0 -3
- package/modern/internals/plugins/corePlugins/useChartId/index.js +0 -2
- package/modern/internals/plugins/corePlugins/useChartId/useChartId.d.ts +0 -3
- package/modern/internals/plugins/corePlugins/useChartId/useChartId.js +0 -32
- package/modern/internals/plugins/corePlugins/useChartId/useChartId.selectors.d.ts +0 -36
- package/modern/internals/plugins/corePlugins/useChartId/useChartId.selectors.js +0 -9
- package/modern/internals/plugins/corePlugins/useChartId/useChartId.types.d.ts +0 -20
- package/modern/internals/plugins/corePlugins/useChartId/useChartId.types.js +0 -1
- package/modern/internals/plugins/corePlugins/useChartId/useChartId.utils.d.ts +0 -1
- package/modern/internals/plugins/corePlugins/useChartId/useChartId.utils.js +0 -5
- package/modern/internals/plugins/corePlugins/useChartSeries/index.d.ts +0 -3
- package/modern/internals/plugins/corePlugins/useChartSeries/index.js +0 -2
- package/modern/internals/plugins/corePlugins/useChartSeries/processSeries.d.ts +0 -23
- package/modern/internals/plugins/corePlugins/useChartSeries/processSeries.js +0 -44
- package/modern/internals/plugins/corePlugins/useChartSeries/useChartSeries.d.ts +0 -3
- package/modern/internals/plugins/corePlugins/useChartSeries/useChartSeries.js +0 -71
- package/modern/internals/plugins/corePlugins/useChartSeries/useChartSeries.selectors.d.ts +0 -61
- package/modern/internals/plugins/corePlugins/useChartSeries/useChartSeries.selectors.js +0 -4
- package/modern/internals/plugins/corePlugins/useChartSeries/useChartSeries.types.d.ts +0 -51
- package/modern/internals/plugins/corePlugins/useChartSeries/useChartSeries.types.js +0 -1
- package/modern/internals/plugins/corePlugins/useChartSeries/useColorProcessor.d.ts +0 -8
- package/modern/internals/plugins/corePlugins/useChartSeries/useColorProcessor.js +0 -21
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/computeAxisValue.d.ts +0 -29
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/computeAxisValue.js +0 -141
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/createAxisFilterMapper.d.ts +0 -22
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/createAxisFilterMapper.js +0 -63
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/createZoomLookup.d.ts +0 -4
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/createZoomLookup.js +0 -13
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/defaultizeAxis.d.ts +0 -6
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/defaultizeAxis.js +0 -92
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/defaultizeZoom.d.ts +0 -4
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/defaultizeZoom.js +0 -25
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisExtremum.d.ts +0 -6
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisExtremum.js +0 -22
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisValue.d.ts +0 -11
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisValue.js +0 -65
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/index.d.ts +0 -8
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/index.js +0 -7
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/useChartAxisSize.selectors.d.ts +0 -216
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/useChartAxisSize.selectors.js +0 -6
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxis.d.ts +0 -3
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxis.js +0 -170
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxis.types.d.ts +0 -75
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxis.types.js +0 -1
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisLayout.selectors.d.ts +0 -70
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisLayout.selectors.js +0 -4
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisRendering.selectors.d.ts +0 -3082
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisRendering.selectors.js +0 -89
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianInteraction.selectors.d.ts +0 -9
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianInteraction.selectors.js +0 -75
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/useInternalIsZoomInteracting.d.ts +0 -10
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/useInternalIsZoomInteracting.js +0 -19
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/zoom.d.ts +0 -10
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/zoom.js +0 -19
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/zoom.types.d.ts +0 -68
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/zoom.types.js +0 -1
- package/modern/internals/plugins/featurePlugins/useChartHighlight/createIsFaded.d.ts +0 -3
- package/modern/internals/plugins/featurePlugins/useChartHighlight/createIsFaded.js +0 -12
- package/modern/internals/plugins/featurePlugins/useChartHighlight/createIsHighlighted.d.ts +0 -3
- package/modern/internals/plugins/featurePlugins/useChartHighlight/createIsHighlighted.js +0 -12
- package/modern/internals/plugins/featurePlugins/useChartHighlight/highlightConfig.types.d.ts +0 -20
- package/modern/internals/plugins/featurePlugins/useChartHighlight/highlightConfig.types.js +0 -1
- package/modern/internals/plugins/featurePlugins/useChartHighlight/index.d.ts +0 -4
- package/modern/internals/plugins/featurePlugins/useChartHighlight/index.js +0 -2
- package/modern/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.d.ts +0 -3
- package/modern/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.js +0 -44
- package/modern/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.selectors.d.ts +0 -634
- package/modern/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.selectors.js +0 -31
- package/modern/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.types.d.ts +0 -71
- package/modern/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.types.js +0 -1
- package/modern/internals/plugins/featurePlugins/useChartInteraction/index.d.ts +0 -3
- package/modern/internals/plugins/featurePlugins/useChartInteraction/index.js +0 -2
- package/modern/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.d.ts +0 -3
- package/modern/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.js +0 -67
- package/modern/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.selectors.d.ts +0 -242
- package/modern/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.selectors.js +0 -8
- package/modern/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.types.d.ts +0 -43
- package/modern/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.types.js +0 -1
- package/modern/internals/plugins/featurePlugins/useChartPolarAxis/computeAxisValue.d.ts +0 -27
- package/modern/internals/plugins/featurePlugins/useChartPolarAxis/computeAxisValue.js +0 -128
- package/modern/internals/plugins/featurePlugins/useChartPolarAxis/coordinateTransformation.d.ts +0 -12
- package/modern/internals/plugins/featurePlugins/useChartPolarAxis/coordinateTransformation.js +0 -8
- package/modern/internals/plugins/featurePlugins/useChartPolarAxis/defaultizeAxis.d.ts +0 -5
- package/modern/internals/plugins/featurePlugins/useChartPolarAxis/defaultizeAxis.js +0 -24
- package/modern/internals/plugins/featurePlugins/useChartPolarAxis/getAxisExtremum.d.ts +0 -5
- package/modern/internals/plugins/featurePlugins/useChartPolarAxis/getAxisExtremum.js +0 -21
- package/modern/internals/plugins/featurePlugins/useChartPolarAxis/getAxisValue.d.ts +0 -11
- package/modern/internals/plugins/featurePlugins/useChartPolarAxis/getAxisValue.js +0 -38
- package/modern/internals/plugins/featurePlugins/useChartPolarAxis/index.d.ts +0 -3
- package/modern/internals/plugins/featurePlugins/useChartPolarAxis/index.js +0 -2
- package/modern/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarAxis.d.ts +0 -3
- package/modern/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarAxis.js +0 -164
- package/modern/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarAxis.selectors.d.ts +0 -2056
- package/modern/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarAxis.selectors.js +0 -30
- package/modern/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarAxis.types.d.ts +0 -85
- package/modern/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarAxis.types.js +0 -1
- package/modern/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarInteraction.selectors.d.ts +0 -3669
- package/modern/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarInteraction.selectors.js +0 -22
- package/modern/internals/plugins/featurePlugins/useChartVoronoi/index.d.ts +0 -3
- package/modern/internals/plugins/featurePlugins/useChartVoronoi/index.js +0 -2
- package/modern/internals/plugins/featurePlugins/useChartVoronoi/useChartVoronoi.d.ts +0 -3
- package/modern/internals/plugins/featurePlugins/useChartVoronoi/useChartVoronoi.js +0 -231
- package/modern/internals/plugins/featurePlugins/useChartVoronoi/useChartVoronoi.selectors.d.ts +0 -29
- package/modern/internals/plugins/featurePlugins/useChartVoronoi/useChartVoronoi.selectors.js +0 -3
- package/modern/internals/plugins/featurePlugins/useChartVoronoi/useChartVoronoi.types.d.ts +0 -54
- package/modern/internals/plugins/featurePlugins/useChartVoronoi/useChartVoronoi.types.js +0 -1
- package/modern/internals/plugins/featurePlugins/useChartZAxis/index.d.ts +0 -3
- package/modern/internals/plugins/featurePlugins/useChartZAxis/index.js +0 -2
- package/modern/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.d.ts +0 -3
- package/modern/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.js +0 -86
- package/modern/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.selectors.d.ts +0 -45
- package/modern/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.selectors.js +0 -3
- package/modern/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.types.d.ts +0 -38
- package/modern/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.types.js +0 -1
- package/modern/internals/plugins/featurePlugins/useChartZAxis/utils.d.ts +0 -0
- package/modern/internals/plugins/featurePlugins/useChartZAxis/utils.js +0 -0
- package/modern/internals/plugins/models/chart.d.ts +0 -14
- package/modern/internals/plugins/models/chart.js +0 -1
- package/modern/internals/plugins/models/helpers.d.ts +0 -7
- package/modern/internals/plugins/models/helpers.js +0 -1
- package/modern/internals/plugins/models/index.d.ts +0 -4
- package/modern/internals/plugins/models/index.js +0 -4
- package/modern/internals/plugins/models/plugin.d.ts +0 -171
- package/modern/internals/plugins/models/plugin.js +0 -1
- package/modern/internals/plugins/models/seriesConfig/cartesianExtremumGetter.types.d.ts +0 -22
- package/modern/internals/plugins/models/seriesConfig/cartesianExtremumGetter.types.js +0 -1
- package/modern/internals/plugins/models/seriesConfig/colorProcessor.types.d.ts +0 -5
- package/modern/internals/plugins/models/seriesConfig/colorProcessor.types.js +0 -1
- package/modern/internals/plugins/models/seriesConfig/getSeriesWithDefaultValues.types.d.ts +0 -3
- package/modern/internals/plugins/models/seriesConfig/getSeriesWithDefaultValues.types.js +0 -1
- package/modern/internals/plugins/models/seriesConfig/index.d.ts +0 -8
- package/modern/internals/plugins/models/seriesConfig/index.js +0 -8
- package/modern/internals/plugins/models/seriesConfig/legendGetter.types.d.ts +0 -4
- package/modern/internals/plugins/models/seriesConfig/legendGetter.types.js +0 -1
- package/modern/internals/plugins/models/seriesConfig/polarExtremumGetter.types.d.ts +0 -16
- package/modern/internals/plugins/models/seriesConfig/polarExtremumGetter.types.js +0 -1
- package/modern/internals/plugins/models/seriesConfig/seriesConfig.types.d.ts +0 -24
- package/modern/internals/plugins/models/seriesConfig/seriesConfig.types.js +0 -1
- package/modern/internals/plugins/models/seriesConfig/seriesProcessor.types.d.ts +0 -16
- package/modern/internals/plugins/models/seriesConfig/seriesProcessor.types.js +0 -1
- package/modern/internals/plugins/models/seriesConfig/tooltipGetter.types.d.ts +0 -13
- package/modern/internals/plugins/models/seriesConfig/tooltipGetter.types.js +0 -1
- package/modern/internals/plugins/utils/ChartStore.d.ts +0 -13
- package/modern/internals/plugins/utils/ChartStore.js +0 -24
- package/modern/internals/plugins/utils/selectors.d.ts +0 -10
- package/modern/internals/plugins/utils/selectors.js +0 -37
- package/modern/internals/shallowEqual.d.ts +0 -8
- package/modern/internals/shallowEqual.js +0 -31
- package/modern/internals/sliceUntil.d.ts +0 -4
- package/modern/internals/sliceUntil.js +0 -22
- package/modern/internals/stackSeries.d.ts +0 -25
- package/modern/internals/stackSeries.js +0 -94
- package/modern/internals/store/extractPluginParamsFromProps.d.ts +0 -13
- package/modern/internals/store/extractPluginParamsFromProps.js +0 -28
- package/modern/internals/store/useChartModels.d.ts +0 -7
- package/modern/internals/store/useChartModels.js +0 -64
- package/modern/internals/store/useCharts.d.ts +0 -25
- package/modern/internals/store/useCharts.js +0 -85
- package/modern/internals/store/useCharts.types.d.ts +0 -5
- package/modern/internals/store/useCharts.types.js +0 -1
- package/modern/internals/store/useSelector.d.ts +0 -4
- package/modern/internals/store/useSelector.js +0 -9
- package/modern/internals/store/useStore.d.ts +0 -5
- package/modern/internals/store/useStore.js +0 -9
- package/modern/internals/ts-generic.d.ts +0 -3
- package/modern/internals/ts-generic.js +0 -1
- package/modern/internals/useStringInterpolator.d.ts +0 -1
- package/modern/internals/useStringInterpolator.js +0 -21
- package/modern/models/axis.d.ts +0 -396
- package/modern/models/axis.js +0 -19
- package/modern/models/colorMapping.d.ts +0 -46
- package/modern/models/colorMapping.js +0 -1
- package/modern/models/curve.d.ts +0 -6
- package/modern/models/curve.js +0 -1
- package/modern/models/index.d.ts +0 -6
- package/modern/models/index.js +0 -5
- package/modern/models/position.d.ts +0 -10
- package/modern/models/position.js +0 -1
- package/modern/models/seriesType/bar.d.ts +0 -38
- package/modern/models/seriesType/bar.js +0 -1
- package/modern/models/seriesType/common.d.ts +0 -60
- package/modern/models/seriesType/common.js +0 -1
- package/modern/models/seriesType/config.d.ts +0 -91
- package/modern/models/seriesType/config.js +0 -1
- package/modern/models/seriesType/index.d.ts +0 -16
- package/modern/models/seriesType/index.js +0 -17
- package/modern/models/seriesType/line.d.ts +0 -104
- package/modern/models/seriesType/line.js +0 -1
- package/modern/models/seriesType/pie.d.ts +0 -166
- package/modern/models/seriesType/pie.js +0 -1
- package/modern/models/seriesType/radar.d.ts +0 -24
- package/modern/models/seriesType/radar.js +0 -1
- package/modern/models/seriesType/scatter.d.ts +0 -63
- package/modern/models/seriesType/scatter.js +0 -1
- package/modern/models/stacking.d.ts +0 -2
- package/modern/models/stacking.js +0 -1
- package/modern/models/z-axis.d.ts +0 -22
- package/modern/models/z-axis.js +0 -1
- package/modern/package.json +0 -1
- package/modern/themeAugmentation/components.d.ts +0 -62
- package/modern/themeAugmentation/index.d.ts +0 -3
- package/modern/themeAugmentation/index.js +0 -0
- package/modern/themeAugmentation/overrides.d.ts +0 -34
- package/modern/themeAugmentation/props.d.ts +0 -34
- package/tsconfig.build.tsbuildinfo +0 -1
- /package/esm/{context/AnimationProvider/Animation.types.js → internals/plugins/corePlugins/useChartAnimation/useChartAnimation.types.js} +0 -0
- /package/{context/AnimationProvider/Animation.types.js → internals/plugins/corePlugins/useChartAnimation/useChartAnimation.types.js} +0 -0
|
@@ -6,7 +6,7 @@ export declare const createZoomMap: (zoom: readonly ZoomData[]) => Map<AxisId, Z
|
|
|
6
6
|
/**
|
|
7
7
|
* Following selectors are not exported because they exist in the MIT chart only to ba able to reuse the Zoom state from the pro.
|
|
8
8
|
*/
|
|
9
|
-
export declare const selectorChartZoomIsInteracting: ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("
|
|
9
|
+
export declare const selectorChartZoomIsInteracting: ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
10
10
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
11
11
|
}) => boolean | undefined) & {
|
|
12
12
|
clearCache: () => void;
|
|
@@ -26,7 +26,7 @@ export declare const selectorChartZoomIsInteracting: ((state: import("../../core
|
|
|
26
26
|
resetResultsCount: () => void;
|
|
27
27
|
};
|
|
28
28
|
lastResult: () => boolean | undefined;
|
|
29
|
-
dependencies: [(state: ChartState<[UseChartCartesianAxisSignature]>) => {
|
|
29
|
+
dependencies: [(state: ChartState<[], [UseChartCartesianAxisSignature]>) => {
|
|
30
30
|
isInteracting: boolean;
|
|
31
31
|
zoomData: readonly ZoomData[];
|
|
32
32
|
} | undefined];
|
|
@@ -38,7 +38,7 @@ export declare const selectorChartZoomIsInteracting: ((state: import("../../core
|
|
|
38
38
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
39
39
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
40
40
|
};
|
|
41
|
-
export declare const selectorChartZoomOptionsLookup: ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
41
|
+
export declare const selectorChartZoomOptionsLookup: ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
42
42
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
43
43
|
}) => {
|
|
44
44
|
[x: string]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
|
|
@@ -64,7 +64,7 @@ export declare const selectorChartZoomOptionsLookup: ((state: import("../../core
|
|
|
64
64
|
[x: string]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
|
|
65
65
|
[x: number]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
|
|
66
66
|
};
|
|
67
|
-
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
67
|
+
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
68
68
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
69
69
|
}) => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>) & {
|
|
70
70
|
clearCache: () => void;
|
|
@@ -78,7 +78,7 @@ export declare const selectorChartZoomOptionsLookup: ((state: import("../../core
|
|
|
78
78
|
resetResultsCount: () => void;
|
|
79
79
|
};
|
|
80
80
|
lastResult: () => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>;
|
|
81
|
-
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
81
|
+
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
82
82
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
83
83
|
}) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) & {
|
|
84
84
|
clearCache: () => void;
|
|
@@ -117,7 +117,7 @@ export declare const selectorChartZoomOptionsLookup: ((state: import("../../core
|
|
|
117
117
|
} & {
|
|
118
118
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
119
119
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
120
|
-
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
120
|
+
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
121
121
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
122
122
|
}) => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>) & {
|
|
123
123
|
clearCache: () => void;
|
|
@@ -131,7 +131,7 @@ export declare const selectorChartZoomOptionsLookup: ((state: import("../../core
|
|
|
131
131
|
resetResultsCount: () => void;
|
|
132
132
|
};
|
|
133
133
|
lastResult: () => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>;
|
|
134
|
-
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
134
|
+
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
135
135
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
136
136
|
}) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) & {
|
|
137
137
|
clearCache: () => void;
|
|
@@ -182,9 +182,9 @@ export declare const selectorChartZoomOptionsLookup: ((state: import("../../core
|
|
|
182
182
|
/**
|
|
183
183
|
* The only interesting selectors that merge axis data and zoom if provided.
|
|
184
184
|
*/
|
|
185
|
-
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> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
185
|
+
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("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
186
186
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
187
|
-
} & Partial<{}>
|
|
187
|
+
} & Partial<{}>) => import("./computeAxisValue").ComputeResult<import("../../..").ChartsXAxisProps>) & {
|
|
188
188
|
clearCache: () => void;
|
|
189
189
|
resultsCount: () => number;
|
|
190
190
|
resetResultsCount: () => void;
|
|
@@ -216,7 +216,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
216
216
|
resetResultsCount: () => void;
|
|
217
217
|
};
|
|
218
218
|
lastResult: () => import("./computeAxisValue").ComputeResult<import("../../..").ChartsXAxisProps>;
|
|
219
|
-
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
219
|
+
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
220
220
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
221
221
|
}) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) & {
|
|
222
222
|
clearCache: () => void;
|
|
@@ -247,7 +247,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
247
247
|
} & {
|
|
248
248
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
249
249
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
250
|
-
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
|
|
250
|
+
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<{}> & {
|
|
251
251
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
252
252
|
} & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState>) => {
|
|
253
253
|
width: number;
|
|
@@ -289,7 +289,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
289
289
|
top: number;
|
|
290
290
|
bottom: number;
|
|
291
291
|
};
|
|
292
|
-
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
|
|
292
|
+
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<{}> & {
|
|
293
293
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
294
294
|
}) => number) & {
|
|
295
295
|
clearCache: () => void;
|
|
@@ -323,7 +323,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
323
323
|
} & {
|
|
324
324
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
325
325
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
326
|
-
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
|
|
326
|
+
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<{}> & {
|
|
327
327
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
328
328
|
}) => number) & {
|
|
329
329
|
clearCache: () => void;
|
|
@@ -357,7 +357,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
357
357
|
} & {
|
|
358
358
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
359
359
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
360
|
-
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
|
|
360
|
+
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<{}> & {
|
|
361
361
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
362
362
|
}) => number) & {
|
|
363
363
|
clearCache: () => void;
|
|
@@ -371,7 +371,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
371
371
|
resetResultsCount: () => void;
|
|
372
372
|
};
|
|
373
373
|
lastResult: () => number;
|
|
374
|
-
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
|
|
374
|
+
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<{}> & {
|
|
375
375
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
376
376
|
}) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) & {
|
|
377
377
|
clearCache: () => void;
|
|
@@ -413,7 +413,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
413
413
|
} & {
|
|
414
414
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
415
415
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
416
|
-
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
|
|
416
|
+
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<{}> & {
|
|
417
417
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
418
418
|
}) => number) & {
|
|
419
419
|
clearCache: () => void;
|
|
@@ -427,7 +427,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
427
427
|
resetResultsCount: () => void;
|
|
428
428
|
};
|
|
429
429
|
lastResult: () => number;
|
|
430
|
-
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
|
|
430
|
+
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<{}> & {
|
|
431
431
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
432
432
|
}) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) & {
|
|
433
433
|
clearCache: () => void;
|
|
@@ -469,7 +469,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
469
469
|
} & {
|
|
470
470
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
471
471
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
472
|
-
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
|
|
472
|
+
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<{}> & {
|
|
473
473
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
474
474
|
}) => number) & {
|
|
475
475
|
clearCache: () => void;
|
|
@@ -483,7 +483,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
483
483
|
resetResultsCount: () => void;
|
|
484
484
|
};
|
|
485
485
|
lastResult: () => number;
|
|
486
|
-
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
|
|
486
|
+
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<{}> & {
|
|
487
487
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
488
488
|
}) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) & {
|
|
489
489
|
clearCache: () => void;
|
|
@@ -525,7 +525,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
525
525
|
} & {
|
|
526
526
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
527
527
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
528
|
-
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
|
|
528
|
+
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<{}> & {
|
|
529
529
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
530
530
|
}) => number) & {
|
|
531
531
|
clearCache: () => void;
|
|
@@ -539,7 +539,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
539
539
|
resetResultsCount: () => void;
|
|
540
540
|
};
|
|
541
541
|
lastResult: () => number;
|
|
542
|
-
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
|
|
542
|
+
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<{}> & {
|
|
543
543
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
544
544
|
}) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) & {
|
|
545
545
|
clearCache: () => void;
|
|
@@ -581,7 +581,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
581
581
|
} & {
|
|
582
582
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
583
583
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
584
|
-
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
584
|
+
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
585
585
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
586
586
|
}) => number) & {
|
|
587
587
|
clearCache: () => void;
|
|
@@ -595,7 +595,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
595
595
|
resetResultsCount: () => void;
|
|
596
596
|
};
|
|
597
597
|
lastResult: () => number;
|
|
598
|
-
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
598
|
+
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
599
599
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
600
600
|
}) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) & {
|
|
601
601
|
clearCache: () => void;
|
|
@@ -634,7 +634,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
634
634
|
} & {
|
|
635
635
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
636
636
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
637
|
-
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
637
|
+
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
638
638
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
639
639
|
}) => number) & {
|
|
640
640
|
clearCache: () => void;
|
|
@@ -648,7 +648,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
648
648
|
resetResultsCount: () => void;
|
|
649
649
|
};
|
|
650
650
|
lastResult: () => number;
|
|
651
|
-
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
651
|
+
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
652
652
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
653
653
|
}) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) & {
|
|
654
654
|
clearCache: () => void;
|
|
@@ -687,7 +687,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
687
687
|
} & {
|
|
688
688
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
689
689
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
690
|
-
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
690
|
+
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
691
691
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
692
692
|
}) => number) & {
|
|
693
693
|
clearCache: () => void;
|
|
@@ -701,7 +701,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
701
701
|
resetResultsCount: () => void;
|
|
702
702
|
};
|
|
703
703
|
lastResult: () => number;
|
|
704
|
-
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
704
|
+
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
705
705
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
706
706
|
}) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) & {
|
|
707
707
|
clearCache: () => void;
|
|
@@ -740,7 +740,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
740
740
|
} & {
|
|
741
741
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
742
742
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
743
|
-
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
743
|
+
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
744
744
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
745
745
|
}) => number) & {
|
|
746
746
|
clearCache: () => void;
|
|
@@ -754,7 +754,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
754
754
|
resetResultsCount: () => void;
|
|
755
755
|
};
|
|
756
756
|
lastResult: () => number;
|
|
757
|
-
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
757
|
+
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
758
758
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
759
759
|
}) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) & {
|
|
760
760
|
clearCache: () => void;
|
|
@@ -801,7 +801,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
801
801
|
} & {
|
|
802
802
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
803
803
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
804
|
-
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
|
|
804
|
+
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<{}> & {
|
|
805
805
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
806
806
|
}) => import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>) & {
|
|
807
807
|
clearCache: () => void;
|
|
@@ -829,7 +829,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
829
829
|
} & {
|
|
830
830
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
831
831
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
832
|
-
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
|
|
832
|
+
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<{}> & {
|
|
833
833
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
834
834
|
}) => import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>) & {
|
|
835
835
|
clearCache: () => void;
|
|
@@ -857,7 +857,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
857
857
|
} & {
|
|
858
858
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
859
859
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
860
|
-
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("
|
|
860
|
+
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
861
861
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
862
862
|
}) => Map<AxisId, ZoomData> | undefined) & {
|
|
863
863
|
clearCache: () => void;
|
|
@@ -877,7 +877,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
877
877
|
resetResultsCount: () => void;
|
|
878
878
|
};
|
|
879
879
|
lastResult: () => Map<AxisId, ZoomData> | undefined;
|
|
880
|
-
dependencies: [(state: ChartState<[UseChartCartesianAxisSignature]>) => {
|
|
880
|
+
dependencies: [(state: ChartState<[], [UseChartCartesianAxisSignature]>) => {
|
|
881
881
|
isInteracting: boolean;
|
|
882
882
|
zoomData: readonly ZoomData[];
|
|
883
883
|
} | undefined];
|
|
@@ -888,7 +888,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
888
888
|
} & {
|
|
889
889
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
890
890
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
891
|
-
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
891
|
+
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
892
892
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
893
893
|
}) => {
|
|
894
894
|
[x: string]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
|
|
@@ -914,7 +914,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
914
914
|
[x: string]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
|
|
915
915
|
[x: number]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
|
|
916
916
|
};
|
|
917
|
-
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
917
|
+
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
918
918
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
919
919
|
}) => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>) & {
|
|
920
920
|
clearCache: () => void;
|
|
@@ -928,7 +928,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
928
928
|
resetResultsCount: () => void;
|
|
929
929
|
};
|
|
930
930
|
lastResult: () => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>;
|
|
931
|
-
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
931
|
+
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
932
932
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
933
933
|
}) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) & {
|
|
934
934
|
clearCache: () => void;
|
|
@@ -967,7 +967,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
967
967
|
} & {
|
|
968
968
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
969
969
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
970
|
-
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
970
|
+
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
971
971
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
972
972
|
}) => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>) & {
|
|
973
973
|
clearCache: () => void;
|
|
@@ -981,7 +981,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
981
981
|
resetResultsCount: () => void;
|
|
982
982
|
};
|
|
983
983
|
lastResult: () => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>;
|
|
984
|
-
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
984
|
+
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
985
985
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
986
986
|
}) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) & {
|
|
987
987
|
clearCache: () => void;
|
|
@@ -1028,9 +1028,9 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
1028
1028
|
} & {
|
|
1029
1029
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
1030
1030
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1031
|
-
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("
|
|
1031
|
+
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
1032
1032
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
1033
|
-
} & Partial<
|
|
1033
|
+
} & Partial<{}>) => import("./zoom.types").GetZoomAxisFilters | undefined) & {
|
|
1034
1034
|
clearCache: () => void;
|
|
1035
1035
|
resultsCount: () => number;
|
|
1036
1036
|
resetResultsCount: () => void;
|
|
@@ -1042,9 +1042,9 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
1042
1042
|
resetResultsCount: () => void;
|
|
1043
1043
|
};
|
|
1044
1044
|
lastResult: () => import("./zoom.types").GetZoomAxisFilters | undefined;
|
|
1045
|
-
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("
|
|
1045
|
+
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
1046
1046
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
1047
|
-
} & Partial<
|
|
1047
|
+
} & Partial<{}>) => ((axis: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>, axisIndex: number) => import("./useChartCartesianAxis.types").ExtremumFilter | null) | undefined) & {
|
|
1048
1048
|
clearCache: () => void;
|
|
1049
1049
|
resultsCount: () => number;
|
|
1050
1050
|
resetResultsCount: () => void;
|
|
@@ -1062,7 +1062,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
1062
1062
|
resetResultsCount: () => void;
|
|
1063
1063
|
};
|
|
1064
1064
|
lastResult: () => ((axis: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>, axisIndex: number) => import("./useChartCartesianAxis.types").ExtremumFilter | null) | undefined;
|
|
1065
|
-
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("
|
|
1065
|
+
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
1066
1066
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
1067
1067
|
}) => Map<AxisId, ZoomData> | undefined) & {
|
|
1068
1068
|
clearCache: () => void;
|
|
@@ -1082,7 +1082,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
1082
1082
|
resetResultsCount: () => void;
|
|
1083
1083
|
};
|
|
1084
1084
|
lastResult: () => Map<AxisId, ZoomData> | undefined;
|
|
1085
|
-
dependencies: [(state: ChartState<[UseChartCartesianAxisSignature]>) => {
|
|
1085
|
+
dependencies: [(state: ChartState<[], [UseChartCartesianAxisSignature]>) => {
|
|
1086
1086
|
isInteracting: boolean;
|
|
1087
1087
|
zoomData: readonly ZoomData[];
|
|
1088
1088
|
} | undefined];
|
|
@@ -1093,7 +1093,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
1093
1093
|
} & {
|
|
1094
1094
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
1095
1095
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1096
|
-
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
1096
|
+
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
1097
1097
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
1098
1098
|
}) => {
|
|
1099
1099
|
[x: string]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
|
|
@@ -1119,7 +1119,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
1119
1119
|
[x: string]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
|
|
1120
1120
|
[x: number]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
|
|
1121
1121
|
};
|
|
1122
|
-
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
1122
|
+
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
1123
1123
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
1124
1124
|
}) => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>) & {
|
|
1125
1125
|
clearCache: () => void;
|
|
@@ -1133,7 +1133,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
1133
1133
|
resetResultsCount: () => void;
|
|
1134
1134
|
};
|
|
1135
1135
|
lastResult: () => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>;
|
|
1136
|
-
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
1136
|
+
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
1137
1137
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
1138
1138
|
}) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) & {
|
|
1139
1139
|
clearCache: () => void;
|
|
@@ -1172,7 +1172,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
1172
1172
|
} & {
|
|
1173
1173
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
1174
1174
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1175
|
-
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
1175
|
+
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
1176
1176
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
1177
1177
|
}) => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>) & {
|
|
1178
1178
|
clearCache: () => void;
|
|
@@ -1186,7 +1186,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
1186
1186
|
resetResultsCount: () => void;
|
|
1187
1187
|
};
|
|
1188
1188
|
lastResult: () => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>;
|
|
1189
|
-
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
1189
|
+
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
1190
1190
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
1191
1191
|
}) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) & {
|
|
1192
1192
|
clearCache: () => void;
|
|
@@ -1233,7 +1233,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
1233
1233
|
} & {
|
|
1234
1234
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
1235
1235
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1236
|
-
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
|
|
1236
|
+
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<{}> & {
|
|
1237
1237
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
1238
1238
|
}) => import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>) & {
|
|
1239
1239
|
clearCache: () => void;
|
|
@@ -1261,7 +1261,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
1261
1261
|
} & {
|
|
1262
1262
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
1263
1263
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1264
|
-
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
|
|
1264
|
+
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<{}> & {
|
|
1265
1265
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
1266
1266
|
}) => import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>) & {
|
|
1267
1267
|
clearCache: () => void;
|
|
@@ -1297,9 +1297,9 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
1297
1297
|
} & {
|
|
1298
1298
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
1299
1299
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1300
|
-
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("
|
|
1300
|
+
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
1301
1301
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
1302
|
-
} & Partial<
|
|
1302
|
+
} & Partial<{}>) => ((axis: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>, axisIndex: number) => import("./useChartCartesianAxis.types").ExtremumFilter | null) | undefined) & {
|
|
1303
1303
|
clearCache: () => void;
|
|
1304
1304
|
resultsCount: () => number;
|
|
1305
1305
|
resetResultsCount: () => void;
|
|
@@ -1317,7 +1317,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
1317
1317
|
resetResultsCount: () => void;
|
|
1318
1318
|
};
|
|
1319
1319
|
lastResult: () => ((axis: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>, axisIndex: number) => import("./useChartCartesianAxis.types").ExtremumFilter | null) | undefined;
|
|
1320
|
-
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("
|
|
1320
|
+
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
1321
1321
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
1322
1322
|
}) => Map<AxisId, ZoomData> | undefined) & {
|
|
1323
1323
|
clearCache: () => void;
|
|
@@ -1337,7 +1337,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
1337
1337
|
resetResultsCount: () => void;
|
|
1338
1338
|
};
|
|
1339
1339
|
lastResult: () => Map<AxisId, ZoomData> | undefined;
|
|
1340
|
-
dependencies: [(state: ChartState<[UseChartCartesianAxisSignature]>) => {
|
|
1340
|
+
dependencies: [(state: ChartState<[], [UseChartCartesianAxisSignature]>) => {
|
|
1341
1341
|
isInteracting: boolean;
|
|
1342
1342
|
zoomData: readonly ZoomData[];
|
|
1343
1343
|
} | undefined];
|
|
@@ -1348,7 +1348,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
1348
1348
|
} & {
|
|
1349
1349
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
1350
1350
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1351
|
-
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
1351
|
+
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
1352
1352
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
1353
1353
|
}) => {
|
|
1354
1354
|
[x: string]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
|
|
@@ -1374,7 +1374,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
1374
1374
|
[x: string]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
|
|
1375
1375
|
[x: number]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
|
|
1376
1376
|
};
|
|
1377
|
-
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
1377
|
+
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
1378
1378
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
1379
1379
|
}) => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>) & {
|
|
1380
1380
|
clearCache: () => void;
|
|
@@ -1388,7 +1388,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
1388
1388
|
resetResultsCount: () => void;
|
|
1389
1389
|
};
|
|
1390
1390
|
lastResult: () => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>;
|
|
1391
|
-
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
1391
|
+
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
1392
1392
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
1393
1393
|
}) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) & {
|
|
1394
1394
|
clearCache: () => void;
|
|
@@ -1427,7 +1427,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
1427
1427
|
} & {
|
|
1428
1428
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
1429
1429
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1430
|
-
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
1430
|
+
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
1431
1431
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
1432
1432
|
}) => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>) & {
|
|
1433
1433
|
clearCache: () => void;
|
|
@@ -1441,7 +1441,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
1441
1441
|
resetResultsCount: () => void;
|
|
1442
1442
|
};
|
|
1443
1443
|
lastResult: () => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>;
|
|
1444
|
-
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
1444
|
+
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
1445
1445
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
1446
1446
|
}) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) & {
|
|
1447
1447
|
clearCache: () => void;
|
|
@@ -1488,7 +1488,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
1488
1488
|
} & {
|
|
1489
1489
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
1490
1490
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1491
|
-
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
|
|
1491
|
+
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<{}> & {
|
|
1492
1492
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
1493
1493
|
}) => import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>) & {
|
|
1494
1494
|
clearCache: () => void;
|
|
@@ -1516,7 +1516,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
1516
1516
|
} & {
|
|
1517
1517
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
1518
1518
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1519
|
-
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
|
|
1519
|
+
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<{}> & {
|
|
1520
1520
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
1521
1521
|
}) => import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>) & {
|
|
1522
1522
|
clearCache: () => void;
|
|
@@ -1552,7 +1552,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
1552
1552
|
} & {
|
|
1553
1553
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
1554
1554
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1555
|
-
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
1555
|
+
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
1556
1556
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
1557
1557
|
}) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) & {
|
|
1558
1558
|
clearCache: () => void;
|
|
@@ -1583,7 +1583,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
1583
1583
|
} & {
|
|
1584
1584
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
1585
1585
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1586
|
-
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
1586
|
+
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
1587
1587
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
1588
1588
|
}) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) & {
|
|
1589
1589
|
clearCache: () => void;
|
|
@@ -1631,9 +1631,9 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
1631
1631
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
1632
1632
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1633
1633
|
};
|
|
1634
|
-
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> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
1634
|
+
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("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
1635
1635
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
1636
|
-
} & Partial<{}>
|
|
1636
|
+
} & Partial<{}>) => import("./computeAxisValue").ComputeResult<import("../../..").ChartsYAxisProps>) & {
|
|
1637
1637
|
clearCache: () => void;
|
|
1638
1638
|
resultsCount: () => number;
|
|
1639
1639
|
resetResultsCount: () => void;
|
|
@@ -1665,7 +1665,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
1665
1665
|
resetResultsCount: () => void;
|
|
1666
1666
|
};
|
|
1667
1667
|
lastResult: () => import("./computeAxisValue").ComputeResult<import("../../..").ChartsYAxisProps>;
|
|
1668
|
-
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
1668
|
+
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
1669
1669
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
1670
1670
|
}) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) & {
|
|
1671
1671
|
clearCache: () => void;
|
|
@@ -1696,7 +1696,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
1696
1696
|
} & {
|
|
1697
1697
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
1698
1698
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1699
|
-
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
|
|
1699
|
+
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<{}> & {
|
|
1700
1700
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
1701
1701
|
} & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState>) => {
|
|
1702
1702
|
width: number;
|
|
@@ -1738,7 +1738,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
1738
1738
|
top: number;
|
|
1739
1739
|
bottom: number;
|
|
1740
1740
|
};
|
|
1741
|
-
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
|
|
1741
|
+
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<{}> & {
|
|
1742
1742
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
1743
1743
|
}) => number) & {
|
|
1744
1744
|
clearCache: () => void;
|
|
@@ -1772,7 +1772,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
1772
1772
|
} & {
|
|
1773
1773
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
1774
1774
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1775
|
-
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
|
|
1775
|
+
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<{}> & {
|
|
1776
1776
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
1777
1777
|
}) => number) & {
|
|
1778
1778
|
clearCache: () => void;
|
|
@@ -1806,7 +1806,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
1806
1806
|
} & {
|
|
1807
1807
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
1808
1808
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1809
|
-
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
|
|
1809
|
+
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<{}> & {
|
|
1810
1810
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
1811
1811
|
}) => number) & {
|
|
1812
1812
|
clearCache: () => void;
|
|
@@ -1820,7 +1820,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
1820
1820
|
resetResultsCount: () => void;
|
|
1821
1821
|
};
|
|
1822
1822
|
lastResult: () => number;
|
|
1823
|
-
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
|
|
1823
|
+
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<{}> & {
|
|
1824
1824
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
1825
1825
|
}) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) & {
|
|
1826
1826
|
clearCache: () => void;
|
|
@@ -1862,7 +1862,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
1862
1862
|
} & {
|
|
1863
1863
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
1864
1864
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1865
|
-
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
|
|
1865
|
+
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<{}> & {
|
|
1866
1866
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
1867
1867
|
}) => number) & {
|
|
1868
1868
|
clearCache: () => void;
|
|
@@ -1876,7 +1876,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
1876
1876
|
resetResultsCount: () => void;
|
|
1877
1877
|
};
|
|
1878
1878
|
lastResult: () => number;
|
|
1879
|
-
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
|
|
1879
|
+
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<{}> & {
|
|
1880
1880
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
1881
1881
|
}) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) & {
|
|
1882
1882
|
clearCache: () => void;
|
|
@@ -1918,7 +1918,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
1918
1918
|
} & {
|
|
1919
1919
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
1920
1920
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1921
|
-
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
|
|
1921
|
+
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<{}> & {
|
|
1922
1922
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
1923
1923
|
}) => number) & {
|
|
1924
1924
|
clearCache: () => void;
|
|
@@ -1932,7 +1932,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
1932
1932
|
resetResultsCount: () => void;
|
|
1933
1933
|
};
|
|
1934
1934
|
lastResult: () => number;
|
|
1935
|
-
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
|
|
1935
|
+
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<{}> & {
|
|
1936
1936
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
1937
1937
|
}) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) & {
|
|
1938
1938
|
clearCache: () => void;
|
|
@@ -1974,7 +1974,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
1974
1974
|
} & {
|
|
1975
1975
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
1976
1976
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1977
|
-
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
|
|
1977
|
+
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<{}> & {
|
|
1978
1978
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
1979
1979
|
}) => number) & {
|
|
1980
1980
|
clearCache: () => void;
|
|
@@ -1988,7 +1988,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
1988
1988
|
resetResultsCount: () => void;
|
|
1989
1989
|
};
|
|
1990
1990
|
lastResult: () => number;
|
|
1991
|
-
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
|
|
1991
|
+
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<{}> & {
|
|
1992
1992
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
1993
1993
|
}) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) & {
|
|
1994
1994
|
clearCache: () => void;
|
|
@@ -2030,7 +2030,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
2030
2030
|
} & {
|
|
2031
2031
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
2032
2032
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
2033
|
-
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
2033
|
+
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
2034
2034
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
2035
2035
|
}) => number) & {
|
|
2036
2036
|
clearCache: () => void;
|
|
@@ -2044,7 +2044,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
2044
2044
|
resetResultsCount: () => void;
|
|
2045
2045
|
};
|
|
2046
2046
|
lastResult: () => number;
|
|
2047
|
-
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
2047
|
+
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
2048
2048
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
2049
2049
|
}) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) & {
|
|
2050
2050
|
clearCache: () => void;
|
|
@@ -2083,7 +2083,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
2083
2083
|
} & {
|
|
2084
2084
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
2085
2085
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
2086
|
-
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
2086
|
+
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
2087
2087
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
2088
2088
|
}) => number) & {
|
|
2089
2089
|
clearCache: () => void;
|
|
@@ -2097,7 +2097,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
2097
2097
|
resetResultsCount: () => void;
|
|
2098
2098
|
};
|
|
2099
2099
|
lastResult: () => number;
|
|
2100
|
-
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
2100
|
+
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
2101
2101
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
2102
2102
|
}) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) & {
|
|
2103
2103
|
clearCache: () => void;
|
|
@@ -2136,7 +2136,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
2136
2136
|
} & {
|
|
2137
2137
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
2138
2138
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
2139
|
-
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
2139
|
+
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
2140
2140
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
2141
2141
|
}) => number) & {
|
|
2142
2142
|
clearCache: () => void;
|
|
@@ -2150,7 +2150,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
2150
2150
|
resetResultsCount: () => void;
|
|
2151
2151
|
};
|
|
2152
2152
|
lastResult: () => number;
|
|
2153
|
-
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
2153
|
+
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
2154
2154
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
2155
2155
|
}) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) & {
|
|
2156
2156
|
clearCache: () => void;
|
|
@@ -2189,7 +2189,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
2189
2189
|
} & {
|
|
2190
2190
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
2191
2191
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
2192
|
-
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
2192
|
+
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
2193
2193
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
2194
2194
|
}) => number) & {
|
|
2195
2195
|
clearCache: () => void;
|
|
@@ -2203,7 +2203,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
2203
2203
|
resetResultsCount: () => void;
|
|
2204
2204
|
};
|
|
2205
2205
|
lastResult: () => number;
|
|
2206
|
-
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
2206
|
+
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
2207
2207
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
2208
2208
|
}) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) & {
|
|
2209
2209
|
clearCache: () => void;
|
|
@@ -2250,7 +2250,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
2250
2250
|
} & {
|
|
2251
2251
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
2252
2252
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
2253
|
-
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
|
|
2253
|
+
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<{}> & {
|
|
2254
2254
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
2255
2255
|
}) => import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>) & {
|
|
2256
2256
|
clearCache: () => void;
|
|
@@ -2278,7 +2278,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
2278
2278
|
} & {
|
|
2279
2279
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
2280
2280
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
2281
|
-
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
|
|
2281
|
+
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<{}> & {
|
|
2282
2282
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
2283
2283
|
}) => import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>) & {
|
|
2284
2284
|
clearCache: () => void;
|
|
@@ -2306,7 +2306,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
2306
2306
|
} & {
|
|
2307
2307
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
2308
2308
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
2309
|
-
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("
|
|
2309
|
+
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
2310
2310
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
2311
2311
|
}) => Map<AxisId, ZoomData> | undefined) & {
|
|
2312
2312
|
clearCache: () => void;
|
|
@@ -2326,7 +2326,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
2326
2326
|
resetResultsCount: () => void;
|
|
2327
2327
|
};
|
|
2328
2328
|
lastResult: () => Map<AxisId, ZoomData> | undefined;
|
|
2329
|
-
dependencies: [(state: ChartState<[UseChartCartesianAxisSignature]>) => {
|
|
2329
|
+
dependencies: [(state: ChartState<[], [UseChartCartesianAxisSignature]>) => {
|
|
2330
2330
|
isInteracting: boolean;
|
|
2331
2331
|
zoomData: readonly ZoomData[];
|
|
2332
2332
|
} | undefined];
|
|
@@ -2337,7 +2337,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
2337
2337
|
} & {
|
|
2338
2338
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
2339
2339
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
2340
|
-
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
2340
|
+
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
2341
2341
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
2342
2342
|
}) => {
|
|
2343
2343
|
[x: string]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
|
|
@@ -2363,7 +2363,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
2363
2363
|
[x: string]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
|
|
2364
2364
|
[x: number]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
|
|
2365
2365
|
};
|
|
2366
|
-
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
2366
|
+
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
2367
2367
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
2368
2368
|
}) => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>) & {
|
|
2369
2369
|
clearCache: () => void;
|
|
@@ -2377,7 +2377,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
2377
2377
|
resetResultsCount: () => void;
|
|
2378
2378
|
};
|
|
2379
2379
|
lastResult: () => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>;
|
|
2380
|
-
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
2380
|
+
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
2381
2381
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
2382
2382
|
}) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) & {
|
|
2383
2383
|
clearCache: () => void;
|
|
@@ -2416,7 +2416,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
2416
2416
|
} & {
|
|
2417
2417
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
2418
2418
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
2419
|
-
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
2419
|
+
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
2420
2420
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
2421
2421
|
}) => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>) & {
|
|
2422
2422
|
clearCache: () => void;
|
|
@@ -2430,7 +2430,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
2430
2430
|
resetResultsCount: () => void;
|
|
2431
2431
|
};
|
|
2432
2432
|
lastResult: () => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>;
|
|
2433
|
-
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
2433
|
+
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
2434
2434
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
2435
2435
|
}) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) & {
|
|
2436
2436
|
clearCache: () => void;
|
|
@@ -2477,9 +2477,9 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
2477
2477
|
} & {
|
|
2478
2478
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
2479
2479
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
2480
|
-
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("
|
|
2480
|
+
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
2481
2481
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
2482
|
-
} & Partial<
|
|
2482
|
+
} & Partial<{}>) => import("./zoom.types").GetZoomAxisFilters | undefined) & {
|
|
2483
2483
|
clearCache: () => void;
|
|
2484
2484
|
resultsCount: () => number;
|
|
2485
2485
|
resetResultsCount: () => void;
|
|
@@ -2491,9 +2491,9 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
2491
2491
|
resetResultsCount: () => void;
|
|
2492
2492
|
};
|
|
2493
2493
|
lastResult: () => import("./zoom.types").GetZoomAxisFilters | undefined;
|
|
2494
|
-
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("
|
|
2494
|
+
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
2495
2495
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
2496
|
-
} & Partial<
|
|
2496
|
+
} & Partial<{}>) => ((axis: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>, axisIndex: number) => import("./useChartCartesianAxis.types").ExtremumFilter | null) | undefined) & {
|
|
2497
2497
|
clearCache: () => void;
|
|
2498
2498
|
resultsCount: () => number;
|
|
2499
2499
|
resetResultsCount: () => void;
|
|
@@ -2511,7 +2511,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
2511
2511
|
resetResultsCount: () => void;
|
|
2512
2512
|
};
|
|
2513
2513
|
lastResult: () => ((axis: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>, axisIndex: number) => import("./useChartCartesianAxis.types").ExtremumFilter | null) | undefined;
|
|
2514
|
-
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("
|
|
2514
|
+
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
2515
2515
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
2516
2516
|
}) => Map<AxisId, ZoomData> | undefined) & {
|
|
2517
2517
|
clearCache: () => void;
|
|
@@ -2531,7 +2531,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
2531
2531
|
resetResultsCount: () => void;
|
|
2532
2532
|
};
|
|
2533
2533
|
lastResult: () => Map<AxisId, ZoomData> | undefined;
|
|
2534
|
-
dependencies: [(state: ChartState<[UseChartCartesianAxisSignature]>) => {
|
|
2534
|
+
dependencies: [(state: ChartState<[], [UseChartCartesianAxisSignature]>) => {
|
|
2535
2535
|
isInteracting: boolean;
|
|
2536
2536
|
zoomData: readonly ZoomData[];
|
|
2537
2537
|
} | undefined];
|
|
@@ -2542,7 +2542,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
2542
2542
|
} & {
|
|
2543
2543
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
2544
2544
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
2545
|
-
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
2545
|
+
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
2546
2546
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
2547
2547
|
}) => {
|
|
2548
2548
|
[x: string]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
|
|
@@ -2568,7 +2568,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
2568
2568
|
[x: string]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
|
|
2569
2569
|
[x: number]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
|
|
2570
2570
|
};
|
|
2571
|
-
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
2571
|
+
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
2572
2572
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
2573
2573
|
}) => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>) & {
|
|
2574
2574
|
clearCache: () => void;
|
|
@@ -2582,7 +2582,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
2582
2582
|
resetResultsCount: () => void;
|
|
2583
2583
|
};
|
|
2584
2584
|
lastResult: () => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>;
|
|
2585
|
-
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
2585
|
+
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
2586
2586
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
2587
2587
|
}) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) & {
|
|
2588
2588
|
clearCache: () => void;
|
|
@@ -2621,7 +2621,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
2621
2621
|
} & {
|
|
2622
2622
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
2623
2623
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
2624
|
-
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
2624
|
+
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
2625
2625
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
2626
2626
|
}) => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>) & {
|
|
2627
2627
|
clearCache: () => void;
|
|
@@ -2635,7 +2635,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
2635
2635
|
resetResultsCount: () => void;
|
|
2636
2636
|
};
|
|
2637
2637
|
lastResult: () => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>;
|
|
2638
|
-
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
2638
|
+
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
2639
2639
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
2640
2640
|
}) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) & {
|
|
2641
2641
|
clearCache: () => void;
|
|
@@ -2682,7 +2682,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
2682
2682
|
} & {
|
|
2683
2683
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
2684
2684
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
2685
|
-
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
|
|
2685
|
+
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<{}> & {
|
|
2686
2686
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
2687
2687
|
}) => import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>) & {
|
|
2688
2688
|
clearCache: () => void;
|
|
@@ -2710,7 +2710,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
2710
2710
|
} & {
|
|
2711
2711
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
2712
2712
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
2713
|
-
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
|
|
2713
|
+
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<{}> & {
|
|
2714
2714
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
2715
2715
|
}) => import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>) & {
|
|
2716
2716
|
clearCache: () => void;
|
|
@@ -2746,9 +2746,9 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
2746
2746
|
} & {
|
|
2747
2747
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
2748
2748
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
2749
|
-
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("
|
|
2749
|
+
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
2750
2750
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
2751
|
-
} & Partial<
|
|
2751
|
+
} & Partial<{}>) => ((axis: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>, axisIndex: number) => import("./useChartCartesianAxis.types").ExtremumFilter | null) | undefined) & {
|
|
2752
2752
|
clearCache: () => void;
|
|
2753
2753
|
resultsCount: () => number;
|
|
2754
2754
|
resetResultsCount: () => void;
|
|
@@ -2766,7 +2766,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
2766
2766
|
resetResultsCount: () => void;
|
|
2767
2767
|
};
|
|
2768
2768
|
lastResult: () => ((axis: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>, axisIndex: number) => import("./useChartCartesianAxis.types").ExtremumFilter | null) | undefined;
|
|
2769
|
-
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("
|
|
2769
|
+
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
2770
2770
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
2771
2771
|
}) => Map<AxisId, ZoomData> | undefined) & {
|
|
2772
2772
|
clearCache: () => void;
|
|
@@ -2786,7 +2786,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
2786
2786
|
resetResultsCount: () => void;
|
|
2787
2787
|
};
|
|
2788
2788
|
lastResult: () => Map<AxisId, ZoomData> | undefined;
|
|
2789
|
-
dependencies: [(state: ChartState<[UseChartCartesianAxisSignature]>) => {
|
|
2789
|
+
dependencies: [(state: ChartState<[], [UseChartCartesianAxisSignature]>) => {
|
|
2790
2790
|
isInteracting: boolean;
|
|
2791
2791
|
zoomData: readonly ZoomData[];
|
|
2792
2792
|
} | undefined];
|
|
@@ -2797,7 +2797,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
2797
2797
|
} & {
|
|
2798
2798
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
2799
2799
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
2800
|
-
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
2800
|
+
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
2801
2801
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
2802
2802
|
}) => {
|
|
2803
2803
|
[x: string]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
|
|
@@ -2823,7 +2823,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
2823
2823
|
[x: string]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
|
|
2824
2824
|
[x: number]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
|
|
2825
2825
|
};
|
|
2826
|
-
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
2826
|
+
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
2827
2827
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
2828
2828
|
}) => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>) & {
|
|
2829
2829
|
clearCache: () => void;
|
|
@@ -2837,7 +2837,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
2837
2837
|
resetResultsCount: () => void;
|
|
2838
2838
|
};
|
|
2839
2839
|
lastResult: () => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>;
|
|
2840
|
-
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
2840
|
+
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
2841
2841
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
2842
2842
|
}) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) & {
|
|
2843
2843
|
clearCache: () => void;
|
|
@@ -2876,7 +2876,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
2876
2876
|
} & {
|
|
2877
2877
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
2878
2878
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
2879
|
-
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
2879
|
+
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
2880
2880
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
2881
2881
|
}) => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>) & {
|
|
2882
2882
|
clearCache: () => void;
|
|
@@ -2890,7 +2890,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
2890
2890
|
resetResultsCount: () => void;
|
|
2891
2891
|
};
|
|
2892
2892
|
lastResult: () => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>;
|
|
2893
|
-
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
2893
|
+
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
2894
2894
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
2895
2895
|
}) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) & {
|
|
2896
2896
|
clearCache: () => void;
|
|
@@ -2937,7 +2937,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
2937
2937
|
} & {
|
|
2938
2938
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
2939
2939
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
2940
|
-
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
|
|
2940
|
+
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<{}> & {
|
|
2941
2941
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
2942
2942
|
}) => import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>) & {
|
|
2943
2943
|
clearCache: () => void;
|
|
@@ -2965,7 +2965,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
2965
2965
|
} & {
|
|
2966
2966
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
2967
2967
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
2968
|
-
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
|
|
2968
|
+
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<{}> & {
|
|
2969
2969
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
2970
2970
|
}) => import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>) & {
|
|
2971
2971
|
clearCache: () => void;
|
|
@@ -3001,7 +3001,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
3001
3001
|
} & {
|
|
3002
3002
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
3003
3003
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
3004
|
-
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
3004
|
+
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
3005
3005
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
3006
3006
|
}) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) & {
|
|
3007
3007
|
clearCache: () => void;
|
|
@@ -3032,7 +3032,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
3032
3032
|
} & {
|
|
3033
3033
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
3034
3034
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
3035
|
-
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
3035
|
+
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
3036
3036
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
3037
3037
|
}) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) & {
|
|
3038
3038
|
clearCache: () => void;
|