@mui/x-charts 8.0.0-beta.2 → 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/AnimatedBarElement.d.ts +38 -8
- package/BarChart/AnimatedBarElement.js +5 -5
- package/BarChart/BarChart.js +659 -6
- package/BarChart/BarClipPath.d.ts +19 -1
- package/BarChart/BarClipPath.js +83 -17
- package/BarChart/BarElement.d.ts +9 -20
- package/BarChart/BarElement.js +29 -26
- package/BarChart/BarLabel/BarLabel.d.ts +27 -854
- package/BarChart/BarLabel/BarLabel.js +32 -5
- package/BarChart/BarLabel/BarLabel.types.d.ts +2 -0
- package/BarChart/BarLabel/BarLabelItem.d.ts +24 -0
- package/BarChart/BarLabel/BarLabelItem.js +18 -6
- package/BarChart/BarLabel/BarLabelPlot.js +16 -46
- package/BarChart/BarLabel/barLabelClasses.d.ts +8 -1
- package/BarChart/BarLabel/barLabelClasses.js +4 -3
- package/BarChart/BarPlot.js +42 -63
- package/BarChart/barElementClasses.d.ts +26 -0
- package/BarChart/barElementClasses.js +29 -0
- package/BarChart/getRadius.d.ts +1 -1
- package/BarChart/index.d.ts +2 -1
- package/BarChart/index.js +11 -0
- package/BarChart/seriesConfig/getColor.js +6 -0
- package/BarChart/seriesConfig/index.js +3 -1
- package/BarChart/seriesConfig/tooltip.d.ts +2 -1
- package/BarChart/seriesConfig/tooltip.js +14 -1
- package/BarChart/types.d.ts +2 -2
- package/CHANGELOG.md +423 -96
- package/ChartContainer/ChartContainer.js +1014 -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/ChartsLabel/ChartsLabelMark.js +0 -4
- package/ChartsLabel/index.d.ts +1 -0
- package/ChartsLabel/index.js +7 -0
- package/ChartsLegend/continuousColorLegendClasses.d.ts +1 -1
- package/ChartsTooltip/ChartsAxisTooltipContent.js +48 -64
- package/ChartsTooltip/ChartsItemTooltipContent.js +54 -10
- package/ChartsTooltip/ChartsTooltip.js +2 -2
- package/ChartsTooltip/ChartsTooltipContainer.js +7 -8
- package/ChartsTooltip/ChartsTooltipTable.d.ts +3 -1
- package/ChartsTooltip/ChartsTooltipTable.js +24 -9
- package/ChartsTooltip/chartsTooltipClasses.d.ts +4 -4
- package/ChartsTooltip/chartsTooltipClasses.js +2 -2
- package/ChartsTooltip/index.d.ts +4 -1
- package/ChartsTooltip/index.js +22 -7
- package/ChartsTooltip/useAxesTooltip.d.ts +7 -0
- package/ChartsTooltip/useAxesTooltip.js +18 -0
- package/ChartsTooltip/useAxisTooltip.d.ts +29 -7
- package/ChartsTooltip/useAxisTooltip.js +125 -36
- package/ChartsTooltip/useItemTooltip.d.ts +15 -11
- package/ChartsTooltip/useItemTooltip.js +52 -5
- package/ChartsXAxis/ChartsXAxis.js +5 -2
- package/ChartsYAxis/ChartsYAxis.js +69 -17
- 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/AnimatedArea.js +5 -22
- package/LineChart/AnimatedLine.d.ts +1 -4
- package/LineChart/AnimatedLine.js +10 -25
- package/LineChart/AppearingMask.d.ts +5 -0
- package/LineChart/AppearingMask.js +25 -18
- package/LineChart/AreaElement.d.ts +5 -0
- package/LineChart/AreaElement.js +1 -1
- package/LineChart/AreaPlot.js +2 -2
- package/LineChart/CircleMarkElement.js +16 -22
- package/LineChart/LineChart.js +659 -6
- package/LineChart/LineElement.d.ts +5 -0
- package/LineChart/LineElement.js +1 -1
- package/LineChart/LineHighlightPlot.js +2 -3
- package/LineChart/LinePlot.js +2 -2
- package/LineChart/MarkElement.js +16 -27
- package/LineChart/MarkPlot.js +2 -3
- package/LineChart/markElementClasses.d.ts +8 -0
- package/LineChart/markElementClasses.js +4 -3
- package/LineChart/seriesConfig/getColor.js +6 -0
- package/LineChart/seriesConfig/index.js +3 -1
- package/LineChart/seriesConfig/tooltip.d.ts +2 -1
- package/LineChart/seriesConfig/tooltip.js +8 -1
- package/PieChart/PieArc.d.ts +24 -11
- package/PieChart/PieArc.js +38 -25
- package/PieChart/PieArcLabel.d.ts +27 -13
- package/PieChart/PieArcLabel.js +52 -48
- package/PieChart/PieArcLabelPlot.js +16 -34
- package/PieChart/PieArcPlot.js +21 -34
- package/PieChart/PiePlot.js +2 -2
- package/PieChart/seriesConfig/tooltip.js +3 -0
- 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 +659 -6
- package/ScatterChart/seriesConfig/getColor.js +9 -0
- package/SparkLineChart/SparkLineChart.d.ts +3 -4
- package/SparkLineChart/SparkLineChart.js +659 -6
- package/colorPalettes/colorPalettes.js +2 -2
- package/constants/index.d.ts +1 -1
- package/constants/index.js +1 -1
- package/context/ChartProvider/ChartProvider.d.ts +1 -1
- package/context/ChartProvider/ChartProvider.types.d.ts +1 -2
- package/esm/BarChart/AnimatedBarElement.d.ts +38 -8
- package/esm/BarChart/AnimatedBarElement.js +5 -5
- package/esm/BarChart/BarChart.js +659 -6
- package/esm/BarChart/BarClipPath.d.ts +19 -1
- package/esm/BarChart/BarClipPath.js +83 -17
- package/esm/BarChart/BarElement.d.ts +9 -20
- package/esm/BarChart/BarElement.js +28 -23
- package/esm/BarChart/BarLabel/BarLabel.d.ts +27 -854
- package/esm/BarChart/BarLabel/BarLabel.js +32 -5
- package/esm/BarChart/BarLabel/BarLabel.types.d.ts +2 -0
- package/esm/BarChart/BarLabel/BarLabelItem.d.ts +24 -0
- package/esm/BarChart/BarLabel/BarLabelItem.js +18 -6
- package/esm/BarChart/BarLabel/BarLabelPlot.js +16 -46
- package/esm/BarChart/BarLabel/barLabelClasses.d.ts +8 -1
- package/esm/BarChart/BarLabel/barLabelClasses.js +4 -3
- package/esm/BarChart/BarPlot.js +41 -62
- package/esm/BarChart/barElementClasses.d.ts +26 -0
- package/{modern/LineChart/markElementClasses.js → esm/BarChart/barElementClasses.js} +7 -7
- package/esm/BarChart/getRadius.d.ts +1 -1
- package/esm/BarChart/index.d.ts +2 -1
- package/esm/BarChart/index.js +2 -1
- package/esm/BarChart/seriesConfig/getColor.js +6 -0
- package/esm/BarChart/seriesConfig/index.js +2 -1
- package/esm/BarChart/seriesConfig/tooltip.d.ts +2 -1
- package/esm/BarChart/seriesConfig/tooltip.js +12 -0
- package/esm/BarChart/types.d.ts +2 -2
- package/esm/ChartContainer/ChartContainer.js +1014 -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/ChartsLabel/ChartsLabelMark.js +0 -4
- package/esm/ChartsLabel/index.d.ts +1 -0
- package/esm/ChartsLabel/index.js +1 -0
- package/esm/ChartsLegend/continuousColorLegendClasses.d.ts +1 -1
- package/esm/ChartsTooltip/ChartsAxisTooltipContent.js +48 -64
- package/esm/ChartsTooltip/ChartsItemTooltipContent.js +55 -11
- package/esm/ChartsTooltip/ChartsTooltip.js +2 -2
- package/esm/ChartsTooltip/ChartsTooltipContainer.js +8 -9
- package/esm/ChartsTooltip/ChartsTooltipTable.d.ts +3 -1
- package/esm/ChartsTooltip/ChartsTooltipTable.js +23 -9
- package/esm/ChartsTooltip/chartsTooltipClasses.d.ts +4 -4
- package/esm/ChartsTooltip/chartsTooltipClasses.js +2 -2
- package/esm/ChartsTooltip/index.d.ts +4 -1
- package/esm/ChartsTooltip/index.js +2 -1
- package/esm/ChartsTooltip/useAxesTooltip.d.ts +7 -0
- package/esm/ChartsTooltip/useAxesTooltip.js +12 -0
- package/esm/ChartsTooltip/useAxisTooltip.d.ts +29 -7
- package/esm/ChartsTooltip/useAxisTooltip.js +127 -38
- package/esm/ChartsTooltip/useItemTooltip.d.ts +15 -11
- package/esm/ChartsTooltip/useItemTooltip.js +49 -5
- package/esm/ChartsXAxis/ChartsXAxis.js +5 -2
- package/esm/ChartsYAxis/ChartsYAxis.js +69 -17
- 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/AnimatedArea.js +5 -22
- package/esm/LineChart/AnimatedLine.d.ts +1 -4
- package/esm/LineChart/AnimatedLine.js +9 -24
- package/esm/LineChart/AppearingMask.d.ts +5 -0
- package/esm/LineChart/AppearingMask.js +23 -18
- 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/CircleMarkElement.js +19 -25
- package/esm/LineChart/LineChart.js +659 -6
- package/esm/LineChart/LineElement.d.ts +5 -0
- package/esm/LineChart/LineElement.js +1 -1
- package/esm/LineChart/LineHighlightPlot.js +3 -4
- package/esm/LineChart/LinePlot.js +1 -1
- package/esm/LineChart/MarkElement.js +17 -28
- package/esm/LineChart/MarkPlot.js +1 -2
- package/esm/LineChart/markElementClasses.d.ts +8 -0
- package/esm/LineChart/markElementClasses.js +4 -3
- package/esm/LineChart/seriesConfig/getColor.js +6 -0
- package/esm/LineChart/seriesConfig/index.js +2 -1
- package/esm/LineChart/seriesConfig/tooltip.d.ts +2 -1
- package/esm/LineChart/seriesConfig/tooltip.js +6 -0
- package/esm/PieChart/PieArc.d.ts +24 -11
- package/esm/PieChart/PieArc.js +37 -24
- package/esm/PieChart/PieArcLabel.d.ts +27 -13
- package/esm/PieChart/PieArcLabel.js +51 -47
- package/esm/PieChart/PieArcLabelPlot.js +16 -34
- package/esm/PieChart/PieArcPlot.js +21 -34
- package/esm/PieChart/PiePlot.js +1 -1
- package/esm/PieChart/seriesConfig/tooltip.js +3 -0
- 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 +659 -6
- package/esm/ScatterChart/seriesConfig/getColor.js +9 -0
- package/esm/SparkLineChart/SparkLineChart.d.ts +3 -4
- package/esm/SparkLineChart/SparkLineChart.js +659 -6
- package/esm/colorPalettes/colorPalettes.js +2 -2
- package/esm/constants/index.d.ts +1 -1
- package/esm/constants/index.js +1 -1
- 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 +7 -0
- package/esm/hooks/animation/index.js +7 -0
- package/esm/hooks/animation/useAnimate.d.ts +83 -0
- package/esm/hooks/animation/useAnimate.js +47 -0
- package/esm/hooks/animation/useAnimateArea.d.ts +15 -0
- package/esm/hooks/animation/useAnimateArea.js +24 -0
- package/esm/hooks/animation/useAnimateBar.d.ts +17 -0
- package/esm/hooks/animation/useAnimateBar.js +50 -0
- package/esm/hooks/animation/useAnimateBarLabel.d.ts +19 -0
- package/esm/hooks/animation/useAnimateBarLabel.js +53 -0
- package/esm/hooks/animation/useAnimateGaugeValueArc.d.ts +19 -0
- package/esm/hooks/animation/useAnimateGaugeValueArc.js +54 -0
- package/esm/hooks/animation/useAnimateLine.d.ts +14 -0
- package/esm/hooks/animation/useAnimateLine.js +23 -0
- package/esm/hooks/animation/useAnimatePieArc.d.ts +15 -0
- package/esm/hooks/animation/useAnimatePieArc.js +62 -0
- package/esm/hooks/animation/useAnimatePieArcLabel.d.ts +15 -0
- package/esm/hooks/animation/useAnimatePieArcLabel.js +68 -0
- package/esm/hooks/index.d.ts +2 -1
- package/esm/hooks/index.js +2 -1
- package/esm/hooks/useAxisSystem.d.ts +8 -0
- package/esm/hooks/useAxisSystem.js +26 -0
- package/esm/hooks/useInteractionItemProps.js +11 -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/esm/internals/animation/Transition.d.ts +37 -0
- package/esm/internals/animation/Transition.js +83 -0
- package/esm/internals/animation/animation.d.ts +4 -0
- package/esm/internals/animation/animation.js +4 -0
- package/esm/internals/animation/useAnimateInternal.d.ts +21 -0
- package/esm/internals/animation/useAnimateInternal.js +76 -0
- 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/computeAxisValue.d.ts +1 -1
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/computeAxisValue.js +9 -3
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisTriggerTooltip.d.ts +5 -0
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisTriggerTooltip.js +21 -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 +127 -151
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianInteraction.selectors.d.ts +9 -1
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianInteraction.selectors.js +55 -26
- 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/{modern/internals/plugins/featurePlugins/useChartPolarAxis/getAxisValue.js → esm/internals/plugins/featurePlugins/useChartPolarAxis/getAxisIndex.js} +0 -12
- package/esm/internals/plugins/featurePlugins/useChartPolarAxis/getAxisTriggerTooltip.d.ts +5 -0
- package/esm/internals/plugins/featurePlugins/useChartPolarAxis/getAxisTriggerTooltip.js +21 -0
- 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/seriesConfig.types.d.ts +3 -1
- package/esm/internals/plugins/models/seriesConfig/tooltipGetter.types.d.ts +72 -7
- package/esm/internals/shallowEqual.d.ts +8 -0
- package/esm/internals/shallowEqual.js +31 -0
- package/esm/internals/store/useCharts.d.ts +1 -1
- package/esm/internals/store/useSelector.js +1 -4
- package/esm/models/axis.d.ts +23 -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/esm/themeAugmentation/overrides.d.ts +1 -1
- package/hooks/animation/index.d.ts +7 -0
- package/hooks/animation/index.js +82 -0
- package/hooks/animation/useAnimate.d.ts +83 -0
- package/hooks/animation/useAnimate.js +54 -0
- package/hooks/animation/useAnimateArea.d.ts +15 -0
- package/hooks/animation/useAnimateArea.js +30 -0
- package/hooks/animation/useAnimateBar.d.ts +17 -0
- package/hooks/animation/useAnimateBar.js +56 -0
- package/hooks/animation/useAnimateBarLabel.d.ts +19 -0
- package/hooks/animation/useAnimateBarLabel.js +59 -0
- package/hooks/animation/useAnimateGaugeValueArc.d.ts +19 -0
- package/hooks/animation/useAnimateGaugeValueArc.js +60 -0
- package/hooks/animation/useAnimateLine.d.ts +14 -0
- package/hooks/animation/useAnimateLine.js +29 -0
- package/hooks/animation/useAnimatePieArc.d.ts +15 -0
- package/hooks/animation/useAnimatePieArc.js +68 -0
- package/hooks/animation/useAnimatePieArcLabel.d.ts +15 -0
- package/hooks/animation/useAnimatePieArcLabel.js +74 -0
- package/hooks/index.d.ts +2 -1
- package/hooks/index.js +13 -1
- package/hooks/useAxisSystem.d.ts +8 -0
- package/hooks/useAxisSystem.js +30 -0
- package/hooks/useInteractionItemProps.js +11 -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/internals/animation/Transition.d.ts +37 -0
- package/internals/animation/Transition.js +89 -0
- package/internals/animation/animation.d.ts +4 -0
- package/internals/animation/animation.js +11 -0
- package/internals/animation/useAnimateInternal.d.ts +21 -0
- package/internals/animation/useAnimateInternal.js +82 -0
- 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/computeAxisValue.d.ts +1 -1
- package/internals/plugins/featurePlugins/useChartCartesianAxis/computeAxisValue.js +9 -3
- package/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisTriggerTooltip.d.ts +5 -0
- package/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisTriggerTooltip.js +28 -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 +127 -151
- package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianInteraction.selectors.d.ts +9 -1
- package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianInteraction.selectors.js +56 -27
- 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/seriesConfig.types.d.ts +3 -1
- package/internals/plugins/models/seriesConfig/tooltipGetter.types.d.ts +72 -7
- package/internals/shallowEqual.d.ts +8 -0
- package/internals/shallowEqual.js +37 -0
- package/internals/store/useCharts.d.ts +1 -1
- package/internals/store/useSelector.js +1 -5
- package/models/axis.d.ts +23 -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 +9 -18
- package/themeAugmentation/overrides.d.ts +1 -1
- package/PieChart/dataTransform/transition.d.ts +0 -4
- package/PieChart/dataTransform/transition.js +0 -145
- 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 -60
- 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/PieChart/dataTransform/transition.d.ts +0 -4
- package/esm/PieChart/dataTransform/transition.js +0 -137
- 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 -55
- 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/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/useChartPolarAxis/getAxisValue.js +0 -38
- 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/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 -12
- package/modern/BarChart/AnimatedBarElement.js +0 -19
- package/modern/BarChart/BarChart.d.ts +0 -66
- package/modern/BarChart/BarChart.js +0 -321
- package/modern/BarChart/BarChart.plugins.d.ts +0 -7
- package/modern/BarChart/BarChart.plugins.js +0 -5
- package/modern/BarChart/BarClipPath.d.ts +0 -14
- package/modern/BarChart/BarClipPath.js +0 -42
- package/modern/BarChart/BarElement.d.ts +0 -50
- package/modern/BarChart/BarElement.js +0 -101
- package/modern/BarChart/BarLabel/BarLabel.d.ts +0 -861
- package/modern/BarChart/BarLabel/BarLabel.js +0 -53
- package/modern/BarChart/BarLabel/BarLabel.types.d.ts +0 -39
- package/modern/BarChart/BarLabel/BarLabel.types.js +0 -1
- package/modern/BarChart/BarLabel/BarLabelItem.d.ts +0 -54
- package/modern/BarChart/BarLabel/BarLabelItem.js +0 -119
- package/modern/BarChart/BarLabel/BarLabelPlot.d.ts +0 -13
- package/modern/BarChart/BarLabel/BarLabelPlot.js +0 -75
- package/modern/BarChart/BarLabel/barLabelClasses.d.ts +0 -13
- package/modern/BarChart/BarLabel/barLabelClasses.js +0 -19
- 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 -327
- 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 -4
- package/modern/BarChart/index.js +0 -4
- 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 -15
- 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 -3
- package/modern/BarChart/seriesConfig/tooltip.js +0 -25
- 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 -396
- 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 -124
- package/modern/ChartsLabel/index.d.ts +0 -7
- package/modern/ChartsLabel/index.js +0 -3
- 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 -96
- package/modern/ChartsTooltip/ChartsItemTooltipContent.d.ts +0 -15
- package/modern/ChartsTooltip/ChartsItemTooltipContent.js +0 -65
- 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 -296
- package/modern/ChartsTooltip/ChartsTooltipTable.d.ts +0 -16
- package/modern/ChartsTooltip/ChartsTooltipTable.js +0 -85
- package/modern/ChartsTooltip/chartsTooltipClasses.d.ts +0 -26
- package/modern/ChartsTooltip/chartsTooltipClasses.js +0 -22
- package/modern/ChartsTooltip/index.d.ts +0 -11
- package/modern/ChartsTooltip/index.js +0 -10
- package/modern/ChartsTooltip/useAxisTooltip.d.ts +0 -20
- package/modern/ChartsTooltip/useAxisTooltip.js +0 -88
- package/modern/ChartsTooltip/useItemTooltip.d.ts +0 -12
- package/modern/ChartsTooltip/useItemTooltip.js +0 -40
- 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 -457
- 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 -327
- 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 -78
- package/modern/LineChart/AnimatedLine.d.ts +0 -26
- package/modern/LineChart/AnimatedLine.js +0 -78
- package/modern/LineChart/AppearingMask.d.ts +0 -12
- package/modern/LineChart/AppearingMask.js +0 -43
- 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 -111
- package/modern/LineChart/LineChart.d.ts +0 -82
- package/modern/LineChart/LineChart.js +0 -321
- 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 -122
- 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 -124
- package/modern/LineChart/MarkPlot.d.ts +0 -42
- package/modern/LineChart/MarkPlot.js +0 -181
- package/modern/LineChart/index.d.ts +0 -13
- package/modern/LineChart/index.js +0 -12
- package/modern/LineChart/markElementClasses.d.ts +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 -15
- 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 -3
- package/modern/LineChart/seriesConfig/tooltip.js +0 -25
- package/modern/LineChart/useLineChartProps.d.ts +0 -40
- package/modern/LineChart/useLineChartProps.js +0 -140
- package/modern/PieChart/PieArc.d.ts +0 -36
- package/modern/PieChart/PieArc.js +0 -108
- package/modern/PieChart/PieArcLabel.d.ts +0 -37
- package/modern/PieChart/PieArcLabel.js +0 -113
- package/modern/PieChart/PieArcLabelPlot.d.ts +0 -36
- package/modern/PieChart/PieArcLabelPlot.js +0 -197
- package/modern/PieChart/PieArcPlot.d.ts +0 -43
- package/modern/PieChart/PieArcPlot.js +0 -170
- 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/transition.d.ts +0 -4
- package/modern/PieChart/dataTransform/transition.js +0 -137
- 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 -29
- 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 -337
- 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 -374
- 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 -55
- 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/getValueToPositionMapper.d.ts +0 -8
- package/modern/hooks/getValueToPositionMapper.js +0 -15
- package/modern/hooks/index.d.ts +0 -16
- package/modern/hooks/index.js +0 -16
- 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 -76
- 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/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 -135
- 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 -3106
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisRendering.selectors.js +0 -89
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianInteraction.selectors.d.ts +0 -1
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianInteraction.selectors.js +0 -41
- 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/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 -22
- 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 -7
- 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/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 -388
- 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,12 +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<{}>
|
|
188
|
-
axis: import("./useChartCartesianAxis.types").DefaultizedAxisConfig<import("../../..").ChartsXAxisProps>;
|
|
189
|
-
axisIds: string[];
|
|
190
|
-
}) & {
|
|
187
|
+
} & Partial<{}>) => import("./computeAxisValue").ComputeResult<import("../../..").ChartsXAxisProps>) & {
|
|
191
188
|
clearCache: () => void;
|
|
192
189
|
resultsCount: () => number;
|
|
193
190
|
resetResultsCount: () => void;
|
|
@@ -202,10 +199,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
202
199
|
}, resultFuncArgs_2: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>, resultFuncArgs_3: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>, resultFuncArgs_4: Map<AxisId, ZoomData> | undefined, resultFuncArgs_5: {
|
|
203
200
|
[x: string]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
|
|
204
201
|
[x: number]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
|
|
205
|
-
}, resultFuncArgs_6: import("./zoom.types").GetZoomAxisFilters | undefined) =>
|
|
206
|
-
axis: import("./useChartCartesianAxis.types").DefaultizedAxisConfig<import("../../..").ChartsXAxisProps>;
|
|
207
|
-
axisIds: string[];
|
|
208
|
-
};
|
|
202
|
+
}, resultFuncArgs_6: import("./zoom.types").GetZoomAxisFilters | undefined) => import("./computeAxisValue").ComputeResult<import("../../..").ChartsXAxisProps>;
|
|
209
203
|
memoizedResultFunc: ((resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined, resultFuncArgs_1: {
|
|
210
204
|
width: number;
|
|
211
205
|
left: number;
|
|
@@ -216,19 +210,13 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
216
210
|
}, resultFuncArgs_2: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>, resultFuncArgs_3: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>, resultFuncArgs_4: Map<AxisId, ZoomData> | undefined, resultFuncArgs_5: {
|
|
217
211
|
[x: string]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
|
|
218
212
|
[x: number]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
|
|
219
|
-
}, resultFuncArgs_6: import("./zoom.types").GetZoomAxisFilters | undefined) => {
|
|
220
|
-
axis: import("./useChartCartesianAxis.types").DefaultizedAxisConfig<import("../../..").ChartsXAxisProps>;
|
|
221
|
-
axisIds: string[];
|
|
222
|
-
}) & {
|
|
213
|
+
}, resultFuncArgs_6: import("./zoom.types").GetZoomAxisFilters | undefined) => import("./computeAxisValue").ComputeResult<import("../../..").ChartsXAxisProps>) & {
|
|
223
214
|
clearCache: () => void;
|
|
224
215
|
resultsCount: () => number;
|
|
225
216
|
resetResultsCount: () => void;
|
|
226
217
|
};
|
|
227
|
-
lastResult: () =>
|
|
228
|
-
|
|
229
|
-
axisIds: string[];
|
|
230
|
-
};
|
|
231
|
-
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> & {
|
|
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> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
232
220
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
233
221
|
}) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) & {
|
|
234
222
|
clearCache: () => void;
|
|
@@ -259,7 +247,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
259
247
|
} & {
|
|
260
248
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
261
249
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
262
|
-
}, ((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<{}> & {
|
|
263
251
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
264
252
|
} & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState>) => {
|
|
265
253
|
width: number;
|
|
@@ -301,7 +289,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
301
289
|
top: number;
|
|
302
290
|
bottom: number;
|
|
303
291
|
};
|
|
304
|
-
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<{}> & {
|
|
305
293
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
306
294
|
}) => number) & {
|
|
307
295
|
clearCache: () => void;
|
|
@@ -335,7 +323,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
335
323
|
} & {
|
|
336
324
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
337
325
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
338
|
-
}, ((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<{}> & {
|
|
339
327
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
340
328
|
}) => number) & {
|
|
341
329
|
clearCache: () => void;
|
|
@@ -369,7 +357,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
369
357
|
} & {
|
|
370
358
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
371
359
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
372
|
-
}, ((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<{}> & {
|
|
373
361
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
374
362
|
}) => number) & {
|
|
375
363
|
clearCache: () => void;
|
|
@@ -383,7 +371,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
383
371
|
resetResultsCount: () => void;
|
|
384
372
|
};
|
|
385
373
|
lastResult: () => number;
|
|
386
|
-
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<{}> & {
|
|
387
375
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
388
376
|
}) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) & {
|
|
389
377
|
clearCache: () => void;
|
|
@@ -425,7 +413,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
425
413
|
} & {
|
|
426
414
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
427
415
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
428
|
-
}, ((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<{}> & {
|
|
429
417
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
430
418
|
}) => number) & {
|
|
431
419
|
clearCache: () => void;
|
|
@@ -439,7 +427,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
439
427
|
resetResultsCount: () => void;
|
|
440
428
|
};
|
|
441
429
|
lastResult: () => number;
|
|
442
|
-
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<{}> & {
|
|
443
431
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
444
432
|
}) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) & {
|
|
445
433
|
clearCache: () => void;
|
|
@@ -481,7 +469,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
481
469
|
} & {
|
|
482
470
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
483
471
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
484
|
-
}, ((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<{}> & {
|
|
485
473
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
486
474
|
}) => number) & {
|
|
487
475
|
clearCache: () => void;
|
|
@@ -495,7 +483,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
495
483
|
resetResultsCount: () => void;
|
|
496
484
|
};
|
|
497
485
|
lastResult: () => number;
|
|
498
|
-
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<{}> & {
|
|
499
487
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
500
488
|
}) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) & {
|
|
501
489
|
clearCache: () => void;
|
|
@@ -537,7 +525,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
537
525
|
} & {
|
|
538
526
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
539
527
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
540
|
-
}, ((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<{}> & {
|
|
541
529
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
542
530
|
}) => number) & {
|
|
543
531
|
clearCache: () => void;
|
|
@@ -551,7 +539,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
551
539
|
resetResultsCount: () => void;
|
|
552
540
|
};
|
|
553
541
|
lastResult: () => number;
|
|
554
|
-
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<{}> & {
|
|
555
543
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
556
544
|
}) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) & {
|
|
557
545
|
clearCache: () => void;
|
|
@@ -593,7 +581,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
593
581
|
} & {
|
|
594
582
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
595
583
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
596
|
-
}, ((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> & {
|
|
597
585
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
598
586
|
}) => number) & {
|
|
599
587
|
clearCache: () => void;
|
|
@@ -607,7 +595,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
607
595
|
resetResultsCount: () => void;
|
|
608
596
|
};
|
|
609
597
|
lastResult: () => number;
|
|
610
|
-
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> & {
|
|
611
599
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
612
600
|
}) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) & {
|
|
613
601
|
clearCache: () => void;
|
|
@@ -646,7 +634,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
646
634
|
} & {
|
|
647
635
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
648
636
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
649
|
-
}, ((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> & {
|
|
650
638
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
651
639
|
}) => number) & {
|
|
652
640
|
clearCache: () => void;
|
|
@@ -660,7 +648,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
660
648
|
resetResultsCount: () => void;
|
|
661
649
|
};
|
|
662
650
|
lastResult: () => number;
|
|
663
|
-
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> & {
|
|
664
652
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
665
653
|
}) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) & {
|
|
666
654
|
clearCache: () => void;
|
|
@@ -699,7 +687,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
699
687
|
} & {
|
|
700
688
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
701
689
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
702
|
-
}, ((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> & {
|
|
703
691
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
704
692
|
}) => number) & {
|
|
705
693
|
clearCache: () => void;
|
|
@@ -713,7 +701,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
713
701
|
resetResultsCount: () => void;
|
|
714
702
|
};
|
|
715
703
|
lastResult: () => number;
|
|
716
|
-
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> & {
|
|
717
705
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
718
706
|
}) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) & {
|
|
719
707
|
clearCache: () => void;
|
|
@@ -752,7 +740,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
752
740
|
} & {
|
|
753
741
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
754
742
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
755
|
-
}, ((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> & {
|
|
756
744
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
757
745
|
}) => number) & {
|
|
758
746
|
clearCache: () => void;
|
|
@@ -766,7 +754,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
766
754
|
resetResultsCount: () => void;
|
|
767
755
|
};
|
|
768
756
|
lastResult: () => number;
|
|
769
|
-
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> & {
|
|
770
758
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
771
759
|
}) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) & {
|
|
772
760
|
clearCache: () => void;
|
|
@@ -813,7 +801,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
813
801
|
} & {
|
|
814
802
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
815
803
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
816
|
-
}, ((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<{}> & {
|
|
817
805
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
818
806
|
}) => import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>) & {
|
|
819
807
|
clearCache: () => void;
|
|
@@ -841,7 +829,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
841
829
|
} & {
|
|
842
830
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
843
831
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
844
|
-
}, ((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<{}> & {
|
|
845
833
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
846
834
|
}) => import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>) & {
|
|
847
835
|
clearCache: () => void;
|
|
@@ -869,7 +857,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
869
857
|
} & {
|
|
870
858
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
871
859
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
872
|
-
}, ((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> & {
|
|
873
861
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
874
862
|
}) => Map<AxisId, ZoomData> | undefined) & {
|
|
875
863
|
clearCache: () => void;
|
|
@@ -889,7 +877,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
889
877
|
resetResultsCount: () => void;
|
|
890
878
|
};
|
|
891
879
|
lastResult: () => Map<AxisId, ZoomData> | undefined;
|
|
892
|
-
dependencies: [(state: ChartState<[UseChartCartesianAxisSignature]>) => {
|
|
880
|
+
dependencies: [(state: ChartState<[], [UseChartCartesianAxisSignature]>) => {
|
|
893
881
|
isInteracting: boolean;
|
|
894
882
|
zoomData: readonly ZoomData[];
|
|
895
883
|
} | undefined];
|
|
@@ -900,7 +888,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
900
888
|
} & {
|
|
901
889
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
902
890
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
903
|
-
}, ((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> & {
|
|
904
892
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
905
893
|
}) => {
|
|
906
894
|
[x: string]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
|
|
@@ -926,7 +914,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
926
914
|
[x: string]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
|
|
927
915
|
[x: number]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
|
|
928
916
|
};
|
|
929
|
-
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> & {
|
|
930
918
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
931
919
|
}) => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>) & {
|
|
932
920
|
clearCache: () => void;
|
|
@@ -940,7 +928,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
940
928
|
resetResultsCount: () => void;
|
|
941
929
|
};
|
|
942
930
|
lastResult: () => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>;
|
|
943
|
-
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> & {
|
|
944
932
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
945
933
|
}) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) & {
|
|
946
934
|
clearCache: () => void;
|
|
@@ -979,7 +967,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
979
967
|
} & {
|
|
980
968
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
981
969
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
982
|
-
}, ((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> & {
|
|
983
971
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
984
972
|
}) => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>) & {
|
|
985
973
|
clearCache: () => void;
|
|
@@ -993,7 +981,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
993
981
|
resetResultsCount: () => void;
|
|
994
982
|
};
|
|
995
983
|
lastResult: () => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>;
|
|
996
|
-
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> & {
|
|
997
985
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
998
986
|
}) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) & {
|
|
999
987
|
clearCache: () => void;
|
|
@@ -1040,9 +1028,9 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
1040
1028
|
} & {
|
|
1041
1029
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
1042
1030
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1043
|
-
}, ((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> & {
|
|
1044
1032
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
1045
|
-
} & Partial<
|
|
1033
|
+
} & Partial<{}>) => import("./zoom.types").GetZoomAxisFilters | undefined) & {
|
|
1046
1034
|
clearCache: () => void;
|
|
1047
1035
|
resultsCount: () => number;
|
|
1048
1036
|
resetResultsCount: () => void;
|
|
@@ -1054,9 +1042,9 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
1054
1042
|
resetResultsCount: () => void;
|
|
1055
1043
|
};
|
|
1056
1044
|
lastResult: () => import("./zoom.types").GetZoomAxisFilters | undefined;
|
|
1057
|
-
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> & {
|
|
1058
1046
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
1059
|
-
} & Partial<
|
|
1047
|
+
} & Partial<{}>) => ((axis: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>, axisIndex: number) => import("./useChartCartesianAxis.types").ExtremumFilter | null) | undefined) & {
|
|
1060
1048
|
clearCache: () => void;
|
|
1061
1049
|
resultsCount: () => number;
|
|
1062
1050
|
resetResultsCount: () => void;
|
|
@@ -1074,7 +1062,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
1074
1062
|
resetResultsCount: () => void;
|
|
1075
1063
|
};
|
|
1076
1064
|
lastResult: () => ((axis: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>, axisIndex: number) => import("./useChartCartesianAxis.types").ExtremumFilter | null) | undefined;
|
|
1077
|
-
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> & {
|
|
1078
1066
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
1079
1067
|
}) => Map<AxisId, ZoomData> | undefined) & {
|
|
1080
1068
|
clearCache: () => void;
|
|
@@ -1094,7 +1082,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
1094
1082
|
resetResultsCount: () => void;
|
|
1095
1083
|
};
|
|
1096
1084
|
lastResult: () => Map<AxisId, ZoomData> | undefined;
|
|
1097
|
-
dependencies: [(state: ChartState<[UseChartCartesianAxisSignature]>) => {
|
|
1085
|
+
dependencies: [(state: ChartState<[], [UseChartCartesianAxisSignature]>) => {
|
|
1098
1086
|
isInteracting: boolean;
|
|
1099
1087
|
zoomData: readonly ZoomData[];
|
|
1100
1088
|
} | undefined];
|
|
@@ -1105,7 +1093,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
1105
1093
|
} & {
|
|
1106
1094
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
1107
1095
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1108
|
-
}, ((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> & {
|
|
1109
1097
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
1110
1098
|
}) => {
|
|
1111
1099
|
[x: string]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
|
|
@@ -1131,7 +1119,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
1131
1119
|
[x: string]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
|
|
1132
1120
|
[x: number]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
|
|
1133
1121
|
};
|
|
1134
|
-
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> & {
|
|
1135
1123
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
1136
1124
|
}) => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>) & {
|
|
1137
1125
|
clearCache: () => void;
|
|
@@ -1145,7 +1133,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
1145
1133
|
resetResultsCount: () => void;
|
|
1146
1134
|
};
|
|
1147
1135
|
lastResult: () => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>;
|
|
1148
|
-
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> & {
|
|
1149
1137
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
1150
1138
|
}) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) & {
|
|
1151
1139
|
clearCache: () => void;
|
|
@@ -1184,7 +1172,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
1184
1172
|
} & {
|
|
1185
1173
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
1186
1174
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1187
|
-
}, ((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> & {
|
|
1188
1176
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
1189
1177
|
}) => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>) & {
|
|
1190
1178
|
clearCache: () => void;
|
|
@@ -1198,7 +1186,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
1198
1186
|
resetResultsCount: () => void;
|
|
1199
1187
|
};
|
|
1200
1188
|
lastResult: () => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>;
|
|
1201
|
-
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> & {
|
|
1202
1190
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
1203
1191
|
}) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) & {
|
|
1204
1192
|
clearCache: () => void;
|
|
@@ -1245,7 +1233,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
1245
1233
|
} & {
|
|
1246
1234
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
1247
1235
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1248
|
-
}, ((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<{}> & {
|
|
1249
1237
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
1250
1238
|
}) => import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>) & {
|
|
1251
1239
|
clearCache: () => void;
|
|
@@ -1273,7 +1261,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
1273
1261
|
} & {
|
|
1274
1262
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
1275
1263
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1276
|
-
}, ((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<{}> & {
|
|
1277
1265
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
1278
1266
|
}) => import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>) & {
|
|
1279
1267
|
clearCache: () => void;
|
|
@@ -1309,9 +1297,9 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
1309
1297
|
} & {
|
|
1310
1298
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
1311
1299
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1312
|
-
}, ((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> & {
|
|
1313
1301
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
1314
|
-
} & Partial<
|
|
1302
|
+
} & Partial<{}>) => ((axis: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>, axisIndex: number) => import("./useChartCartesianAxis.types").ExtremumFilter | null) | undefined) & {
|
|
1315
1303
|
clearCache: () => void;
|
|
1316
1304
|
resultsCount: () => number;
|
|
1317
1305
|
resetResultsCount: () => void;
|
|
@@ -1329,7 +1317,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
1329
1317
|
resetResultsCount: () => void;
|
|
1330
1318
|
};
|
|
1331
1319
|
lastResult: () => ((axis: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>, axisIndex: number) => import("./useChartCartesianAxis.types").ExtremumFilter | null) | undefined;
|
|
1332
|
-
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> & {
|
|
1333
1321
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
1334
1322
|
}) => Map<AxisId, ZoomData> | undefined) & {
|
|
1335
1323
|
clearCache: () => void;
|
|
@@ -1349,7 +1337,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
1349
1337
|
resetResultsCount: () => void;
|
|
1350
1338
|
};
|
|
1351
1339
|
lastResult: () => Map<AxisId, ZoomData> | undefined;
|
|
1352
|
-
dependencies: [(state: ChartState<[UseChartCartesianAxisSignature]>) => {
|
|
1340
|
+
dependencies: [(state: ChartState<[], [UseChartCartesianAxisSignature]>) => {
|
|
1353
1341
|
isInteracting: boolean;
|
|
1354
1342
|
zoomData: readonly ZoomData[];
|
|
1355
1343
|
} | undefined];
|
|
@@ -1360,7 +1348,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
1360
1348
|
} & {
|
|
1361
1349
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
1362
1350
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1363
|
-
}, ((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> & {
|
|
1364
1352
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
1365
1353
|
}) => {
|
|
1366
1354
|
[x: string]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
|
|
@@ -1386,7 +1374,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
1386
1374
|
[x: string]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
|
|
1387
1375
|
[x: number]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
|
|
1388
1376
|
};
|
|
1389
|
-
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> & {
|
|
1390
1378
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
1391
1379
|
}) => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>) & {
|
|
1392
1380
|
clearCache: () => void;
|
|
@@ -1400,7 +1388,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
1400
1388
|
resetResultsCount: () => void;
|
|
1401
1389
|
};
|
|
1402
1390
|
lastResult: () => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>;
|
|
1403
|
-
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> & {
|
|
1404
1392
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
1405
1393
|
}) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) & {
|
|
1406
1394
|
clearCache: () => void;
|
|
@@ -1439,7 +1427,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
1439
1427
|
} & {
|
|
1440
1428
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
1441
1429
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1442
|
-
}, ((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> & {
|
|
1443
1431
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
1444
1432
|
}) => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>) & {
|
|
1445
1433
|
clearCache: () => void;
|
|
@@ -1453,7 +1441,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
1453
1441
|
resetResultsCount: () => void;
|
|
1454
1442
|
};
|
|
1455
1443
|
lastResult: () => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>;
|
|
1456
|
-
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> & {
|
|
1457
1445
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
1458
1446
|
}) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) & {
|
|
1459
1447
|
clearCache: () => void;
|
|
@@ -1500,7 +1488,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
1500
1488
|
} & {
|
|
1501
1489
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
1502
1490
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1503
|
-
}, ((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<{}> & {
|
|
1504
1492
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
1505
1493
|
}) => import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>) & {
|
|
1506
1494
|
clearCache: () => void;
|
|
@@ -1528,7 +1516,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
1528
1516
|
} & {
|
|
1529
1517
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
1530
1518
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1531
|
-
}, ((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<{}> & {
|
|
1532
1520
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
1533
1521
|
}) => import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>) & {
|
|
1534
1522
|
clearCache: () => void;
|
|
@@ -1564,7 +1552,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
1564
1552
|
} & {
|
|
1565
1553
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
1566
1554
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1567
|
-
}, ((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> & {
|
|
1568
1556
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
1569
1557
|
}) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) & {
|
|
1570
1558
|
clearCache: () => void;
|
|
@@ -1595,7 +1583,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
1595
1583
|
} & {
|
|
1596
1584
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
1597
1585
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1598
|
-
}, ((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> & {
|
|
1599
1587
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
1600
1588
|
}) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) & {
|
|
1601
1589
|
clearCache: () => void;
|
|
@@ -1643,12 +1631,9 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
1643
1631
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
1644
1632
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1645
1633
|
};
|
|
1646
|
-
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> & {
|
|
1647
1635
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
1648
|
-
} & Partial<{}>
|
|
1649
|
-
axis: import("./useChartCartesianAxis.types").DefaultizedAxisConfig<import("../../..").ChartsYAxisProps>;
|
|
1650
|
-
axisIds: string[];
|
|
1651
|
-
}) & {
|
|
1636
|
+
} & Partial<{}>) => import("./computeAxisValue").ComputeResult<import("../../..").ChartsYAxisProps>) & {
|
|
1652
1637
|
clearCache: () => void;
|
|
1653
1638
|
resultsCount: () => number;
|
|
1654
1639
|
resetResultsCount: () => void;
|
|
@@ -1663,10 +1648,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
1663
1648
|
}, resultFuncArgs_2: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>, resultFuncArgs_3: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>, resultFuncArgs_4: Map<AxisId, ZoomData> | undefined, resultFuncArgs_5: {
|
|
1664
1649
|
[x: string]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
|
|
1665
1650
|
[x: number]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
|
|
1666
|
-
}, resultFuncArgs_6: import("./zoom.types").GetZoomAxisFilters | undefined) =>
|
|
1667
|
-
axis: import("./useChartCartesianAxis.types").DefaultizedAxisConfig<import("../../..").ChartsYAxisProps>;
|
|
1668
|
-
axisIds: string[];
|
|
1669
|
-
};
|
|
1651
|
+
}, resultFuncArgs_6: import("./zoom.types").GetZoomAxisFilters | undefined) => import("./computeAxisValue").ComputeResult<import("../../..").ChartsYAxisProps>;
|
|
1670
1652
|
memoizedResultFunc: ((resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined, resultFuncArgs_1: {
|
|
1671
1653
|
width: number;
|
|
1672
1654
|
left: number;
|
|
@@ -1677,19 +1659,13 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
1677
1659
|
}, resultFuncArgs_2: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>, resultFuncArgs_3: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>, resultFuncArgs_4: Map<AxisId, ZoomData> | undefined, resultFuncArgs_5: {
|
|
1678
1660
|
[x: string]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
|
|
1679
1661
|
[x: number]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
|
|
1680
|
-
}, resultFuncArgs_6: import("./zoom.types").GetZoomAxisFilters | undefined) => {
|
|
1681
|
-
axis: import("./useChartCartesianAxis.types").DefaultizedAxisConfig<import("../../..").ChartsYAxisProps>;
|
|
1682
|
-
axisIds: string[];
|
|
1683
|
-
}) & {
|
|
1662
|
+
}, resultFuncArgs_6: import("./zoom.types").GetZoomAxisFilters | undefined) => import("./computeAxisValue").ComputeResult<import("../../..").ChartsYAxisProps>) & {
|
|
1684
1663
|
clearCache: () => void;
|
|
1685
1664
|
resultsCount: () => number;
|
|
1686
1665
|
resetResultsCount: () => void;
|
|
1687
1666
|
};
|
|
1688
|
-
lastResult: () =>
|
|
1689
|
-
|
|
1690
|
-
axisIds: string[];
|
|
1691
|
-
};
|
|
1692
|
-
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> & {
|
|
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> & import("../../corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
|
|
1693
1669
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
1694
1670
|
}) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) & {
|
|
1695
1671
|
clearCache: () => void;
|
|
@@ -1720,7 +1696,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
1720
1696
|
} & {
|
|
1721
1697
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
1722
1698
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1723
|
-
}, ((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<{}> & {
|
|
1724
1700
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
1725
1701
|
} & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState>) => {
|
|
1726
1702
|
width: number;
|
|
@@ -1762,7 +1738,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
1762
1738
|
top: number;
|
|
1763
1739
|
bottom: number;
|
|
1764
1740
|
};
|
|
1765
|
-
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<{}> & {
|
|
1766
1742
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
1767
1743
|
}) => number) & {
|
|
1768
1744
|
clearCache: () => void;
|
|
@@ -1796,7 +1772,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
1796
1772
|
} & {
|
|
1797
1773
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
1798
1774
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1799
|
-
}, ((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<{}> & {
|
|
1800
1776
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
1801
1777
|
}) => number) & {
|
|
1802
1778
|
clearCache: () => void;
|
|
@@ -1830,7 +1806,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
1830
1806
|
} & {
|
|
1831
1807
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
1832
1808
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1833
|
-
}, ((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<{}> & {
|
|
1834
1810
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
1835
1811
|
}) => number) & {
|
|
1836
1812
|
clearCache: () => void;
|
|
@@ -1844,7 +1820,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
1844
1820
|
resetResultsCount: () => void;
|
|
1845
1821
|
};
|
|
1846
1822
|
lastResult: () => number;
|
|
1847
|
-
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<{}> & {
|
|
1848
1824
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
1849
1825
|
}) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) & {
|
|
1850
1826
|
clearCache: () => void;
|
|
@@ -1886,7 +1862,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
1886
1862
|
} & {
|
|
1887
1863
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
1888
1864
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1889
|
-
}, ((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<{}> & {
|
|
1890
1866
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
1891
1867
|
}) => number) & {
|
|
1892
1868
|
clearCache: () => void;
|
|
@@ -1900,7 +1876,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
1900
1876
|
resetResultsCount: () => void;
|
|
1901
1877
|
};
|
|
1902
1878
|
lastResult: () => number;
|
|
1903
|
-
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<{}> & {
|
|
1904
1880
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
1905
1881
|
}) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) & {
|
|
1906
1882
|
clearCache: () => void;
|
|
@@ -1942,7 +1918,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
1942
1918
|
} & {
|
|
1943
1919
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
1944
1920
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1945
|
-
}, ((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<{}> & {
|
|
1946
1922
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
1947
1923
|
}) => number) & {
|
|
1948
1924
|
clearCache: () => void;
|
|
@@ -1956,7 +1932,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
1956
1932
|
resetResultsCount: () => void;
|
|
1957
1933
|
};
|
|
1958
1934
|
lastResult: () => number;
|
|
1959
|
-
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<{}> & {
|
|
1960
1936
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
1961
1937
|
}) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) & {
|
|
1962
1938
|
clearCache: () => void;
|
|
@@ -1998,7 +1974,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
1998
1974
|
} & {
|
|
1999
1975
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
2000
1976
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
2001
|
-
}, ((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<{}> & {
|
|
2002
1978
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
2003
1979
|
}) => number) & {
|
|
2004
1980
|
clearCache: () => void;
|
|
@@ -2012,7 +1988,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
2012
1988
|
resetResultsCount: () => void;
|
|
2013
1989
|
};
|
|
2014
1990
|
lastResult: () => number;
|
|
2015
|
-
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<{}> & {
|
|
2016
1992
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
2017
1993
|
}) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) & {
|
|
2018
1994
|
clearCache: () => void;
|
|
@@ -2054,7 +2030,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
2054
2030
|
} & {
|
|
2055
2031
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
2056
2032
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
2057
|
-
}, ((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> & {
|
|
2058
2034
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
2059
2035
|
}) => number) & {
|
|
2060
2036
|
clearCache: () => void;
|
|
@@ -2068,7 +2044,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
2068
2044
|
resetResultsCount: () => void;
|
|
2069
2045
|
};
|
|
2070
2046
|
lastResult: () => number;
|
|
2071
|
-
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> & {
|
|
2072
2048
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
2073
2049
|
}) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) & {
|
|
2074
2050
|
clearCache: () => void;
|
|
@@ -2107,7 +2083,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
2107
2083
|
} & {
|
|
2108
2084
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
2109
2085
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
2110
|
-
}, ((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> & {
|
|
2111
2087
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
2112
2088
|
}) => number) & {
|
|
2113
2089
|
clearCache: () => void;
|
|
@@ -2121,7 +2097,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
2121
2097
|
resetResultsCount: () => void;
|
|
2122
2098
|
};
|
|
2123
2099
|
lastResult: () => number;
|
|
2124
|
-
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> & {
|
|
2125
2101
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
2126
2102
|
}) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) & {
|
|
2127
2103
|
clearCache: () => void;
|
|
@@ -2160,7 +2136,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
2160
2136
|
} & {
|
|
2161
2137
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
2162
2138
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
2163
|
-
}, ((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> & {
|
|
2164
2140
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
2165
2141
|
}) => number) & {
|
|
2166
2142
|
clearCache: () => void;
|
|
@@ -2174,7 +2150,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
2174
2150
|
resetResultsCount: () => void;
|
|
2175
2151
|
};
|
|
2176
2152
|
lastResult: () => number;
|
|
2177
|
-
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> & {
|
|
2178
2154
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
2179
2155
|
}) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) & {
|
|
2180
2156
|
clearCache: () => void;
|
|
@@ -2213,7 +2189,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
2213
2189
|
} & {
|
|
2214
2190
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
2215
2191
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
2216
|
-
}, ((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> & {
|
|
2217
2193
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
2218
2194
|
}) => number) & {
|
|
2219
2195
|
clearCache: () => void;
|
|
@@ -2227,7 +2203,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
2227
2203
|
resetResultsCount: () => void;
|
|
2228
2204
|
};
|
|
2229
2205
|
lastResult: () => number;
|
|
2230
|
-
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> & {
|
|
2231
2207
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
2232
2208
|
}) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) & {
|
|
2233
2209
|
clearCache: () => void;
|
|
@@ -2274,7 +2250,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
2274
2250
|
} & {
|
|
2275
2251
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
2276
2252
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
2277
|
-
}, ((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<{}> & {
|
|
2278
2254
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
2279
2255
|
}) => import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>) & {
|
|
2280
2256
|
clearCache: () => void;
|
|
@@ -2302,7 +2278,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
2302
2278
|
} & {
|
|
2303
2279
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
2304
2280
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
2305
|
-
}, ((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<{}> & {
|
|
2306
2282
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
2307
2283
|
}) => import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>) & {
|
|
2308
2284
|
clearCache: () => void;
|
|
@@ -2330,7 +2306,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
2330
2306
|
} & {
|
|
2331
2307
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
2332
2308
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
2333
|
-
}, ((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> & {
|
|
2334
2310
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
2335
2311
|
}) => Map<AxisId, ZoomData> | undefined) & {
|
|
2336
2312
|
clearCache: () => void;
|
|
@@ -2350,7 +2326,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
2350
2326
|
resetResultsCount: () => void;
|
|
2351
2327
|
};
|
|
2352
2328
|
lastResult: () => Map<AxisId, ZoomData> | undefined;
|
|
2353
|
-
dependencies: [(state: ChartState<[UseChartCartesianAxisSignature]>) => {
|
|
2329
|
+
dependencies: [(state: ChartState<[], [UseChartCartesianAxisSignature]>) => {
|
|
2354
2330
|
isInteracting: boolean;
|
|
2355
2331
|
zoomData: readonly ZoomData[];
|
|
2356
2332
|
} | undefined];
|
|
@@ -2361,7 +2337,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
2361
2337
|
} & {
|
|
2362
2338
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
2363
2339
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
2364
|
-
}, ((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> & {
|
|
2365
2341
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
2366
2342
|
}) => {
|
|
2367
2343
|
[x: string]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
|
|
@@ -2387,7 +2363,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
2387
2363
|
[x: string]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
|
|
2388
2364
|
[x: number]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
|
|
2389
2365
|
};
|
|
2390
|
-
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> & {
|
|
2391
2367
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
2392
2368
|
}) => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>) & {
|
|
2393
2369
|
clearCache: () => void;
|
|
@@ -2401,7 +2377,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
2401
2377
|
resetResultsCount: () => void;
|
|
2402
2378
|
};
|
|
2403
2379
|
lastResult: () => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>;
|
|
2404
|
-
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> & {
|
|
2405
2381
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
2406
2382
|
}) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) & {
|
|
2407
2383
|
clearCache: () => void;
|
|
@@ -2440,7 +2416,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
2440
2416
|
} & {
|
|
2441
2417
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
2442
2418
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
2443
|
-
}, ((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> & {
|
|
2444
2420
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
2445
2421
|
}) => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>) & {
|
|
2446
2422
|
clearCache: () => void;
|
|
@@ -2454,7 +2430,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
2454
2430
|
resetResultsCount: () => void;
|
|
2455
2431
|
};
|
|
2456
2432
|
lastResult: () => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>;
|
|
2457
|
-
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> & {
|
|
2458
2434
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
2459
2435
|
}) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) & {
|
|
2460
2436
|
clearCache: () => void;
|
|
@@ -2501,9 +2477,9 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
2501
2477
|
} & {
|
|
2502
2478
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
2503
2479
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
2504
|
-
}, ((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> & {
|
|
2505
2481
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
2506
|
-
} & Partial<
|
|
2482
|
+
} & Partial<{}>) => import("./zoom.types").GetZoomAxisFilters | undefined) & {
|
|
2507
2483
|
clearCache: () => void;
|
|
2508
2484
|
resultsCount: () => number;
|
|
2509
2485
|
resetResultsCount: () => void;
|
|
@@ -2515,9 +2491,9 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
2515
2491
|
resetResultsCount: () => void;
|
|
2516
2492
|
};
|
|
2517
2493
|
lastResult: () => import("./zoom.types").GetZoomAxisFilters | undefined;
|
|
2518
|
-
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> & {
|
|
2519
2495
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
2520
|
-
} & Partial<
|
|
2496
|
+
} & Partial<{}>) => ((axis: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>, axisIndex: number) => import("./useChartCartesianAxis.types").ExtremumFilter | null) | undefined) & {
|
|
2521
2497
|
clearCache: () => void;
|
|
2522
2498
|
resultsCount: () => number;
|
|
2523
2499
|
resetResultsCount: () => void;
|
|
@@ -2535,7 +2511,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
2535
2511
|
resetResultsCount: () => void;
|
|
2536
2512
|
};
|
|
2537
2513
|
lastResult: () => ((axis: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>, axisIndex: number) => import("./useChartCartesianAxis.types").ExtremumFilter | null) | undefined;
|
|
2538
|
-
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> & {
|
|
2539
2515
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
2540
2516
|
}) => Map<AxisId, ZoomData> | undefined) & {
|
|
2541
2517
|
clearCache: () => void;
|
|
@@ -2555,7 +2531,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
2555
2531
|
resetResultsCount: () => void;
|
|
2556
2532
|
};
|
|
2557
2533
|
lastResult: () => Map<AxisId, ZoomData> | undefined;
|
|
2558
|
-
dependencies: [(state: ChartState<[UseChartCartesianAxisSignature]>) => {
|
|
2534
|
+
dependencies: [(state: ChartState<[], [UseChartCartesianAxisSignature]>) => {
|
|
2559
2535
|
isInteracting: boolean;
|
|
2560
2536
|
zoomData: readonly ZoomData[];
|
|
2561
2537
|
} | undefined];
|
|
@@ -2566,7 +2542,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
2566
2542
|
} & {
|
|
2567
2543
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
2568
2544
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
2569
|
-
}, ((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> & {
|
|
2570
2546
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
2571
2547
|
}) => {
|
|
2572
2548
|
[x: string]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
|
|
@@ -2592,7 +2568,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
2592
2568
|
[x: string]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
|
|
2593
2569
|
[x: number]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
|
|
2594
2570
|
};
|
|
2595
|
-
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> & {
|
|
2596
2572
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
2597
2573
|
}) => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>) & {
|
|
2598
2574
|
clearCache: () => void;
|
|
@@ -2606,7 +2582,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
2606
2582
|
resetResultsCount: () => void;
|
|
2607
2583
|
};
|
|
2608
2584
|
lastResult: () => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>;
|
|
2609
|
-
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> & {
|
|
2610
2586
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
2611
2587
|
}) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) & {
|
|
2612
2588
|
clearCache: () => void;
|
|
@@ -2645,7 +2621,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
2645
2621
|
} & {
|
|
2646
2622
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
2647
2623
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
2648
|
-
}, ((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> & {
|
|
2649
2625
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
2650
2626
|
}) => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>) & {
|
|
2651
2627
|
clearCache: () => void;
|
|
@@ -2659,7 +2635,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
2659
2635
|
resetResultsCount: () => void;
|
|
2660
2636
|
};
|
|
2661
2637
|
lastResult: () => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>;
|
|
2662
|
-
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> & {
|
|
2663
2639
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
2664
2640
|
}) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) & {
|
|
2665
2641
|
clearCache: () => void;
|
|
@@ -2706,7 +2682,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
2706
2682
|
} & {
|
|
2707
2683
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
2708
2684
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
2709
|
-
}, ((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<{}> & {
|
|
2710
2686
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
2711
2687
|
}) => import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>) & {
|
|
2712
2688
|
clearCache: () => void;
|
|
@@ -2734,7 +2710,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
2734
2710
|
} & {
|
|
2735
2711
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
2736
2712
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
2737
|
-
}, ((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<{}> & {
|
|
2738
2714
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
2739
2715
|
}) => import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>) & {
|
|
2740
2716
|
clearCache: () => void;
|
|
@@ -2770,9 +2746,9 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
2770
2746
|
} & {
|
|
2771
2747
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
2772
2748
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
2773
|
-
}, ((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> & {
|
|
2774
2750
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
2775
|
-
} & Partial<
|
|
2751
|
+
} & Partial<{}>) => ((axis: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>, axisIndex: number) => import("./useChartCartesianAxis.types").ExtremumFilter | null) | undefined) & {
|
|
2776
2752
|
clearCache: () => void;
|
|
2777
2753
|
resultsCount: () => number;
|
|
2778
2754
|
resetResultsCount: () => void;
|
|
@@ -2790,7 +2766,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
2790
2766
|
resetResultsCount: () => void;
|
|
2791
2767
|
};
|
|
2792
2768
|
lastResult: () => ((axis: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>, axisIndex: number) => import("./useChartCartesianAxis.types").ExtremumFilter | null) | undefined;
|
|
2793
|
-
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> & {
|
|
2794
2770
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
2795
2771
|
}) => Map<AxisId, ZoomData> | undefined) & {
|
|
2796
2772
|
clearCache: () => void;
|
|
@@ -2810,7 +2786,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
2810
2786
|
resetResultsCount: () => void;
|
|
2811
2787
|
};
|
|
2812
2788
|
lastResult: () => Map<AxisId, ZoomData> | undefined;
|
|
2813
|
-
dependencies: [(state: ChartState<[UseChartCartesianAxisSignature]>) => {
|
|
2789
|
+
dependencies: [(state: ChartState<[], [UseChartCartesianAxisSignature]>) => {
|
|
2814
2790
|
isInteracting: boolean;
|
|
2815
2791
|
zoomData: readonly ZoomData[];
|
|
2816
2792
|
} | undefined];
|
|
@@ -2821,7 +2797,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
2821
2797
|
} & {
|
|
2822
2798
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
2823
2799
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
2824
|
-
}, ((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> & {
|
|
2825
2801
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
2826
2802
|
}) => {
|
|
2827
2803
|
[x: string]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
|
|
@@ -2847,7 +2823,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
2847
2823
|
[x: string]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
|
|
2848
2824
|
[x: number]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
|
|
2849
2825
|
};
|
|
2850
|
-
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> & {
|
|
2851
2827
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
2852
2828
|
}) => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>) & {
|
|
2853
2829
|
clearCache: () => void;
|
|
@@ -2861,7 +2837,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
2861
2837
|
resetResultsCount: () => void;
|
|
2862
2838
|
};
|
|
2863
2839
|
lastResult: () => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>;
|
|
2864
|
-
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> & {
|
|
2865
2841
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
2866
2842
|
}) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) & {
|
|
2867
2843
|
clearCache: () => void;
|
|
@@ -2900,7 +2876,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
2900
2876
|
} & {
|
|
2901
2877
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
2902
2878
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
2903
|
-
}, ((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> & {
|
|
2904
2880
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
2905
2881
|
}) => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>) & {
|
|
2906
2882
|
clearCache: () => void;
|
|
@@ -2914,7 +2890,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
2914
2890
|
resetResultsCount: () => void;
|
|
2915
2891
|
};
|
|
2916
2892
|
lastResult: () => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>;
|
|
2917
|
-
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> & {
|
|
2918
2894
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
2919
2895
|
}) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) & {
|
|
2920
2896
|
clearCache: () => void;
|
|
@@ -2961,7 +2937,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
2961
2937
|
} & {
|
|
2962
2938
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
2963
2939
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
2964
|
-
}, ((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<{}> & {
|
|
2965
2941
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
2966
2942
|
}) => import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>) & {
|
|
2967
2943
|
clearCache: () => void;
|
|
@@ -2989,7 +2965,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
2989
2965
|
} & {
|
|
2990
2966
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
2991
2967
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
2992
|
-
}, ((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<{}> & {
|
|
2993
2969
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
2994
2970
|
}) => import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>) & {
|
|
2995
2971
|
clearCache: () => void;
|
|
@@ -3025,7 +3001,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
3025
3001
|
} & {
|
|
3026
3002
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
3027
3003
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
3028
|
-
}, ((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> & {
|
|
3029
3005
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
3030
3006
|
}) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) & {
|
|
3031
3007
|
clearCache: () => void;
|
|
@@ -3056,7 +3032,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
3056
3032
|
} & {
|
|
3057
3033
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
3058
3034
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
3059
|
-
}, ((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> & {
|
|
3060
3036
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
3061
3037
|
}) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) & {
|
|
3062
3038
|
clearCache: () => void;
|