@mui/x-charts 8.0.0-beta.3 → 8.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1189) hide show
  1. package/BarChart/BarChart.js +663 -12
  2. package/BarChart/BarClipPath.js +14 -15
  3. package/BarChart/BarLabel/barLabelClasses.d.ts +5 -0
  4. package/BarChart/BarPlot.js +5 -2
  5. package/BarChart/barElementClasses.d.ts +5 -0
  6. package/BarChart/barElementClasses.js +1 -1
  7. package/BarChart/seriesConfig/getColor.js +6 -0
  8. package/CHANGELOG.md +282 -96
  9. package/ChartContainer/ChartContainer.js +1010 -23
  10. package/ChartDataProvider/ChartDataProvider.d.ts +1 -4
  11. package/ChartDataProvider/ChartDataProvider.js +18 -16
  12. package/ChartDataProvider/useChartDataProviderProps.d.ts +1 -3
  13. package/ChartDataProvider/useChartDataProviderProps.js +4 -8
  14. package/ChartsTooltip/ChartsAxisTooltipContent.js +4 -12
  15. package/ChartsTooltip/ChartsItemTooltipContent.js +43 -1
  16. package/ChartsTooltip/ChartsTooltipContainer.js +5 -1
  17. package/ChartsTooltip/ChartsTooltipTable.js +5 -5
  18. package/ChartsTooltip/index.d.ts +3 -1
  19. package/ChartsTooltip/index.js +14 -11
  20. package/ChartsTooltip/useAxisTooltip.d.ts +7 -6
  21. package/ChartsTooltip/useAxisTooltip.js +57 -2
  22. package/ChartsTooltip/useItemTooltip.d.ts +15 -11
  23. package/ChartsTooltip/useItemTooltip.js +48 -4
  24. package/Gauge/Gauge.js +10 -3
  25. package/Gauge/GaugeContainer.js +5 -0
  26. package/Gauge/GaugeValueArc.d.ts +7 -1
  27. package/Gauge/GaugeValueArc.js +60 -10
  28. package/Gauge/gaugeClasses.d.ts +1 -2
  29. package/Gauge/gaugeClasses.js +2 -3
  30. package/LineChart/AreaElement.d.ts +5 -0
  31. package/LineChart/AreaElement.js +1 -1
  32. package/LineChart/AreaPlot.js +2 -2
  33. package/LineChart/LineChart.js +663 -12
  34. package/LineChart/LineElement.d.ts +5 -0
  35. package/LineChart/LineElement.js +1 -1
  36. package/LineChart/LinePlot.js +2 -2
  37. package/LineChart/MarkPlot.js +2 -2
  38. package/LineChart/markElementClasses.d.ts +5 -0
  39. package/LineChart/markElementClasses.js +1 -1
  40. package/LineChart/seriesConfig/getColor.js +6 -0
  41. package/PieChart/PieArc.d.ts +5 -0
  42. package/PieChart/PieArc.js +1 -1
  43. package/PieChart/PieArcLabel.d.ts +5 -0
  44. package/PieChart/PieArcLabel.js +1 -1
  45. package/PieChart/PiePlot.js +2 -2
  46. package/RadarChart/RadarAxisHighlight/RadarAxisHighlight.d.ts +1 -8
  47. package/RadarChart/RadarAxisHighlight/RadarAxisHighlight.js +53 -15
  48. package/RadarChart/RadarAxisHighlight/radarAxisHighlightClasses.d.ts +0 -2
  49. package/RadarChart/RadarAxisHighlight/radarAxisHighlightClasses.js +1 -1
  50. package/RadarChart/RadarChart.d.ts +6 -4
  51. package/RadarChart/RadarChart.js +10 -13
  52. package/RadarChart/RadarDataProvider/RadarDataProvider.d.ts +1 -1
  53. package/RadarChart/RadarDataProvider/RadarDataProvider.js +1 -1
  54. package/RadarChart/RadarGrid/CircularRadarGrid.js +11 -7
  55. package/RadarChart/RadarGrid/CircularRadarStripes.d.ts +6 -0
  56. package/RadarChart/RadarGrid/CircularRadarStripes.js +38 -0
  57. package/RadarChart/RadarGrid/RadarGrid.js +52 -12
  58. package/RadarChart/RadarGrid/RadarGrid.types.d.ts +26 -1
  59. package/RadarChart/RadarGrid/SharpRadarGrid.js +11 -7
  60. package/RadarChart/RadarGrid/SharpRadarStripes.d.ts +6 -0
  61. package/RadarChart/RadarGrid/SharpRadarStripes.js +44 -0
  62. package/RadarChart/RadarGrid/radarGridClasses.d.ts +12 -0
  63. package/RadarChart/RadarGrid/radarGridClasses.js +25 -0
  64. package/RadarChart/RadarSeriesPlot/RadarSeriesArea.d.ts +16 -0
  65. package/RadarChart/RadarSeriesPlot/RadarSeriesArea.js +54 -7
  66. package/RadarChart/RadarSeriesPlot/RadarSeriesMarks.d.ts +16 -0
  67. package/RadarChart/RadarSeriesPlot/RadarSeriesMarks.js +59 -10
  68. package/RadarChart/RadarSeriesPlot/RadarSeriesPlot.js +21 -24
  69. package/RadarChart/RadarSeriesPlot/RadarSeriesPlot.types.d.ts +1 -2
  70. package/RadarChart/RadarSeriesPlot/index.d.ts +2 -2
  71. package/RadarChart/RadarSeriesPlot/index.js +14 -22
  72. package/RadarChart/RadarSeriesPlot/radarSeriesPlotClasses.d.ts +6 -2
  73. package/RadarChart/RadarSeriesPlot/radarSeriesPlotClasses.js +3 -1
  74. package/RadarChart/RadarSeriesPlot/useRadarSeriesData.d.ts +2 -1
  75. package/RadarChart/seriesConfig/index.js +3 -1
  76. package/RadarChart/seriesConfig/tooltip.d.ts +2 -1
  77. package/RadarChart/seriesConfig/tooltip.js +25 -10
  78. package/RadarChart/useRadarChartProps.d.ts +0 -2
  79. package/RadarChart/useRadarChartProps.js +4 -7
  80. package/ScatterChart/Scatter.d.ts +2 -1
  81. package/ScatterChart/ScatterChart.js +663 -12
  82. package/ScatterChart/seriesConfig/getColor.js +9 -0
  83. package/SparkLineChart/SparkLineChart.d.ts +3 -4
  84. package/SparkLineChart/SparkLineChart.js +662 -11
  85. package/context/ChartProvider/ChartProvider.d.ts +1 -1
  86. package/context/ChartProvider/ChartProvider.types.d.ts +1 -2
  87. package/esm/BarChart/BarChart.js +663 -12
  88. package/esm/BarChart/BarClipPath.js +14 -15
  89. package/esm/BarChart/BarLabel/barLabelClasses.d.ts +5 -0
  90. package/esm/BarChart/BarPlot.js +4 -1
  91. package/esm/BarChart/barElementClasses.d.ts +5 -0
  92. package/esm/BarChart/barElementClasses.js +1 -1
  93. package/esm/BarChart/seriesConfig/getColor.js +6 -0
  94. package/esm/ChartContainer/ChartContainer.js +1010 -23
  95. package/esm/ChartDataProvider/ChartDataProvider.d.ts +1 -4
  96. package/esm/ChartDataProvider/ChartDataProvider.js +18 -16
  97. package/esm/ChartDataProvider/useChartDataProviderProps.d.ts +1 -3
  98. package/esm/ChartDataProvider/useChartDataProviderProps.js +4 -8
  99. package/esm/ChartsTooltip/ChartsAxisTooltipContent.js +4 -12
  100. package/esm/ChartsTooltip/ChartsItemTooltipContent.js +44 -2
  101. package/esm/ChartsTooltip/ChartsTooltipContainer.js +5 -1
  102. package/esm/ChartsTooltip/ChartsTooltipTable.js +5 -5
  103. package/esm/ChartsTooltip/index.d.ts +3 -1
  104. package/esm/ChartsTooltip/index.js +1 -1
  105. package/esm/ChartsTooltip/useAxisTooltip.d.ts +7 -6
  106. package/esm/ChartsTooltip/useAxisTooltip.js +58 -3
  107. package/esm/ChartsTooltip/useItemTooltip.d.ts +15 -11
  108. package/esm/ChartsTooltip/useItemTooltip.js +45 -4
  109. package/esm/Gauge/Gauge.js +10 -3
  110. package/esm/Gauge/GaugeContainer.js +5 -0
  111. package/esm/Gauge/GaugeValueArc.d.ts +7 -1
  112. package/esm/Gauge/GaugeValueArc.js +61 -10
  113. package/esm/Gauge/gaugeClasses.d.ts +1 -2
  114. package/esm/Gauge/gaugeClasses.js +1 -2
  115. package/esm/LineChart/AreaElement.d.ts +5 -0
  116. package/esm/LineChart/AreaElement.js +1 -1
  117. package/esm/LineChart/AreaPlot.js +1 -1
  118. package/esm/LineChart/LineChart.js +663 -12
  119. package/esm/LineChart/LineElement.d.ts +5 -0
  120. package/esm/LineChart/LineElement.js +1 -1
  121. package/esm/LineChart/LinePlot.js +1 -1
  122. package/esm/LineChart/MarkPlot.js +1 -1
  123. package/esm/LineChart/markElementClasses.d.ts +5 -0
  124. package/esm/LineChart/markElementClasses.js +1 -1
  125. package/esm/LineChart/seriesConfig/getColor.js +6 -0
  126. package/esm/PieChart/PieArc.d.ts +5 -0
  127. package/esm/PieChart/PieArc.js +1 -1
  128. package/esm/PieChart/PieArcLabel.d.ts +5 -0
  129. package/esm/PieChart/PieArcLabel.js +1 -1
  130. package/esm/PieChart/PiePlot.js +1 -1
  131. package/esm/RadarChart/RadarAxisHighlight/RadarAxisHighlight.d.ts +1 -8
  132. package/esm/RadarChart/RadarAxisHighlight/RadarAxisHighlight.js +53 -15
  133. package/esm/RadarChart/RadarAxisHighlight/radarAxisHighlightClasses.d.ts +0 -2
  134. package/esm/RadarChart/RadarAxisHighlight/radarAxisHighlightClasses.js +1 -1
  135. package/esm/RadarChart/RadarChart.d.ts +6 -4
  136. package/esm/RadarChart/RadarChart.js +11 -14
  137. package/esm/RadarChart/RadarDataProvider/RadarDataProvider.d.ts +1 -1
  138. package/esm/RadarChart/RadarDataProvider/RadarDataProvider.js +1 -1
  139. package/esm/RadarChart/RadarGrid/CircularRadarGrid.js +11 -7
  140. package/esm/RadarChart/RadarGrid/CircularRadarStripes.d.ts +6 -0
  141. package/esm/RadarChart/RadarGrid/CircularRadarStripes.js +31 -0
  142. package/esm/RadarChart/RadarGrid/RadarGrid.js +53 -13
  143. package/esm/RadarChart/RadarGrid/RadarGrid.types.d.ts +26 -1
  144. package/esm/RadarChart/RadarGrid/SharpRadarGrid.js +11 -7
  145. package/esm/RadarChart/RadarGrid/SharpRadarStripes.d.ts +6 -0
  146. package/esm/RadarChart/RadarGrid/SharpRadarStripes.js +37 -0
  147. package/esm/RadarChart/RadarGrid/radarGridClasses.d.ts +12 -0
  148. package/esm/RadarChart/RadarGrid/radarGridClasses.js +15 -0
  149. package/esm/RadarChart/RadarSeriesPlot/RadarSeriesArea.d.ts +16 -0
  150. package/esm/RadarChart/RadarSeriesPlot/RadarSeriesArea.js +53 -7
  151. package/esm/RadarChart/RadarSeriesPlot/RadarSeriesMarks.d.ts +16 -0
  152. package/esm/RadarChart/RadarSeriesPlot/RadarSeriesMarks.js +58 -10
  153. package/esm/RadarChart/RadarSeriesPlot/RadarSeriesPlot.js +21 -24
  154. package/esm/RadarChart/RadarSeriesPlot/RadarSeriesPlot.types.d.ts +1 -2
  155. package/esm/RadarChart/RadarSeriesPlot/index.d.ts +2 -2
  156. package/esm/RadarChart/RadarSeriesPlot/index.js +2 -2
  157. package/esm/RadarChart/RadarSeriesPlot/radarSeriesPlotClasses.d.ts +6 -2
  158. package/esm/RadarChart/RadarSeriesPlot/radarSeriesPlotClasses.js +3 -1
  159. package/esm/RadarChart/RadarSeriesPlot/useRadarSeriesData.d.ts +2 -1
  160. package/esm/RadarChart/seriesConfig/index.js +2 -1
  161. package/esm/RadarChart/seriesConfig/tooltip.d.ts +2 -1
  162. package/esm/RadarChart/seriesConfig/tooltip.js +23 -9
  163. package/esm/RadarChart/useRadarChartProps.d.ts +0 -2
  164. package/esm/RadarChart/useRadarChartProps.js +4 -7
  165. package/esm/ScatterChart/Scatter.d.ts +2 -1
  166. package/esm/ScatterChart/ScatterChart.js +663 -12
  167. package/esm/ScatterChart/seriesConfig/getColor.js +9 -0
  168. package/esm/SparkLineChart/SparkLineChart.d.ts +3 -4
  169. package/esm/SparkLineChart/SparkLineChart.js +662 -11
  170. package/esm/context/ChartProvider/ChartProvider.d.ts +1 -1
  171. package/esm/context/ChartProvider/ChartProvider.types.d.ts +1 -2
  172. package/esm/hooks/animation/index.d.ts +1 -0
  173. package/esm/hooks/animation/index.js +1 -0
  174. package/esm/hooks/animation/useAnimate.d.ts +83 -0
  175. package/esm/hooks/animation/useAnimate.js +47 -0
  176. package/esm/hooks/animation/useAnimateArea.js +5 -8
  177. package/esm/hooks/animation/useAnimateBar.js +5 -11
  178. package/esm/hooks/animation/useAnimateBarLabel.js +5 -11
  179. package/esm/hooks/animation/useAnimateGaugeValueArc.d.ts +19 -0
  180. package/esm/hooks/animation/useAnimateGaugeValueArc.js +54 -0
  181. package/esm/hooks/animation/useAnimateLine.js +5 -8
  182. package/esm/hooks/animation/useAnimatePieArc.js +17 -25
  183. package/esm/hooks/animation/useAnimatePieArcLabel.js +14 -18
  184. package/esm/hooks/useAxisSystem.d.ts +8 -0
  185. package/esm/hooks/useAxisSystem.js +26 -0
  186. package/esm/hooks/useIsHydrated.js +1 -1
  187. package/{context/AnimationProvider → esm/hooks}/useSkipAnimation.d.ts +2 -2
  188. package/esm/hooks/useSkipAnimation.js +16 -0
  189. package/esm/index.js +1 -1
  190. package/{modern/internals/animation/useAnimate.d.ts → esm/internals/animation/useAnimateInternal.d.ts} +3 -1
  191. package/{modern/internals/animation/useAnimate.js → esm/internals/animation/useAnimateInternal.js} +3 -1
  192. package/esm/internals/domUtils.js +11 -6
  193. package/esm/internals/index.d.ts +0 -2
  194. package/esm/internals/index.js +0 -2
  195. package/esm/internals/isCartesian.d.ts +2 -7
  196. package/esm/internals/isCartesian.js +0 -3
  197. package/esm/internals/isPolar.d.ts +2 -7
  198. package/esm/internals/isPolar.js +0 -3
  199. package/esm/internals/plugins/allPlugins.d.ts +1 -6
  200. package/esm/internals/plugins/allPlugins.js +0 -2
  201. package/esm/internals/plugins/corePlugins/corePlugins.d.ts +1 -1
  202. package/esm/internals/plugins/corePlugins/corePlugins.js +2 -1
  203. package/esm/internals/plugins/corePlugins/useChartAnimation/index.d.ts +3 -0
  204. package/esm/internals/plugins/corePlugins/useChartAnimation/index.js +2 -0
  205. package/esm/internals/plugins/corePlugins/useChartAnimation/useChartAnimation.d.ts +3 -0
  206. package/esm/internals/plugins/corePlugins/useChartAnimation/useChartAnimation.js +88 -0
  207. package/esm/internals/plugins/corePlugins/useChartAnimation/useChartAnimation.selectors.d.ts +31 -0
  208. package/esm/internals/plugins/corePlugins/useChartAnimation/useChartAnimation.selectors.js +3 -0
  209. package/esm/internals/plugins/corePlugins/useChartAnimation/useChartAnimation.types.d.ts +39 -0
  210. package/esm/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.selectors.d.ts +23 -23
  211. package/esm/internals/plugins/corePlugins/useChartId/useChartId.selectors.d.ts +1 -1
  212. package/esm/internals/plugins/corePlugins/useChartSeries/useChartSeries.selectors.d.ts +2 -2
  213. package/esm/internals/plugins/corePlugins/useChartSeries/useColorProcessor.d.ts +2 -5
  214. package/esm/internals/plugins/corePlugins/useChartSeries/useColorProcessor.js +1 -0
  215. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/index.d.ts +1 -0
  216. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/index.js +1 -0
  217. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartAxisSize.selectors.d.ts +8 -8
  218. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxis.types.d.ts +7 -9
  219. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisLayout.selectors.d.ts +2 -2
  220. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisRendering.selectors.d.ts +121 -121
  221. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianInteraction.selectors.d.ts +5 -5
  222. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianInteraction.selectors.js +0 -5
  223. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/zoom.types.d.ts +10 -1
  224. package/esm/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.selectors.d.ts +23 -23
  225. package/esm/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.selectors.d.ts +9 -9
  226. package/esm/internals/plugins/featurePlugins/useChartPolarAxis/computeAxisValue.d.ts +1 -1
  227. package/esm/internals/plugins/featurePlugins/useChartPolarAxis/computeAxisValue.js +9 -3
  228. package/esm/internals/plugins/featurePlugins/useChartPolarAxis/getAxisIndex.d.ts +6 -0
  229. package/esm/internals/plugins/featurePlugins/useChartPolarAxis/{getAxisValue.js → getAxisIndex.js} +0 -12
  230. package/{modern/internals/plugins/featurePlugins/useChartCartesianAxis → esm/internals/plugins/featurePlugins/useChartPolarAxis}/getAxisTriggerTooltip.d.ts +2 -2
  231. package/{modern/internals/plugins/featurePlugins/useChartCartesianAxis → esm/internals/plugins/featurePlugins/useChartPolarAxis}/getAxisTriggerTooltip.js +2 -2
  232. package/esm/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarAxis.selectors.d.ts +106 -130
  233. package/esm/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarAxis.types.d.ts +3 -22
  234. package/esm/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarInteraction.selectors.d.ts +7 -3669
  235. package/esm/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarInteraction.selectors.js +65 -9
  236. package/esm/internals/plugins/featurePlugins/useChartVoronoi/useChartVoronoi.selectors.d.ts +1 -1
  237. package/esm/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.selectors.d.ts +1 -1
  238. package/esm/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.types.d.ts +0 -1
  239. package/esm/internals/plugins/models/seriesConfig/colorProcessor.types.d.ts +10 -1
  240. package/esm/internals/plugins/models/seriesConfig/polarExtremumGetter.types.d.ts +0 -4
  241. package/esm/internals/plugins/models/seriesConfig/tooltipGetter.types.d.ts +64 -5
  242. package/esm/internals/store/useCharts.d.ts +1 -1
  243. package/esm/internals/store/useSelector.js +1 -4
  244. package/esm/models/axis.d.ts +15 -3
  245. package/esm/models/axis.js +4 -0
  246. package/esm/models/index.d.ts +1 -1
  247. package/esm/models/seriesType/common.d.ts +1 -2
  248. package/esm/models/seriesType/index.d.ts +21 -1
  249. package/esm/models/seriesType/index.js +24 -0
  250. package/esm/models/seriesType/radar.d.ts +6 -2
  251. package/hooks/animation/index.d.ts +1 -0
  252. package/hooks/animation/index.js +11 -0
  253. package/hooks/animation/useAnimate.d.ts +83 -0
  254. package/hooks/animation/useAnimate.js +54 -0
  255. package/hooks/animation/useAnimateArea.js +5 -9
  256. package/hooks/animation/useAnimateBar.js +5 -11
  257. package/hooks/animation/useAnimateBarLabel.js +5 -11
  258. package/hooks/animation/useAnimateGaugeValueArc.d.ts +19 -0
  259. package/hooks/animation/useAnimateGaugeValueArc.js +60 -0
  260. package/hooks/animation/useAnimateLine.js +5 -9
  261. package/hooks/animation/useAnimatePieArc.js +17 -26
  262. package/hooks/animation/useAnimatePieArcLabel.js +14 -19
  263. package/hooks/useAxisSystem.d.ts +8 -0
  264. package/hooks/useAxisSystem.js +30 -0
  265. package/hooks/useIsHydrated.js +1 -1
  266. package/{esm/context/AnimationProvider → hooks}/useSkipAnimation.d.ts +2 -2
  267. package/hooks/useSkipAnimation.js +20 -0
  268. package/index.js +1 -1
  269. package/{esm/internals/animation/useAnimate.d.ts → internals/animation/useAnimateInternal.d.ts} +3 -1
  270. package/internals/animation/{useAnimate.js → useAnimateInternal.js} +4 -2
  271. package/internals/domUtils.js +11 -6
  272. package/internals/index.d.ts +0 -2
  273. package/internals/index.js +0 -12
  274. package/internals/isCartesian.d.ts +2 -7
  275. package/internals/isCartesian.js +0 -4
  276. package/internals/isPolar.d.ts +2 -7
  277. package/internals/isPolar.js +0 -4
  278. package/internals/plugins/allPlugins.d.ts +1 -6
  279. package/internals/plugins/allPlugins.js +1 -3
  280. package/internals/plugins/corePlugins/corePlugins.d.ts +1 -1
  281. package/internals/plugins/corePlugins/corePlugins.js +2 -1
  282. package/internals/plugins/corePlugins/useChartAnimation/index.d.ts +3 -0
  283. package/internals/plugins/corePlugins/useChartAnimation/index.js +27 -0
  284. package/internals/plugins/corePlugins/useChartAnimation/useChartAnimation.d.ts +3 -0
  285. package/internals/plugins/corePlugins/useChartAnimation/useChartAnimation.js +96 -0
  286. package/internals/plugins/corePlugins/useChartAnimation/useChartAnimation.selectors.d.ts +31 -0
  287. package/internals/plugins/corePlugins/useChartAnimation/useChartAnimation.selectors.js +9 -0
  288. package/internals/plugins/corePlugins/useChartAnimation/useChartAnimation.types.d.ts +39 -0
  289. package/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.selectors.d.ts +23 -23
  290. package/internals/plugins/corePlugins/useChartId/useChartId.selectors.d.ts +1 -1
  291. package/internals/plugins/corePlugins/useChartSeries/useChartSeries.selectors.d.ts +2 -2
  292. package/internals/plugins/corePlugins/useChartSeries/useColorProcessor.d.ts +2 -5
  293. package/internals/plugins/corePlugins/useChartSeries/useColorProcessor.js +1 -0
  294. package/internals/plugins/featurePlugins/useChartCartesianAxis/index.d.ts +1 -0
  295. package/internals/plugins/featurePlugins/useChartCartesianAxis/index.js +12 -0
  296. package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartAxisSize.selectors.d.ts +8 -8
  297. package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxis.types.d.ts +7 -9
  298. package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisLayout.selectors.d.ts +2 -2
  299. package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisRendering.selectors.d.ts +121 -121
  300. package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianInteraction.selectors.d.ts +5 -5
  301. package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianInteraction.selectors.js +1 -6
  302. package/internals/plugins/featurePlugins/useChartCartesianAxis/zoom.types.d.ts +10 -1
  303. package/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.selectors.d.ts +23 -23
  304. package/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.selectors.d.ts +9 -9
  305. package/internals/plugins/featurePlugins/useChartPolarAxis/computeAxisValue.d.ts +1 -1
  306. package/internals/plugins/featurePlugins/useChartPolarAxis/computeAxisValue.js +9 -3
  307. package/internals/plugins/featurePlugins/useChartPolarAxis/getAxisIndex.d.ts +6 -0
  308. package/internals/plugins/featurePlugins/useChartPolarAxis/{getAxisValue.js → getAxisIndex.js} +0 -13
  309. package/internals/plugins/featurePlugins/useChartPolarAxis/getAxisTriggerTooltip.d.ts +5 -0
  310. package/internals/plugins/featurePlugins/useChartPolarAxis/getAxisTriggerTooltip.js +28 -0
  311. package/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarAxis.selectors.d.ts +106 -130
  312. package/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarAxis.types.d.ts +3 -22
  313. package/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarInteraction.selectors.d.ts +7 -3669
  314. package/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarInteraction.selectors.js +66 -10
  315. package/internals/plugins/featurePlugins/useChartVoronoi/useChartVoronoi.selectors.d.ts +1 -1
  316. package/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.selectors.d.ts +1 -1
  317. package/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.types.d.ts +0 -1
  318. package/internals/plugins/models/seriesConfig/colorProcessor.types.d.ts +10 -1
  319. package/internals/plugins/models/seriesConfig/polarExtremumGetter.types.d.ts +0 -4
  320. package/internals/plugins/models/seriesConfig/tooltipGetter.types.d.ts +64 -5
  321. package/internals/store/useCharts.d.ts +1 -1
  322. package/internals/store/useSelector.js +1 -5
  323. package/models/axis.d.ts +15 -3
  324. package/models/axis.js +4 -0
  325. package/models/index.d.ts +1 -1
  326. package/models/seriesType/common.d.ts +1 -2
  327. package/models/seriesType/index.d.ts +21 -1
  328. package/models/seriesType/index.js +24 -0
  329. package/models/seriesType/radar.d.ts +6 -2
  330. package/package.json +5 -13
  331. package/RadarChart/RadarAxisHighlight/RadarAxisPointsHighlight.d.ts +0 -13
  332. package/RadarChart/RadarAxisHighlight/RadarAxisPointsHighlight.js +0 -54
  333. package/RadarChart/RadarAxisHighlight/RadarAxisSliceHighlight.d.ts +0 -13
  334. package/RadarChart/RadarAxisHighlight/RadarAxisSliceHighlight.js +0 -57
  335. package/context/AnimationProvider/Animation.types.d.ts +0 -15
  336. package/context/AnimationProvider/AnimationContext.d.ts +0 -4
  337. package/context/AnimationProvider/AnimationContext.js +0 -17
  338. package/context/AnimationProvider/AnimationProvider.d.ts +0 -4
  339. package/context/AnimationProvider/AnimationProvider.js +0 -58
  340. package/context/AnimationProvider/index.d.ts +0 -4
  341. package/context/AnimationProvider/index.js +0 -49
  342. package/context/AnimationProvider/useSkipAnimation.js +0 -25
  343. package/context/context.types.d.ts +0 -4
  344. package/context/context.types.js +0 -5
  345. package/esm/RadarChart/RadarAxisHighlight/RadarAxisPointsHighlight.d.ts +0 -13
  346. package/esm/RadarChart/RadarAxisHighlight/RadarAxisPointsHighlight.js +0 -47
  347. package/esm/RadarChart/RadarAxisHighlight/RadarAxisSliceHighlight.d.ts +0 -13
  348. package/esm/RadarChart/RadarAxisHighlight/RadarAxisSliceHighlight.js +0 -50
  349. package/esm/context/AnimationProvider/Animation.types.d.ts +0 -15
  350. package/esm/context/AnimationProvider/AnimationContext.d.ts +0 -4
  351. package/esm/context/AnimationProvider/AnimationContext.js +0 -10
  352. package/esm/context/AnimationProvider/AnimationProvider.d.ts +0 -4
  353. package/esm/context/AnimationProvider/AnimationProvider.js +0 -52
  354. package/esm/context/AnimationProvider/index.d.ts +0 -4
  355. package/esm/context/AnimationProvider/index.js +0 -4
  356. package/esm/context/AnimationProvider/useSkipAnimation.js +0 -20
  357. package/esm/context/context.types.d.ts +0 -4
  358. package/esm/context/context.types.js +0 -1
  359. package/esm/hooks/getValueToPositionMapper.d.ts +0 -8
  360. package/esm/hooks/getValueToPositionMapper.js +0 -15
  361. package/esm/hooks/useAxisEvents.d.ts +0 -0
  362. package/esm/hooks/useAxisEvents.js +0 -0
  363. package/esm/internals/animation/useAnimate.js +0 -74
  364. package/esm/internals/notNull.d.ts +0 -1
  365. package/esm/internals/notNull.js +0 -3
  366. package/esm/internals/plugins/featurePlugins/useChartPolarAxis/getAxisValue.d.ts +0 -11
  367. package/esm/internals/plugins/featurePlugins/useChartZAxis/utils.d.ts +0 -0
  368. package/esm/internals/plugins/featurePlugins/useChartZAxis/utils.js +0 -0
  369. package/esm/internals/useStringInterpolator.d.ts +0 -1
  370. package/esm/internals/useStringInterpolator.js +0 -21
  371. package/hooks/getValueToPositionMapper.d.ts +0 -8
  372. package/hooks/getValueToPositionMapper.js +0 -20
  373. package/hooks/useAxisEvents.d.ts +0 -0
  374. package/hooks/useAxisEvents.js +0 -1
  375. package/internals/animation/useAnimate.d.ts +0 -19
  376. package/internals/notNull.d.ts +0 -1
  377. package/internals/notNull.js +0 -9
  378. package/internals/plugins/featurePlugins/useChartPolarAxis/getAxisValue.d.ts +0 -11
  379. package/internals/plugins/featurePlugins/useChartZAxis/utils.d.ts +0 -0
  380. package/internals/plugins/featurePlugins/useChartZAxis/utils.js +0 -1
  381. package/internals/useStringInterpolator.d.ts +0 -1
  382. package/internals/useStringInterpolator.js +0 -30
  383. package/modern/BarChart/AnimatedBarElement.d.ts +0 -42
  384. package/modern/BarChart/AnimatedBarElement.js +0 -19
  385. package/modern/BarChart/BarChart.d.ts +0 -66
  386. package/modern/BarChart/BarChart.js +0 -323
  387. package/modern/BarChart/BarChart.plugins.d.ts +0 -7
  388. package/modern/BarChart/BarChart.plugins.js +0 -5
  389. package/modern/BarChart/BarClipPath.d.ts +0 -32
  390. package/modern/BarChart/BarClipPath.js +0 -109
  391. package/modern/BarChart/BarElement.d.ts +0 -39
  392. package/modern/BarChart/BarElement.js +0 -106
  393. package/modern/BarChart/BarLabel/BarLabel.d.ts +0 -34
  394. package/modern/BarChart/BarLabel/BarLabel.js +0 -80
  395. package/modern/BarChart/BarLabel/BarLabel.types.d.ts +0 -41
  396. package/modern/BarChart/BarLabel/BarLabel.types.js +0 -1
  397. package/modern/BarChart/BarLabel/BarLabelItem.d.ts +0 -78
  398. package/modern/BarChart/BarLabel/BarLabelItem.js +0 -131
  399. package/modern/BarChart/BarLabel/BarLabelPlot.d.ts +0 -13
  400. package/modern/BarChart/BarLabel/BarLabelPlot.js +0 -45
  401. package/modern/BarChart/BarLabel/barLabelClasses.d.ts +0 -15
  402. package/modern/BarChart/BarLabel/barLabelClasses.js +0 -20
  403. package/modern/BarChart/BarLabel/getBarLabel.d.ts +0 -10
  404. package/modern/BarChart/BarLabel/getBarLabel.js +0 -24
  405. package/modern/BarChart/BarLabel/index.d.ts +0 -6
  406. package/modern/BarChart/BarLabel/index.js +0 -2
  407. package/modern/BarChart/BarPlot.d.ts +0 -49
  408. package/modern/BarChart/BarPlot.js +0 -303
  409. package/modern/BarChart/barElementClasses.d.ts +0 -21
  410. package/modern/BarChart/barElementClasses.js +0 -19
  411. package/modern/BarChart/checkScaleErrors.d.ts +0 -10
  412. package/modern/BarChart/checkScaleErrors.js +0 -33
  413. package/modern/BarChart/getRadius.d.ts +0 -20
  414. package/modern/BarChart/getRadius.js +0 -30
  415. package/modern/BarChart/index.d.ts +0 -5
  416. package/modern/BarChart/index.js +0 -5
  417. package/modern/BarChart/seriesConfig/extremums.d.ts +0 -3
  418. package/modern/BarChart/seriesConfig/extremums.js +0 -75
  419. package/modern/BarChart/seriesConfig/getColor.d.ts +0 -3
  420. package/modern/BarChart/seriesConfig/getColor.js +0 -28
  421. package/modern/BarChart/seriesConfig/getSeriesWithDefaultValues.d.ts +0 -3
  422. package/modern/BarChart/seriesConfig/getSeriesWithDefaultValues.js +0 -8
  423. package/modern/BarChart/seriesConfig/index.d.ts +0 -2
  424. package/modern/BarChart/seriesConfig/index.js +0 -16
  425. package/modern/BarChart/seriesConfig/legend.d.ts +0 -3
  426. package/modern/BarChart/seriesConfig/legend.js +0 -22
  427. package/modern/BarChart/seriesConfig/seriesProcessor.d.ts +0 -3
  428. package/modern/BarChart/seriesConfig/seriesProcessor.js +0 -73
  429. package/modern/BarChart/seriesConfig/tooltip.d.ts +0 -4
  430. package/modern/BarChart/seriesConfig/tooltip.js +0 -37
  431. package/modern/BarChart/types.d.ts +0 -23
  432. package/modern/BarChart/types.js +0 -1
  433. package/modern/BarChart/useBarChartProps.d.ts +0 -34
  434. package/modern/BarChart/useBarChartProps.js +0 -136
  435. package/modern/ChartContainer/ChartContainer.d.ts +0 -35
  436. package/modern/ChartContainer/ChartContainer.js +0 -400
  437. package/modern/ChartContainer/index.d.ts +0 -1
  438. package/modern/ChartContainer/index.js +0 -1
  439. package/modern/ChartContainer/useChartContainerProps.d.ts +0 -15
  440. package/modern/ChartContainer/useChartContainerProps.js +0 -71
  441. package/modern/ChartDataProvider/ChartDataProvider.d.ts +0 -41
  442. package/modern/ChartDataProvider/ChartDataProvider.js +0 -98
  443. package/modern/ChartDataProvider/index.d.ts +0 -1
  444. package/modern/ChartDataProvider/index.js +0 -1
  445. package/modern/ChartDataProvider/useChartDataProviderProps.d.ts +0 -11
  446. package/modern/ChartDataProvider/useChartDataProviderProps.js +0 -31
  447. package/modern/ChartsAxis/ChartsAxis.d.ts +0 -28
  448. package/modern/ChartsAxis/ChartsAxis.js +0 -69
  449. package/modern/ChartsAxis/axisClasses.d.ts +0 -33
  450. package/modern/ChartsAxis/axisClasses.js +0 -6
  451. package/modern/ChartsAxis/index.d.ts +0 -2
  452. package/modern/ChartsAxis/index.js +0 -2
  453. package/modern/ChartsAxisHighlight/ChartsAxisHighlight.d.ts +0 -16
  454. package/modern/ChartsAxisHighlight/ChartsAxisHighlight.js +0 -50
  455. package/modern/ChartsAxisHighlight/ChartsAxisHighlight.types.d.ts +0 -5
  456. package/modern/ChartsAxisHighlight/ChartsAxisHighlight.types.js +0 -1
  457. package/modern/ChartsAxisHighlight/ChartsAxisHighlightPath.d.ts +0 -6
  458. package/modern/ChartsAxisHighlight/ChartsAxisHighlightPath.js +0 -34
  459. package/modern/ChartsAxisHighlight/ChartsXAxisHighlight.d.ts +0 -10
  460. package/modern/ChartsAxisHighlight/ChartsXAxisHighlight.js +0 -53
  461. package/modern/ChartsAxisHighlight/ChartsYAxisHighlight.d.ts +0 -10
  462. package/modern/ChartsAxisHighlight/ChartsYAxisHighlight.js +0 -53
  463. package/modern/ChartsAxisHighlight/chartsAxisHighlightClasses.d.ts +0 -7
  464. package/modern/ChartsAxisHighlight/chartsAxisHighlightClasses.js +0 -6
  465. package/modern/ChartsAxisHighlight/index.d.ts +0 -4
  466. package/modern/ChartsAxisHighlight/index.js +0 -4
  467. package/modern/ChartsClipPath/ChartsClipPath.d.ts +0 -20
  468. package/modern/ChartsClipPath/ChartsClipPath.js +0 -53
  469. package/modern/ChartsClipPath/index.d.ts +0 -1
  470. package/modern/ChartsClipPath/index.js +0 -1
  471. package/modern/ChartsGrid/ChartsGrid.d.ts +0 -30
  472. package/modern/ChartsGrid/ChartsGrid.js +0 -91
  473. package/modern/ChartsGrid/ChartsHorizontalGrid.d.ts +0 -14
  474. package/modern/ChartsGrid/ChartsHorizontalGrid.js +0 -37
  475. package/modern/ChartsGrid/ChartsVerticalGrid.d.ts +0 -14
  476. package/modern/ChartsGrid/ChartsVerticalGrid.js +0 -37
  477. package/modern/ChartsGrid/chartsGridClasses.d.ts +0 -13
  478. package/modern/ChartsGrid/chartsGridClasses.js +0 -6
  479. package/modern/ChartsGrid/index.d.ts +0 -2
  480. package/modern/ChartsGrid/index.js +0 -2
  481. package/modern/ChartsGrid/styledComponents.d.ts +0 -2
  482. package/modern/ChartsGrid/styledComponents.js +0 -22
  483. package/modern/ChartsLabel/ChartsLabel.d.ts +0 -18
  484. package/modern/ChartsLabel/ChartsLabel.js +0 -43
  485. package/modern/ChartsLabel/ChartsLabelGradient.d.ts +0 -41
  486. package/modern/ChartsLabel/ChartsLabelGradient.js +0 -135
  487. package/modern/ChartsLabel/ChartsLabelMark.d.ts +0 -31
  488. package/modern/ChartsLabel/ChartsLabelMark.js +0 -120
  489. package/modern/ChartsLabel/index.d.ts +0 -8
  490. package/modern/ChartsLabel/index.js +0 -4
  491. package/modern/ChartsLabel/labelClasses.d.ts +0 -8
  492. package/modern/ChartsLabel/labelClasses.js +0 -13
  493. package/modern/ChartsLabel/labelGradientClasses.d.ts +0 -16
  494. package/modern/ChartsLabel/labelGradientClasses.js +0 -18
  495. package/modern/ChartsLabel/labelMarkClasses.d.ts +0 -18
  496. package/modern/ChartsLabel/labelMarkClasses.js +0 -18
  497. package/modern/ChartsLegend/ChartsLegend.d.ts +0 -27
  498. package/modern/ChartsLegend/ChartsLegend.js +0 -138
  499. package/modern/ChartsLegend/ContinuousColorLegend.d.ts +0 -56
  500. package/modern/ChartsLegend/ContinuousColorLegend.js +0 -271
  501. package/modern/ChartsLegend/PiecewiseColorLegend.d.ts +0 -42
  502. package/modern/ChartsLegend/PiecewiseColorLegend.js +0 -267
  503. package/modern/ChartsLegend/chartsLegend.types.d.ts +0 -26
  504. package/modern/ChartsLegend/chartsLegend.types.js +0 -1
  505. package/modern/ChartsLegend/chartsLegendClasses.d.ts +0 -18
  506. package/modern/ChartsLegend/chartsLegendClasses.js +0 -20
  507. package/modern/ChartsLegend/colorLegend.types.d.ts +0 -13
  508. package/modern/ChartsLegend/colorLegend.types.js +0 -1
  509. package/modern/ChartsLegend/continuousColorLegendClasses.d.ts +0 -26
  510. package/modern/ChartsLegend/continuousColorLegendClasses.js +0 -23
  511. package/modern/ChartsLegend/direction.d.ts +0 -1
  512. package/modern/ChartsLegend/direction.js +0 -1
  513. package/modern/ChartsLegend/index.d.ts +0 -16
  514. package/modern/ChartsLegend/index.js +0 -12
  515. package/modern/ChartsLegend/legend.types.d.ts +0 -9
  516. package/modern/ChartsLegend/legend.types.js +0 -1
  517. package/modern/ChartsLegend/legendContext.types.d.ts +0 -55
  518. package/modern/ChartsLegend/legendContext.types.js +0 -1
  519. package/modern/ChartsLegend/onClickContextBuilder.d.ts +0 -2
  520. package/modern/ChartsLegend/onClickContextBuilder.js +0 -7
  521. package/modern/ChartsLegend/piecewiseColorDefaultLabelFormatter.d.ts +0 -2
  522. package/modern/ChartsLegend/piecewiseColorDefaultLabelFormatter.js +0 -9
  523. package/modern/ChartsLegend/piecewiseColorLegend.types.d.ts +0 -26
  524. package/modern/ChartsLegend/piecewiseColorLegend.types.js +0 -1
  525. package/modern/ChartsLegend/piecewiseColorLegendClasses.d.ts +0 -28
  526. package/modern/ChartsLegend/piecewiseColorLegendClasses.js +0 -23
  527. package/modern/ChartsLegend/useAxis.d.ts +0 -10
  528. package/modern/ChartsLegend/useAxis.js +0 -42
  529. package/modern/ChartsOverlay/ChartsLoadingOverlay.d.ts +0 -3
  530. package/modern/ChartsOverlay/ChartsLoadingOverlay.js +0 -36
  531. package/modern/ChartsOverlay/ChartsNoDataOverlay.d.ts +0 -3
  532. package/modern/ChartsOverlay/ChartsNoDataOverlay.js +0 -36
  533. package/modern/ChartsOverlay/ChartsOverlay.d.ts +0 -45
  534. package/modern/ChartsOverlay/ChartsOverlay.js +0 -33
  535. package/modern/ChartsOverlay/index.d.ts +0 -4
  536. package/modern/ChartsOverlay/index.js +0 -3
  537. package/modern/ChartsReferenceLine/ChartsReferenceLine.d.ts +0 -10
  538. package/modern/ChartsReferenceLine/ChartsReferenceLine.js +0 -76
  539. package/modern/ChartsReferenceLine/ChartsXReferenceLine.d.ts +0 -13
  540. package/modern/ChartsReferenceLine/ChartsXReferenceLine.js +0 -102
  541. package/modern/ChartsReferenceLine/ChartsYReferenceLine.d.ts +0 -13
  542. package/modern/ChartsReferenceLine/ChartsYReferenceLine.js +0 -102
  543. package/modern/ChartsReferenceLine/chartsReferenceLineClasses.d.ts +0 -15
  544. package/modern/ChartsReferenceLine/chartsReferenceLineClasses.js +0 -6
  545. package/modern/ChartsReferenceLine/common.d.ts +0 -41
  546. package/modern/ChartsReferenceLine/common.js +0 -20
  547. package/modern/ChartsReferenceLine/index.d.ts +0 -2
  548. package/modern/ChartsReferenceLine/index.js +0 -2
  549. package/modern/ChartsSurface/ChartsSurface.d.ts +0 -25
  550. package/modern/ChartsSurface/ChartsSurface.js +0 -100
  551. package/modern/ChartsSurface/index.d.ts +0 -1
  552. package/modern/ChartsSurface/index.js +0 -1
  553. package/modern/ChartsText/ChartsText.d.ts +0 -17
  554. package/modern/ChartsText/ChartsText.js +0 -89
  555. package/modern/ChartsText/defaultTextPlacement.d.ts +0 -9
  556. package/modern/ChartsText/defaultTextPlacement.js +0 -34
  557. package/modern/ChartsText/index.d.ts +0 -3
  558. package/modern/ChartsText/index.js +0 -1
  559. package/modern/ChartsTooltip/ChartTooltip.types.d.ts +0 -15
  560. package/modern/ChartsTooltip/ChartTooltip.types.js +0 -1
  561. package/modern/ChartsTooltip/ChartsAxisTooltipContent.d.ts +0 -15
  562. package/modern/ChartsTooltip/ChartsAxisTooltipContent.js +0 -88
  563. package/modern/ChartsTooltip/ChartsItemTooltipContent.d.ts +0 -15
  564. package/modern/ChartsTooltip/ChartsItemTooltipContent.js +0 -67
  565. package/modern/ChartsTooltip/ChartsTooltip.d.ts +0 -17
  566. package/modern/ChartsTooltip/ChartsTooltip.js +0 -199
  567. package/modern/ChartsTooltip/ChartsTooltipContainer.d.ts +0 -33
  568. package/modern/ChartsTooltip/ChartsTooltipContainer.js +0 -291
  569. package/modern/ChartsTooltip/ChartsTooltipTable.d.ts +0 -18
  570. package/modern/ChartsTooltip/ChartsTooltipTable.js +0 -99
  571. package/modern/ChartsTooltip/chartsTooltipClasses.d.ts +0 -26
  572. package/modern/ChartsTooltip/chartsTooltipClasses.js +0 -22
  573. package/modern/ChartsTooltip/index.d.ts +0 -12
  574. package/modern/ChartsTooltip/index.js +0 -11
  575. package/modern/ChartsTooltip/useAxesTooltip.d.ts +0 -7
  576. package/modern/ChartsTooltip/useAxesTooltip.js +0 -12
  577. package/modern/ChartsTooltip/useAxisTooltip.d.ts +0 -41
  578. package/modern/ChartsTooltip/useAxisTooltip.js +0 -122
  579. package/modern/ChartsTooltip/useItemTooltip.d.ts +0 -12
  580. package/modern/ChartsTooltip/useItemTooltip.js +0 -43
  581. package/modern/ChartsTooltip/utils.d.ts +0 -16
  582. package/modern/ChartsTooltip/utils.js +0 -84
  583. package/modern/ChartsXAxis/ChartsXAxis.d.ts +0 -16
  584. package/modern/ChartsXAxis/ChartsXAxis.js +0 -460
  585. package/modern/ChartsXAxis/index.d.ts +0 -1
  586. package/modern/ChartsXAxis/index.js +0 -1
  587. package/modern/ChartsYAxis/ChartsYAxis.d.ts +0 -16
  588. package/modern/ChartsYAxis/ChartsYAxis.js +0 -379
  589. package/modern/ChartsYAxis/index.d.ts +0 -1
  590. package/modern/ChartsYAxis/index.js +0 -1
  591. package/modern/Gauge/Gauge.d.ts +0 -10
  592. package/modern/Gauge/Gauge.js +0 -144
  593. package/modern/Gauge/GaugeContainer.d.ts +0 -10
  594. package/modern/Gauge/GaugeContainer.js +0 -174
  595. package/modern/Gauge/GaugeProvider.d.ts +0 -117
  596. package/modern/Gauge/GaugeProvider.js +0 -91
  597. package/modern/Gauge/GaugeReferenceArc.d.ts +0 -2
  598. package/modern/Gauge/GaugeReferenceArc.js +0 -37
  599. package/modern/Gauge/GaugeValueArc.d.ts +0 -2
  600. package/modern/Gauge/GaugeValueArc.js +0 -44
  601. package/modern/Gauge/GaugeValueText.d.ts +0 -15
  602. package/modern/Gauge/GaugeValueText.js +0 -71
  603. package/modern/Gauge/gaugeClasses.d.ts +0 -14
  604. package/modern/Gauge/gaugeClasses.js +0 -7
  605. package/modern/Gauge/index.d.ts +0 -7
  606. package/modern/Gauge/index.js +0 -7
  607. package/modern/Gauge/utils.d.ts +0 -24
  608. package/modern/Gauge/utils.js +0 -66
  609. package/modern/LineChart/AnimatedArea.d.ts +0 -26
  610. package/modern/LineChart/AnimatedArea.js +0 -61
  611. package/modern/LineChart/AnimatedLine.d.ts +0 -23
  612. package/modern/LineChart/AnimatedLine.js +0 -63
  613. package/modern/LineChart/AppearingMask.d.ts +0 -17
  614. package/modern/LineChart/AppearingMask.js +0 -48
  615. package/modern/LineChart/AreaElement.d.ts +0 -61
  616. package/modern/LineChart/AreaElement.js +0 -111
  617. package/modern/LineChart/AreaPlot.d.ts +0 -29
  618. package/modern/LineChart/AreaPlot.js +0 -215
  619. package/modern/LineChart/CircleMarkElement.d.ts +0 -30
  620. package/modern/LineChart/CircleMarkElement.js +0 -105
  621. package/modern/LineChart/LineChart.d.ts +0 -82
  622. package/modern/LineChart/LineChart.js +0 -323
  623. package/modern/LineChart/LineChart.plugins.d.ts +0 -7
  624. package/modern/LineChart/LineChart.plugins.js +0 -5
  625. package/modern/LineChart/LineElement.d.ts +0 -61
  626. package/modern/LineChart/LineElement.js +0 -111
  627. package/modern/LineChart/LineHighlightElement.d.ts +0 -36
  628. package/modern/LineChart/LineHighlightElement.js +0 -79
  629. package/modern/LineChart/LineHighlightPlot.d.ts +0 -36
  630. package/modern/LineChart/LineHighlightPlot.js +0 -121
  631. package/modern/LineChart/LinePlot.d.ts +0 -28
  632. package/modern/LineChart/LinePlot.js +0 -199
  633. package/modern/LineChart/MarkElement.d.ts +0 -32
  634. package/modern/LineChart/MarkElement.js +0 -113
  635. package/modern/LineChart/MarkPlot.d.ts +0 -42
  636. package/modern/LineChart/MarkPlot.js +0 -180
  637. package/modern/LineChart/index.d.ts +0 -13
  638. package/modern/LineChart/index.js +0 -12
  639. package/modern/LineChart/markElementClasses.d.ts +0 -23
  640. package/modern/LineChart/markElementClasses.js +0 -20
  641. package/modern/LineChart/seriesConfig/extremums.d.ts +0 -3
  642. package/modern/LineChart/seriesConfig/extremums.js +0 -57
  643. package/modern/LineChart/seriesConfig/getColor.d.ts +0 -3
  644. package/modern/LineChart/seriesConfig/getColor.js +0 -26
  645. package/modern/LineChart/seriesConfig/getSeriesWithDefaultValues.d.ts +0 -3
  646. package/modern/LineChart/seriesConfig/getSeriesWithDefaultValues.js +0 -8
  647. package/modern/LineChart/seriesConfig/index.d.ts +0 -2
  648. package/modern/LineChart/seriesConfig/index.js +0 -16
  649. package/modern/LineChart/seriesConfig/legend.d.ts +0 -3
  650. package/modern/LineChart/seriesConfig/legend.js +0 -22
  651. package/modern/LineChart/seriesConfig/seriesProcessor.d.ts +0 -3
  652. package/modern/LineChart/seriesConfig/seriesProcessor.js +0 -77
  653. package/modern/LineChart/seriesConfig/tooltip.d.ts +0 -4
  654. package/modern/LineChart/seriesConfig/tooltip.js +0 -31
  655. package/modern/LineChart/useLineChartProps.d.ts +0 -40
  656. package/modern/LineChart/useLineChartProps.js +0 -140
  657. package/modern/PieChart/PieArc.d.ts +0 -44
  658. package/modern/PieChart/PieArc.js +0 -121
  659. package/modern/PieChart/PieArcLabel.d.ts +0 -46
  660. package/modern/PieChart/PieArcLabel.js +0 -117
  661. package/modern/PieChart/PieArcLabelPlot.d.ts +0 -36
  662. package/modern/PieChart/PieArcLabelPlot.js +0 -179
  663. package/modern/PieChart/PieArcPlot.d.ts +0 -43
  664. package/modern/PieChart/PieArcPlot.js +0 -157
  665. package/modern/PieChart/PieChart.d.ts +0 -49
  666. package/modern/PieChart/PieChart.js +0 -201
  667. package/modern/PieChart/PieChart.plugins.d.ts +0 -5
  668. package/modern/PieChart/PieChart.plugins.js +0 -3
  669. package/modern/PieChart/PiePlot.d.ts +0 -32
  670. package/modern/PieChart/PiePlot.js +0 -163
  671. package/modern/PieChart/dataTransform/useTransformData.d.ts +0 -16
  672. package/modern/PieChart/dataTransform/useTransformData.js +0 -50
  673. package/modern/PieChart/getPieCoordinates.d.ts +0 -7
  674. package/modern/PieChart/getPieCoordinates.js +0 -19
  675. package/modern/PieChart/index.d.ts +0 -7
  676. package/modern/PieChart/index.js +0 -7
  677. package/modern/PieChart/seriesConfig/getColor.d.ts +0 -3
  678. package/modern/PieChart/seriesConfig/getColor.js +0 -6
  679. package/modern/PieChart/seriesConfig/getSeriesWithDefaultValues.d.ts +0 -3
  680. package/modern/PieChart/seriesConfig/getSeriesWithDefaultValues.js +0 -11
  681. package/modern/PieChart/seriesConfig/index.d.ts +0 -2
  682. package/modern/PieChart/seriesConfig/index.js +0 -12
  683. package/modern/PieChart/seriesConfig/legend.d.ts +0 -3
  684. package/modern/PieChart/seriesConfig/legend.js +0 -25
  685. package/modern/PieChart/seriesConfig/seriesProcessor.d.ts +0 -3
  686. package/modern/PieChart/seriesConfig/seriesProcessor.js +0 -49
  687. package/modern/PieChart/seriesConfig/tooltip.d.ts +0 -3
  688. package/modern/PieChart/seriesConfig/tooltip.js +0 -32
  689. package/modern/RadarChart/RadarAxisHighlight/RadarAxisHighlight.d.ts +0 -20
  690. package/modern/RadarChart/RadarAxisHighlight/RadarAxisHighlight.js +0 -42
  691. package/modern/RadarChart/RadarAxisHighlight/RadarAxisPointsHighlight.d.ts +0 -13
  692. package/modern/RadarChart/RadarAxisHighlight/RadarAxisPointsHighlight.js +0 -47
  693. package/modern/RadarChart/RadarAxisHighlight/RadarAxisSliceHighlight.d.ts +0 -13
  694. package/modern/RadarChart/RadarAxisHighlight/RadarAxisSliceHighlight.js +0 -50
  695. package/modern/RadarChart/RadarAxisHighlight/index.d.ts +0 -1
  696. package/modern/RadarChart/RadarAxisHighlight/index.js +0 -1
  697. package/modern/RadarChart/RadarAxisHighlight/radarAxisHighlightClasses.d.ts +0 -13
  698. package/modern/RadarChart/RadarAxisHighlight/radarAxisHighlightClasses.js +0 -6
  699. package/modern/RadarChart/RadarAxisHighlight/useRadarAxisHighlight.d.ts +0 -62
  700. package/modern/RadarChart/RadarAxisHighlight/useRadarAxisHighlight.js +0 -96
  701. package/modern/RadarChart/RadarChart.d.ts +0 -25
  702. package/modern/RadarChart/RadarChart.js +0 -177
  703. package/modern/RadarChart/RadarDataProvider/RadarDataProvider.d.ts +0 -30
  704. package/modern/RadarChart/RadarDataProvider/RadarDataProvider.js +0 -192
  705. package/modern/RadarChart/RadarDataProvider/index.d.ts +0 -1
  706. package/modern/RadarChart/RadarDataProvider/index.js +0 -1
  707. package/modern/RadarChart/RadarDataProvider/radar.types.d.ts +0 -43
  708. package/modern/RadarChart/RadarDataProvider/radar.types.js +0 -1
  709. package/modern/RadarChart/RadarGrid/CircularRadarGrid.d.ts +0 -6
  710. package/modern/RadarChart/RadarGrid/CircularRadarGrid.js +0 -36
  711. package/modern/RadarChart/RadarGrid/RadarGrid.d.ts +0 -7
  712. package/modern/RadarChart/RadarGrid/RadarGrid.js +0 -49
  713. package/modern/RadarChart/RadarGrid/RadarGrid.types.d.ts +0 -24
  714. package/modern/RadarChart/RadarGrid/RadarGrid.types.js +0 -1
  715. package/modern/RadarChart/RadarGrid/SharpRadarGrid.d.ts +0 -6
  716. package/modern/RadarChart/RadarGrid/SharpRadarGrid.js +0 -36
  717. package/modern/RadarChart/RadarGrid/index.d.ts +0 -2
  718. package/modern/RadarChart/RadarGrid/index.js +0 -2
  719. package/modern/RadarChart/RadarGrid/useRadarGridData.d.ts +0 -11
  720. package/modern/RadarChart/RadarGrid/useRadarGridData.js +0 -38
  721. package/modern/RadarChart/RadarMetricLabels/RadarMetricLabels.d.ts +0 -3
  722. package/modern/RadarChart/RadarMetricLabels/RadarMetricLabels.js +0 -35
  723. package/modern/RadarChart/RadarMetricLabels/index.d.ts +0 -1
  724. package/modern/RadarChart/RadarMetricLabels/index.js +0 -1
  725. package/modern/RadarChart/RadarMetricLabels/useRadarMetricData.d.ts +0 -8
  726. package/modern/RadarChart/RadarMetricLabels/useRadarMetricData.js +0 -35
  727. package/modern/RadarChart/RadarSeriesPlot/RadarSeriesArea.d.ts +0 -7
  728. package/modern/RadarChart/RadarSeriesPlot/RadarSeriesArea.js +0 -39
  729. package/modern/RadarChart/RadarSeriesPlot/RadarSeriesMarks.d.ts +0 -7
  730. package/modern/RadarChart/RadarSeriesPlot/RadarSeriesMarks.js +0 -38
  731. package/modern/RadarChart/RadarSeriesPlot/RadarSeriesPlot.d.ts +0 -7
  732. package/modern/RadarChart/RadarSeriesPlot/RadarSeriesPlot.js +0 -68
  733. package/modern/RadarChart/RadarSeriesPlot/RadarSeriesPlot.types.d.ts +0 -18
  734. package/modern/RadarChart/RadarSeriesPlot/RadarSeriesPlot.types.js +0 -1
  735. package/modern/RadarChart/RadarSeriesPlot/getAreaPath.d.ts +0 -4
  736. package/modern/RadarChart/RadarSeriesPlot/getAreaPath.js +0 -3
  737. package/modern/RadarChart/RadarSeriesPlot/index.d.ts +0 -6
  738. package/modern/RadarChart/RadarSeriesPlot/index.js +0 -4
  739. package/modern/RadarChart/RadarSeriesPlot/radarSeriesPlotClasses.d.ts +0 -12
  740. package/modern/RadarChart/RadarSeriesPlot/radarSeriesPlotClasses.js +0 -15
  741. package/modern/RadarChart/RadarSeriesPlot/useRadarSeriesData.d.ts +0 -27
  742. package/modern/RadarChart/RadarSeriesPlot/useRadarSeriesData.js +0 -62
  743. package/modern/RadarChart/index.d.ts +0 -8
  744. package/modern/RadarChart/index.js +0 -6
  745. package/modern/RadarChart/seriesConfig/extremums.d.ts +0 -3
  746. package/modern/RadarChart/seriesConfig/extremums.js +0 -18
  747. package/modern/RadarChart/seriesConfig/formatter.d.ts +0 -3
  748. package/modern/RadarChart/seriesConfig/formatter.js +0 -12
  749. package/modern/RadarChart/seriesConfig/getColor.d.ts +0 -3
  750. package/modern/RadarChart/seriesConfig/getColor.js +0 -4
  751. package/modern/RadarChart/seriesConfig/getSeriesWithDefaultValues.d.ts +0 -3
  752. package/modern/RadarChart/seriesConfig/getSeriesWithDefaultValues.js +0 -8
  753. package/modern/RadarChart/seriesConfig/index.d.ts +0 -2
  754. package/modern/RadarChart/seriesConfig/index.js +0 -15
  755. package/modern/RadarChart/seriesConfig/legend.d.ts +0 -3
  756. package/modern/RadarChart/seriesConfig/legend.js +0 -22
  757. package/modern/RadarChart/seriesConfig/tooltip.d.ts +0 -3
  758. package/modern/RadarChart/seriesConfig/tooltip.js +0 -25
  759. package/modern/RadarChart/useRadarChartProps.d.ts +0 -26
  760. package/modern/RadarChart/useRadarChartProps.js +0 -77
  761. package/modern/ScatterChart/Scatter.d.ts +0 -36
  762. package/modern/ScatterChart/Scatter.js +0 -134
  763. package/modern/ScatterChart/ScatterChart.d.ts +0 -70
  764. package/modern/ScatterChart/ScatterChart.js +0 -339
  765. package/modern/ScatterChart/ScatterChart.plugins.d.ts +0 -8
  766. package/modern/ScatterChart/ScatterChart.plugins.js +0 -6
  767. package/modern/ScatterChart/ScatterMarker.d.ts +0 -46
  768. package/modern/ScatterChart/ScatterMarker.js +0 -70
  769. package/modern/ScatterChart/ScatterMarker.types.d.ts +0 -24
  770. package/modern/ScatterChart/ScatterMarker.types.js +0 -1
  771. package/modern/ScatterChart/ScatterPlot.d.ts +0 -35
  772. package/modern/ScatterChart/ScatterPlot.js +0 -99
  773. package/modern/ScatterChart/index.d.ts +0 -5
  774. package/modern/ScatterChart/index.js +0 -5
  775. package/modern/ScatterChart/seriesConfig/extremums.d.ts +0 -3
  776. package/modern/ScatterChart/seriesConfig/extremums.js +0 -55
  777. package/modern/ScatterChart/seriesConfig/getColor.d.ts +0 -3
  778. package/modern/ScatterChart/seriesConfig/getColor.js +0 -43
  779. package/modern/ScatterChart/seriesConfig/getSeriesWithDefaultValues.d.ts +0 -3
  780. package/modern/ScatterChart/seriesConfig/getSeriesWithDefaultValues.js +0 -8
  781. package/modern/ScatterChart/seriesConfig/index.d.ts +0 -2
  782. package/modern/ScatterChart/seriesConfig/index.js +0 -15
  783. package/modern/ScatterChart/seriesConfig/legend.d.ts +0 -3
  784. package/modern/ScatterChart/seriesConfig/legend.js +0 -22
  785. package/modern/ScatterChart/seriesConfig/seriesProcessor.d.ts +0 -3
  786. package/modern/ScatterChart/seriesConfig/seriesProcessor.js +0 -33
  787. package/modern/ScatterChart/seriesConfig/tooltip.d.ts +0 -3
  788. package/modern/ScatterChart/seriesConfig/tooltip.js +0 -25
  789. package/modern/ScatterChart/useScatterChartProps.d.ts +0 -29
  790. package/modern/ScatterChart/useScatterChartProps.js +0 -102
  791. package/modern/SparkLineChart/SparkLineChart.d.ts +0 -101
  792. package/modern/SparkLineChart/SparkLineChart.js +0 -376
  793. package/modern/SparkLineChart/index.d.ts +0 -1
  794. package/modern/SparkLineChart/index.js +0 -1
  795. package/modern/colorPalettes/colorPalettes.d.ts +0 -16
  796. package/modern/colorPalettes/colorPalettes.js +0 -12
  797. package/modern/colorPalettes/index.d.ts +0 -1
  798. package/modern/colorPalettes/index.js +0 -1
  799. package/modern/constants/index.d.ts +0 -13
  800. package/modern/constants/index.js +0 -15
  801. package/modern/context/AnimationProvider/Animation.types.d.ts +0 -15
  802. package/modern/context/AnimationProvider/Animation.types.js +0 -1
  803. package/modern/context/AnimationProvider/AnimationContext.d.ts +0 -4
  804. package/modern/context/AnimationProvider/AnimationContext.js +0 -10
  805. package/modern/context/AnimationProvider/AnimationProvider.d.ts +0 -4
  806. package/modern/context/AnimationProvider/AnimationProvider.js +0 -52
  807. package/modern/context/AnimationProvider/index.d.ts +0 -4
  808. package/modern/context/AnimationProvider/index.js +0 -4
  809. package/modern/context/AnimationProvider/useSkipAnimation.d.ts +0 -6
  810. package/modern/context/AnimationProvider/useSkipAnimation.js +0 -20
  811. package/modern/context/ChartProvider/ChartContext.d.ts +0 -6
  812. package/modern/context/ChartProvider/ChartContext.js +0 -8
  813. package/modern/context/ChartProvider/ChartProvider.d.ts +0 -8
  814. package/modern/context/ChartProvider/ChartProvider.js +0 -40
  815. package/modern/context/ChartProvider/ChartProvider.types.d.ts +0 -39
  816. package/modern/context/ChartProvider/ChartProvider.types.js +0 -1
  817. package/modern/context/ChartProvider/index.d.ts +0 -3
  818. package/modern/context/ChartProvider/index.js +0 -3
  819. package/modern/context/ChartProvider/useChartContext.d.ts +0 -3
  820. package/modern/context/ChartProvider/useChartContext.js +0 -11
  821. package/modern/context/context.types.d.ts +0 -4
  822. package/modern/context/context.types.js +0 -1
  823. package/modern/context/index.d.ts +0 -1
  824. package/modern/context/index.js +0 -1
  825. package/modern/hooks/animation/index.d.ts +0 -6
  826. package/modern/hooks/animation/index.js +0 -6
  827. package/modern/hooks/animation/useAnimateArea.d.ts +0 -15
  828. package/modern/hooks/animation/useAnimateArea.js +0 -27
  829. package/modern/hooks/animation/useAnimateBar.d.ts +0 -17
  830. package/modern/hooks/animation/useAnimateBar.js +0 -56
  831. package/modern/hooks/animation/useAnimateBarLabel.d.ts +0 -19
  832. package/modern/hooks/animation/useAnimateBarLabel.js +0 -59
  833. package/modern/hooks/animation/useAnimateLine.d.ts +0 -14
  834. package/modern/hooks/animation/useAnimateLine.js +0 -26
  835. package/modern/hooks/animation/useAnimatePieArc.d.ts +0 -15
  836. package/modern/hooks/animation/useAnimatePieArc.js +0 -70
  837. package/modern/hooks/animation/useAnimatePieArcLabel.d.ts +0 -15
  838. package/modern/hooks/animation/useAnimatePieArcLabel.js +0 -72
  839. package/modern/hooks/getValueToPositionMapper.d.ts +0 -8
  840. package/modern/hooks/getValueToPositionMapper.js +0 -15
  841. package/modern/hooks/index.d.ts +0 -17
  842. package/modern/hooks/index.js +0 -17
  843. package/modern/hooks/useAxis.d.ts +0 -51
  844. package/modern/hooks/useAxis.js +0 -119
  845. package/modern/hooks/useAxisEvents.d.ts +0 -0
  846. package/modern/hooks/useAxisEvents.js +0 -0
  847. package/modern/hooks/useBarSeries.d.ts +0 -36
  848. package/modern/hooks/useBarSeries.js +0 -43
  849. package/modern/hooks/useChartGradientId.d.ts +0 -31
  850. package/modern/hooks/useChartGradientId.js +0 -47
  851. package/modern/hooks/useChartId.d.ts +0 -5
  852. package/modern/hooks/useChartId.js +0 -14
  853. package/modern/hooks/useColorScale.d.ts +0 -22
  854. package/modern/hooks/useColorScale.js +0 -37
  855. package/modern/hooks/useDrawingArea.d.ts +0 -16
  856. package/modern/hooks/useDrawingArea.js +0 -16
  857. package/modern/hooks/useInteractionItemProps.d.ts +0 -16
  858. package/modern/hooks/useInteractionItemProps.js +0 -87
  859. package/modern/hooks/useIsHydrated.d.ts +0 -4
  860. package/modern/hooks/useIsHydrated.js +0 -14
  861. package/modern/hooks/useItemHighlighted.d.ts +0 -23
  862. package/modern/hooks/useItemHighlighted.js +0 -23
  863. package/modern/hooks/useItemHighlightedGetter.d.ts +0 -12
  864. package/modern/hooks/useItemHighlightedGetter.js +0 -23
  865. package/modern/hooks/useLegend.d.ts +0 -13
  866. package/modern/hooks/useLegend.js +0 -30
  867. package/modern/hooks/useLineSeries.d.ts +0 -36
  868. package/modern/hooks/useLineSeries.js +0 -43
  869. package/modern/hooks/useMounted.d.ts +0 -1
  870. package/modern/hooks/useMounted.js +0 -18
  871. package/modern/hooks/usePieSeries.d.ts +0 -35
  872. package/modern/hooks/usePieSeries.js +0 -42
  873. package/modern/hooks/useRadarSeries.d.ts +0 -35
  874. package/modern/hooks/useRadarSeries.js +0 -42
  875. package/modern/hooks/useScale.d.ts +0 -24
  876. package/modern/hooks/useScale.js +0 -47
  877. package/modern/hooks/useScatterSeries.d.ts +0 -35
  878. package/modern/hooks/useScatterSeries.js +0 -42
  879. package/modern/hooks/useSeries.d.ts +0 -7
  880. package/modern/hooks/useSeries.js +0 -15
  881. package/modern/hooks/useSvgRef.d.ts +0 -6
  882. package/modern/hooks/useSvgRef.js +0 -15
  883. package/modern/hooks/useTicks.d.ts +0 -59
  884. package/modern/hooks/useTicks.js +0 -91
  885. package/modern/hooks/useZAxis.d.ts +0 -7
  886. package/modern/hooks/useZAxis.js +0 -27
  887. package/modern/index.d.ts +0 -26
  888. package/modern/index.js +0 -33
  889. package/modern/internals/angleConversion.d.ts +0 -2
  890. package/modern/internals/angleConversion.js +0 -12
  891. package/modern/internals/animation/Transition.d.ts +0 -37
  892. package/modern/internals/animation/Transition.js +0 -83
  893. package/modern/internals/animation/animation.d.ts +0 -4
  894. package/modern/internals/animation/animation.js +0 -4
  895. package/modern/internals/clampAngle.d.ts +0 -6
  896. package/modern/internals/clampAngle.js +0 -11
  897. package/modern/internals/cleanId.d.ts +0 -4
  898. package/modern/internals/cleanId.js +0 -6
  899. package/modern/internals/colorScale.d.ts +0 -5
  900. package/modern/internals/colorScale.js +0 -16
  901. package/modern/internals/components/AxisSharedComponents.d.ts +0 -1
  902. package/modern/internals/components/AxisSharedComponents.js +0 -26
  903. package/modern/internals/components/ChartsAxesGradients/ChartsAxesGradients.d.ts +0 -2
  904. package/modern/internals/components/ChartsAxesGradients/ChartsAxesGradients.js +0 -133
  905. package/modern/internals/components/ChartsAxesGradients/ChartsContinuousGradient.d.ts +0 -19
  906. package/modern/internals/components/ChartsAxesGradients/ChartsContinuousGradient.js +0 -56
  907. package/modern/internals/components/ChartsAxesGradients/ChartsContinuousGradientObjectBound.d.ts +0 -13
  908. package/modern/internals/components/ChartsAxesGradients/ChartsContinuousGradientObjectBound.js +0 -61
  909. package/modern/internals/components/ChartsAxesGradients/ChartsPiecewiseGradient.d.ts +0 -12
  910. package/modern/internals/components/ChartsAxesGradients/ChartsPiecewiseGradient.js +0 -46
  911. package/modern/internals/components/ChartsAxesGradients/index.d.ts +0 -1
  912. package/modern/internals/components/ChartsAxesGradients/index.js +0 -1
  913. package/modern/internals/components/ChartsWrapper/ChartsWrapper.d.ts +0 -18
  914. package/modern/internals/components/ChartsWrapper/ChartsWrapper.js +0 -66
  915. package/modern/internals/components/ChartsWrapper/index.d.ts +0 -1
  916. package/modern/internals/components/ChartsWrapper/index.js +0 -1
  917. package/modern/internals/configInit.d.ts +0 -16
  918. package/modern/internals/configInit.js +0 -38
  919. package/modern/internals/consumeSlots.d.ts +0 -48
  920. package/modern/internals/consumeSlots.js +0 -97
  921. package/modern/internals/consumeThemeProps.d.ts +0 -50
  922. package/modern/internals/consumeThemeProps.js +0 -70
  923. package/modern/internals/createSeriesSelectorOfType.d.ts +0 -4
  924. package/modern/internals/createSeriesSelectorOfType.js +0 -43
  925. package/modern/internals/defaultizeMargin.d.ts +0 -3
  926. package/modern/internals/defaultizeMargin.js +0 -15
  927. package/modern/internals/defaultizeValueFormatter.d.ts +0 -6
  928. package/modern/internals/defaultizeValueFormatter.js +0 -10
  929. package/modern/internals/degToRad.d.ts +0 -2
  930. package/modern/internals/degToRad.js +0 -4
  931. package/modern/internals/domUtils.d.ts +0 -18
  932. package/modern/internals/domUtils.js +0 -129
  933. package/modern/internals/ellipsize.d.ts +0 -20
  934. package/modern/internals/ellipsize.js +0 -53
  935. package/modern/internals/geometry.d.ts +0 -9
  936. package/modern/internals/geometry.js +0 -35
  937. package/modern/internals/getCurve.d.ts +0 -2
  938. package/modern/internals/getCurve.js +0 -27
  939. package/modern/internals/getGraphemeCount.d.ts +0 -4
  940. package/modern/internals/getGraphemeCount.js +0 -19
  941. package/modern/internals/getLabel.d.ts +0 -1
  942. package/modern/internals/getLabel.js +0 -3
  943. package/modern/internals/getPercentageValue.d.ts +0 -7
  944. package/modern/internals/getPercentageValue.js +0 -28
  945. package/modern/internals/getSVGPoint.d.ts +0 -6
  946. package/modern/internals/getSVGPoint.js +0 -11
  947. package/modern/internals/getScale.d.ts +0 -2
  948. package/modern/internals/getScale.js +0 -17
  949. package/modern/internals/getSymbol.d.ts +0 -2
  950. package/modern/internals/getSymbol.js +0 -21
  951. package/modern/internals/getWordsByLines.d.ts +0 -33
  952. package/modern/internals/getWordsByLines.js +0 -14
  953. package/modern/internals/index.d.ts +0 -49
  954. package/modern/internals/index.js +0 -63
  955. package/modern/internals/invertTextAnchor.d.ts +0 -2
  956. package/modern/internals/invertTextAnchor.js +0 -10
  957. package/modern/internals/isBandScale.d.ts +0 -5
  958. package/modern/internals/isBandScale.js +0 -3
  959. package/modern/internals/isCartesian.d.ts +0 -7
  960. package/modern/internals/isCartesian.js +0 -7
  961. package/modern/internals/isDefined.d.ts +0 -1
  962. package/modern/internals/isDefined.js +0 -3
  963. package/modern/internals/isInfinity.d.ts +0 -1
  964. package/modern/internals/isInfinity.js +0 -3
  965. package/modern/internals/isPolar.d.ts +0 -7
  966. package/modern/internals/isPolar.js +0 -7
  967. package/modern/internals/notNull.d.ts +0 -1
  968. package/modern/internals/notNull.js +0 -3
  969. package/modern/internals/plugins/allPlugins.d.ts +0 -14
  970. package/modern/internals/plugins/allPlugins.js +0 -10
  971. package/modern/internals/plugins/corePlugins/corePlugins.d.ts +0 -9
  972. package/modern/internals/plugins/corePlugins/corePlugins.js +0 -9
  973. package/modern/internals/plugins/corePlugins/index.d.ts +0 -2
  974. package/modern/internals/plugins/corePlugins/index.js +0 -1
  975. package/modern/internals/plugins/corePlugins/useChartDimensions/index.d.ts +0 -3
  976. package/modern/internals/plugins/corePlugins/useChartDimensions/index.js +0 -2
  977. package/modern/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.d.ts +0 -3
  978. package/modern/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.js +0 -196
  979. package/modern/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.selectors.d.ts +0 -708
  980. package/modern/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.selectors.js +0 -26
  981. package/modern/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.types.d.ts +0 -90
  982. package/modern/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.types.js +0 -1
  983. package/modern/internals/plugins/corePlugins/useChartId/index.d.ts +0 -3
  984. package/modern/internals/plugins/corePlugins/useChartId/index.js +0 -2
  985. package/modern/internals/plugins/corePlugins/useChartId/useChartId.d.ts +0 -3
  986. package/modern/internals/plugins/corePlugins/useChartId/useChartId.js +0 -32
  987. package/modern/internals/plugins/corePlugins/useChartId/useChartId.selectors.d.ts +0 -36
  988. package/modern/internals/plugins/corePlugins/useChartId/useChartId.selectors.js +0 -9
  989. package/modern/internals/plugins/corePlugins/useChartId/useChartId.types.d.ts +0 -20
  990. package/modern/internals/plugins/corePlugins/useChartId/useChartId.types.js +0 -1
  991. package/modern/internals/plugins/corePlugins/useChartId/useChartId.utils.d.ts +0 -1
  992. package/modern/internals/plugins/corePlugins/useChartId/useChartId.utils.js +0 -5
  993. package/modern/internals/plugins/corePlugins/useChartSeries/index.d.ts +0 -3
  994. package/modern/internals/plugins/corePlugins/useChartSeries/index.js +0 -2
  995. package/modern/internals/plugins/corePlugins/useChartSeries/processSeries.d.ts +0 -23
  996. package/modern/internals/plugins/corePlugins/useChartSeries/processSeries.js +0 -44
  997. package/modern/internals/plugins/corePlugins/useChartSeries/useChartSeries.d.ts +0 -3
  998. package/modern/internals/plugins/corePlugins/useChartSeries/useChartSeries.js +0 -71
  999. package/modern/internals/plugins/corePlugins/useChartSeries/useChartSeries.selectors.d.ts +0 -61
  1000. package/modern/internals/plugins/corePlugins/useChartSeries/useChartSeries.selectors.js +0 -4
  1001. package/modern/internals/plugins/corePlugins/useChartSeries/useChartSeries.types.d.ts +0 -51
  1002. package/modern/internals/plugins/corePlugins/useChartSeries/useChartSeries.types.js +0 -1
  1003. package/modern/internals/plugins/corePlugins/useChartSeries/useColorProcessor.d.ts +0 -8
  1004. package/modern/internals/plugins/corePlugins/useChartSeries/useColorProcessor.js +0 -21
  1005. package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/computeAxisValue.d.ts +0 -29
  1006. package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/computeAxisValue.js +0 -141
  1007. package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/createAxisFilterMapper.d.ts +0 -22
  1008. package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/createAxisFilterMapper.js +0 -63
  1009. package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/createZoomLookup.d.ts +0 -4
  1010. package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/createZoomLookup.js +0 -13
  1011. package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/defaultizeAxis.d.ts +0 -6
  1012. package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/defaultizeAxis.js +0 -92
  1013. package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/defaultizeZoom.d.ts +0 -4
  1014. package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/defaultizeZoom.js +0 -25
  1015. package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisExtremum.d.ts +0 -6
  1016. package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisExtremum.js +0 -22
  1017. package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisValue.d.ts +0 -11
  1018. package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisValue.js +0 -65
  1019. package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/index.d.ts +0 -8
  1020. package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/index.js +0 -7
  1021. package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/useChartAxisSize.selectors.d.ts +0 -216
  1022. package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/useChartAxisSize.selectors.js +0 -6
  1023. package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxis.d.ts +0 -3
  1024. package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxis.js +0 -170
  1025. package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxis.types.d.ts +0 -75
  1026. package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxis.types.js +0 -1
  1027. package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisLayout.selectors.d.ts +0 -70
  1028. package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisLayout.selectors.js +0 -4
  1029. package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisRendering.selectors.d.ts +0 -3082
  1030. package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisRendering.selectors.js +0 -89
  1031. package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianInteraction.selectors.d.ts +0 -9
  1032. package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianInteraction.selectors.js +0 -75
  1033. package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/useInternalIsZoomInteracting.d.ts +0 -10
  1034. package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/useInternalIsZoomInteracting.js +0 -19
  1035. package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/zoom.d.ts +0 -10
  1036. package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/zoom.js +0 -19
  1037. package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/zoom.types.d.ts +0 -68
  1038. package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/zoom.types.js +0 -1
  1039. package/modern/internals/plugins/featurePlugins/useChartHighlight/createIsFaded.d.ts +0 -3
  1040. package/modern/internals/plugins/featurePlugins/useChartHighlight/createIsFaded.js +0 -12
  1041. package/modern/internals/plugins/featurePlugins/useChartHighlight/createIsHighlighted.d.ts +0 -3
  1042. package/modern/internals/plugins/featurePlugins/useChartHighlight/createIsHighlighted.js +0 -12
  1043. package/modern/internals/plugins/featurePlugins/useChartHighlight/highlightConfig.types.d.ts +0 -20
  1044. package/modern/internals/plugins/featurePlugins/useChartHighlight/highlightConfig.types.js +0 -1
  1045. package/modern/internals/plugins/featurePlugins/useChartHighlight/index.d.ts +0 -4
  1046. package/modern/internals/plugins/featurePlugins/useChartHighlight/index.js +0 -2
  1047. package/modern/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.d.ts +0 -3
  1048. package/modern/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.js +0 -44
  1049. package/modern/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.selectors.d.ts +0 -634
  1050. package/modern/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.selectors.js +0 -31
  1051. package/modern/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.types.d.ts +0 -71
  1052. package/modern/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.types.js +0 -1
  1053. package/modern/internals/plugins/featurePlugins/useChartInteraction/index.d.ts +0 -3
  1054. package/modern/internals/plugins/featurePlugins/useChartInteraction/index.js +0 -2
  1055. package/modern/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.d.ts +0 -3
  1056. package/modern/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.js +0 -67
  1057. package/modern/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.selectors.d.ts +0 -242
  1058. package/modern/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.selectors.js +0 -8
  1059. package/modern/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.types.d.ts +0 -43
  1060. package/modern/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.types.js +0 -1
  1061. package/modern/internals/plugins/featurePlugins/useChartPolarAxis/computeAxisValue.d.ts +0 -27
  1062. package/modern/internals/plugins/featurePlugins/useChartPolarAxis/computeAxisValue.js +0 -128
  1063. package/modern/internals/plugins/featurePlugins/useChartPolarAxis/coordinateTransformation.d.ts +0 -12
  1064. package/modern/internals/plugins/featurePlugins/useChartPolarAxis/coordinateTransformation.js +0 -8
  1065. package/modern/internals/plugins/featurePlugins/useChartPolarAxis/defaultizeAxis.d.ts +0 -5
  1066. package/modern/internals/plugins/featurePlugins/useChartPolarAxis/defaultizeAxis.js +0 -24
  1067. package/modern/internals/plugins/featurePlugins/useChartPolarAxis/getAxisExtremum.d.ts +0 -5
  1068. package/modern/internals/plugins/featurePlugins/useChartPolarAxis/getAxisExtremum.js +0 -21
  1069. package/modern/internals/plugins/featurePlugins/useChartPolarAxis/getAxisValue.d.ts +0 -11
  1070. package/modern/internals/plugins/featurePlugins/useChartPolarAxis/getAxisValue.js +0 -38
  1071. package/modern/internals/plugins/featurePlugins/useChartPolarAxis/index.d.ts +0 -3
  1072. package/modern/internals/plugins/featurePlugins/useChartPolarAxis/index.js +0 -2
  1073. package/modern/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarAxis.d.ts +0 -3
  1074. package/modern/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarAxis.js +0 -164
  1075. package/modern/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarAxis.selectors.d.ts +0 -2056
  1076. package/modern/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarAxis.selectors.js +0 -30
  1077. package/modern/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarAxis.types.d.ts +0 -85
  1078. package/modern/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarAxis.types.js +0 -1
  1079. package/modern/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarInteraction.selectors.d.ts +0 -3669
  1080. package/modern/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarInteraction.selectors.js +0 -22
  1081. package/modern/internals/plugins/featurePlugins/useChartVoronoi/index.d.ts +0 -3
  1082. package/modern/internals/plugins/featurePlugins/useChartVoronoi/index.js +0 -2
  1083. package/modern/internals/plugins/featurePlugins/useChartVoronoi/useChartVoronoi.d.ts +0 -3
  1084. package/modern/internals/plugins/featurePlugins/useChartVoronoi/useChartVoronoi.js +0 -231
  1085. package/modern/internals/plugins/featurePlugins/useChartVoronoi/useChartVoronoi.selectors.d.ts +0 -29
  1086. package/modern/internals/plugins/featurePlugins/useChartVoronoi/useChartVoronoi.selectors.js +0 -3
  1087. package/modern/internals/plugins/featurePlugins/useChartVoronoi/useChartVoronoi.types.d.ts +0 -54
  1088. package/modern/internals/plugins/featurePlugins/useChartVoronoi/useChartVoronoi.types.js +0 -1
  1089. package/modern/internals/plugins/featurePlugins/useChartZAxis/index.d.ts +0 -3
  1090. package/modern/internals/plugins/featurePlugins/useChartZAxis/index.js +0 -2
  1091. package/modern/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.d.ts +0 -3
  1092. package/modern/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.js +0 -86
  1093. package/modern/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.selectors.d.ts +0 -45
  1094. package/modern/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.selectors.js +0 -3
  1095. package/modern/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.types.d.ts +0 -38
  1096. package/modern/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.types.js +0 -1
  1097. package/modern/internals/plugins/featurePlugins/useChartZAxis/utils.d.ts +0 -0
  1098. package/modern/internals/plugins/featurePlugins/useChartZAxis/utils.js +0 -0
  1099. package/modern/internals/plugins/models/chart.d.ts +0 -14
  1100. package/modern/internals/plugins/models/chart.js +0 -1
  1101. package/modern/internals/plugins/models/helpers.d.ts +0 -7
  1102. package/modern/internals/plugins/models/helpers.js +0 -1
  1103. package/modern/internals/plugins/models/index.d.ts +0 -4
  1104. package/modern/internals/plugins/models/index.js +0 -4
  1105. package/modern/internals/plugins/models/plugin.d.ts +0 -171
  1106. package/modern/internals/plugins/models/plugin.js +0 -1
  1107. package/modern/internals/plugins/models/seriesConfig/cartesianExtremumGetter.types.d.ts +0 -22
  1108. package/modern/internals/plugins/models/seriesConfig/cartesianExtremumGetter.types.js +0 -1
  1109. package/modern/internals/plugins/models/seriesConfig/colorProcessor.types.d.ts +0 -5
  1110. package/modern/internals/plugins/models/seriesConfig/colorProcessor.types.js +0 -1
  1111. package/modern/internals/plugins/models/seriesConfig/getSeriesWithDefaultValues.types.d.ts +0 -3
  1112. package/modern/internals/plugins/models/seriesConfig/getSeriesWithDefaultValues.types.js +0 -1
  1113. package/modern/internals/plugins/models/seriesConfig/index.d.ts +0 -8
  1114. package/modern/internals/plugins/models/seriesConfig/index.js +0 -8
  1115. package/modern/internals/plugins/models/seriesConfig/legendGetter.types.d.ts +0 -4
  1116. package/modern/internals/plugins/models/seriesConfig/legendGetter.types.js +0 -1
  1117. package/modern/internals/plugins/models/seriesConfig/polarExtremumGetter.types.d.ts +0 -16
  1118. package/modern/internals/plugins/models/seriesConfig/polarExtremumGetter.types.js +0 -1
  1119. package/modern/internals/plugins/models/seriesConfig/seriesConfig.types.d.ts +0 -24
  1120. package/modern/internals/plugins/models/seriesConfig/seriesConfig.types.js +0 -1
  1121. package/modern/internals/plugins/models/seriesConfig/seriesProcessor.types.d.ts +0 -16
  1122. package/modern/internals/plugins/models/seriesConfig/seriesProcessor.types.js +0 -1
  1123. package/modern/internals/plugins/models/seriesConfig/tooltipGetter.types.d.ts +0 -13
  1124. package/modern/internals/plugins/models/seriesConfig/tooltipGetter.types.js +0 -1
  1125. package/modern/internals/plugins/utils/ChartStore.d.ts +0 -13
  1126. package/modern/internals/plugins/utils/ChartStore.js +0 -24
  1127. package/modern/internals/plugins/utils/selectors.d.ts +0 -10
  1128. package/modern/internals/plugins/utils/selectors.js +0 -37
  1129. package/modern/internals/shallowEqual.d.ts +0 -8
  1130. package/modern/internals/shallowEqual.js +0 -31
  1131. package/modern/internals/sliceUntil.d.ts +0 -4
  1132. package/modern/internals/sliceUntil.js +0 -22
  1133. package/modern/internals/stackSeries.d.ts +0 -25
  1134. package/modern/internals/stackSeries.js +0 -94
  1135. package/modern/internals/store/extractPluginParamsFromProps.d.ts +0 -13
  1136. package/modern/internals/store/extractPluginParamsFromProps.js +0 -28
  1137. package/modern/internals/store/useChartModels.d.ts +0 -7
  1138. package/modern/internals/store/useChartModels.js +0 -64
  1139. package/modern/internals/store/useCharts.d.ts +0 -25
  1140. package/modern/internals/store/useCharts.js +0 -85
  1141. package/modern/internals/store/useCharts.types.d.ts +0 -5
  1142. package/modern/internals/store/useCharts.types.js +0 -1
  1143. package/modern/internals/store/useSelector.d.ts +0 -4
  1144. package/modern/internals/store/useSelector.js +0 -9
  1145. package/modern/internals/store/useStore.d.ts +0 -5
  1146. package/modern/internals/store/useStore.js +0 -9
  1147. package/modern/internals/ts-generic.d.ts +0 -3
  1148. package/modern/internals/ts-generic.js +0 -1
  1149. package/modern/internals/useStringInterpolator.d.ts +0 -1
  1150. package/modern/internals/useStringInterpolator.js +0 -21
  1151. package/modern/models/axis.d.ts +0 -396
  1152. package/modern/models/axis.js +0 -19
  1153. package/modern/models/colorMapping.d.ts +0 -46
  1154. package/modern/models/colorMapping.js +0 -1
  1155. package/modern/models/curve.d.ts +0 -6
  1156. package/modern/models/curve.js +0 -1
  1157. package/modern/models/index.d.ts +0 -6
  1158. package/modern/models/index.js +0 -5
  1159. package/modern/models/position.d.ts +0 -10
  1160. package/modern/models/position.js +0 -1
  1161. package/modern/models/seriesType/bar.d.ts +0 -38
  1162. package/modern/models/seriesType/bar.js +0 -1
  1163. package/modern/models/seriesType/common.d.ts +0 -60
  1164. package/modern/models/seriesType/common.js +0 -1
  1165. package/modern/models/seriesType/config.d.ts +0 -91
  1166. package/modern/models/seriesType/config.js +0 -1
  1167. package/modern/models/seriesType/index.d.ts +0 -16
  1168. package/modern/models/seriesType/index.js +0 -17
  1169. package/modern/models/seriesType/line.d.ts +0 -104
  1170. package/modern/models/seriesType/line.js +0 -1
  1171. package/modern/models/seriesType/pie.d.ts +0 -166
  1172. package/modern/models/seriesType/pie.js +0 -1
  1173. package/modern/models/seriesType/radar.d.ts +0 -24
  1174. package/modern/models/seriesType/radar.js +0 -1
  1175. package/modern/models/seriesType/scatter.d.ts +0 -63
  1176. package/modern/models/seriesType/scatter.js +0 -1
  1177. package/modern/models/stacking.d.ts +0 -2
  1178. package/modern/models/stacking.js +0 -1
  1179. package/modern/models/z-axis.d.ts +0 -22
  1180. package/modern/models/z-axis.js +0 -1
  1181. package/modern/package.json +0 -1
  1182. package/modern/themeAugmentation/components.d.ts +0 -62
  1183. package/modern/themeAugmentation/index.d.ts +0 -3
  1184. package/modern/themeAugmentation/index.js +0 -0
  1185. package/modern/themeAugmentation/overrides.d.ts +0 -34
  1186. package/modern/themeAugmentation/props.d.ts +0 -34
  1187. package/tsconfig.build.tsbuildinfo +0 -1
  1188. /package/esm/{context/AnimationProvider/Animation.types.js → internals/plugins/corePlugins/useChartAnimation/useChartAnimation.types.js} +0 -0
  1189. /package/{context/AnimationProvider/Animation.types.js → internals/plugins/corePlugins/useChartAnimation/useChartAnimation.types.js} +0 -0
@@ -1,3082 +0,0 @@
1
- import { UseChartCartesianAxisSignature } from "./useChartCartesianAxis.types.js";
2
- import { ChartState } from "../../models/chart.js";
3
- import { ZoomData } from "./zoom.types.js";
4
- import { AxisId } from "../../../../models/axis.js";
5
- export declare const createZoomMap: (zoom: readonly ZoomData[]) => Map<AxisId, ZoomData>;
6
- /**
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
- */
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("./useChartCartesianAxis.types").UseChartCartesianAxisState & Partial<{}> & {
10
- cacheKey: import("../../models").ChartStateCacheKey;
11
- }) => boolean | undefined) & {
12
- clearCache: () => void;
13
- resultsCount: () => number;
14
- resetResultsCount: () => void;
15
- } & {
16
- resultFunc: (resultFuncArgs_0: {
17
- isInteracting: boolean;
18
- zoomData: readonly ZoomData[];
19
- } | undefined) => boolean | undefined;
20
- memoizedResultFunc: ((resultFuncArgs_0: {
21
- isInteracting: boolean;
22
- zoomData: readonly ZoomData[];
23
- } | undefined) => boolean | undefined) & {
24
- clearCache: () => void;
25
- resultsCount: () => number;
26
- resetResultsCount: () => void;
27
- };
28
- lastResult: () => boolean | undefined;
29
- dependencies: [(state: ChartState<[UseChartCartesianAxisSignature]>) => {
30
- isInteracting: boolean;
31
- zoomData: readonly ZoomData[];
32
- } | undefined];
33
- recomputations: () => number;
34
- resetRecomputations: () => void;
35
- dependencyRecomputations: () => number;
36
- resetDependencyRecomputations: () => void;
37
- } & {
38
- memoize: typeof import("reselect").weakMapMemoize;
39
- argsMemoize: typeof import("reselect").weakMapMemoize;
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> & {
42
- cacheKey: import("../../models").ChartStateCacheKey;
43
- }) => {
44
- [x: string]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
45
- [x: number]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
46
- }) & {
47
- clearCache: () => void;
48
- resultsCount: () => number;
49
- resetResultsCount: () => void;
50
- } & {
51
- resultFunc: (resultFuncArgs_0: Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>, resultFuncArgs_1: Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>) => {
52
- [x: string]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
53
- [x: number]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
54
- };
55
- memoizedResultFunc: ((resultFuncArgs_0: Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>, resultFuncArgs_1: Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>) => {
56
- [x: string]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
57
- [x: number]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
58
- }) & {
59
- clearCache: () => void;
60
- resultsCount: () => number;
61
- resetResultsCount: () => void;
62
- };
63
- lastResult: () => {
64
- [x: string]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
65
- [x: number]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
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> & {
68
- cacheKey: import("../../models").ChartStateCacheKey;
69
- }) => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>) & {
70
- clearCache: () => void;
71
- resultsCount: () => number;
72
- resetResultsCount: () => void;
73
- } & {
74
- resultFunc: (resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>;
75
- memoizedResultFunc: ((resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>) & {
76
- clearCache: () => void;
77
- resultsCount: () => number;
78
- resetResultsCount: () => void;
79
- };
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> & {
82
- cacheKey: import("../../models").ChartStateCacheKey;
83
- }) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) & {
84
- clearCache: () => void;
85
- resultsCount: () => number;
86
- resetResultsCount: () => void;
87
- } & {
88
- resultFunc: (resultFuncArgs_0: {
89
- x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
90
- y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
91
- } | undefined) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined;
92
- memoizedResultFunc: ((resultFuncArgs_0: {
93
- x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
94
- y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
95
- } | undefined) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) & {
96
- clearCache: () => void;
97
- resultsCount: () => number;
98
- resetResultsCount: () => void;
99
- };
100
- lastResult: () => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined;
101
- dependencies: [(state: ChartState<[], [UseChartCartesianAxisSignature]>) => {
102
- x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
103
- y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
104
- } | undefined];
105
- recomputations: () => number;
106
- resetRecomputations: () => void;
107
- dependencyRecomputations: () => number;
108
- resetDependencyRecomputations: () => void;
109
- } & {
110
- memoize: typeof import("reselect").weakMapMemoize;
111
- argsMemoize: typeof import("reselect").weakMapMemoize;
112
- }];
113
- recomputations: () => number;
114
- resetRecomputations: () => void;
115
- dependencyRecomputations: () => number;
116
- resetDependencyRecomputations: () => void;
117
- } & {
118
- memoize: typeof import("reselect").weakMapMemoize;
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> & {
121
- cacheKey: import("../../models").ChartStateCacheKey;
122
- }) => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>) & {
123
- clearCache: () => void;
124
- resultsCount: () => number;
125
- resetResultsCount: () => void;
126
- } & {
127
- resultFunc: (resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>;
128
- memoizedResultFunc: ((resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>) & {
129
- clearCache: () => void;
130
- resultsCount: () => number;
131
- resetResultsCount: () => void;
132
- };
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> & {
135
- cacheKey: import("../../models").ChartStateCacheKey;
136
- }) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) & {
137
- clearCache: () => void;
138
- resultsCount: () => number;
139
- resetResultsCount: () => void;
140
- } & {
141
- resultFunc: (resultFuncArgs_0: {
142
- x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
143
- y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
144
- } | undefined) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined;
145
- memoizedResultFunc: ((resultFuncArgs_0: {
146
- x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
147
- y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
148
- } | undefined) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) & {
149
- clearCache: () => void;
150
- resultsCount: () => number;
151
- resetResultsCount: () => void;
152
- };
153
- lastResult: () => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined;
154
- dependencies: [(state: ChartState<[], [UseChartCartesianAxisSignature]>) => {
155
- x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
156
- y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
157
- } | undefined];
158
- recomputations: () => number;
159
- resetRecomputations: () => void;
160
- dependencyRecomputations: () => number;
161
- resetDependencyRecomputations: () => void;
162
- } & {
163
- memoize: typeof import("reselect").weakMapMemoize;
164
- argsMemoize: typeof import("reselect").weakMapMemoize;
165
- }];
166
- recomputations: () => number;
167
- resetRecomputations: () => void;
168
- dependencyRecomputations: () => number;
169
- resetDependencyRecomputations: () => void;
170
- } & {
171
- memoize: typeof import("reselect").weakMapMemoize;
172
- argsMemoize: typeof import("reselect").weakMapMemoize;
173
- }];
174
- recomputations: () => number;
175
- resetRecomputations: () => void;
176
- dependencyRecomputations: () => number;
177
- resetDependencyRecomputations: () => void;
178
- } & {
179
- memoize: typeof import("reselect").weakMapMemoize;
180
- argsMemoize: typeof import("reselect").weakMapMemoize;
181
- };
182
- /**
183
- * The only interesting selectors that merge axis data and zoom if provided.
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> & {
186
- cacheKey: import("../../models").ChartStateCacheKey;
187
- } & Partial<{}> & import("./useChartCartesianAxis.types").UseChartCartesianAxisState) => import("./computeAxisValue").ComputeResult<import("../../..").ChartsXAxisProps>) & {
188
- clearCache: () => void;
189
- resultsCount: () => number;
190
- resetResultsCount: () => void;
191
- } & {
192
- resultFunc: (resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined, resultFuncArgs_1: {
193
- width: number;
194
- left: number;
195
- right: number;
196
- height: number;
197
- top: number;
198
- bottom: number;
199
- }, resultFuncArgs_2: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>, resultFuncArgs_3: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>, resultFuncArgs_4: Map<AxisId, ZoomData> | undefined, resultFuncArgs_5: {
200
- [x: string]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
201
- [x: number]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
202
- }, resultFuncArgs_6: import("./zoom.types").GetZoomAxisFilters | undefined) => import("./computeAxisValue").ComputeResult<import("../../..").ChartsXAxisProps>;
203
- memoizedResultFunc: ((resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined, resultFuncArgs_1: {
204
- width: number;
205
- left: number;
206
- right: number;
207
- height: number;
208
- top: number;
209
- bottom: number;
210
- }, resultFuncArgs_2: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>, resultFuncArgs_3: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>, resultFuncArgs_4: Map<AxisId, ZoomData> | undefined, resultFuncArgs_5: {
211
- [x: string]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
212
- [x: number]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
213
- }, resultFuncArgs_6: import("./zoom.types").GetZoomAxisFilters | undefined) => import("./computeAxisValue").ComputeResult<import("../../..").ChartsXAxisProps>) & {
214
- clearCache: () => void;
215
- resultsCount: () => number;
216
- resetResultsCount: () => void;
217
- };
218
- lastResult: () => import("./computeAxisValue").ComputeResult<import("../../..").ChartsXAxisProps>;
219
- dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
220
- cacheKey: import("../../models").ChartStateCacheKey;
221
- }) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) & {
222
- clearCache: () => void;
223
- resultsCount: () => number;
224
- resetResultsCount: () => void;
225
- } & {
226
- resultFunc: (resultFuncArgs_0: {
227
- x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
228
- y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
229
- } | undefined) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined;
230
- memoizedResultFunc: ((resultFuncArgs_0: {
231
- x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
232
- y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
233
- } | undefined) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) & {
234
- clearCache: () => void;
235
- resultsCount: () => number;
236
- resetResultsCount: () => void;
237
- };
238
- lastResult: () => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined;
239
- dependencies: [(state: ChartState<[], [UseChartCartesianAxisSignature]>) => {
240
- x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
241
- y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
242
- } | undefined];
243
- recomputations: () => number;
244
- resetRecomputations: () => void;
245
- dependencyRecomputations: () => number;
246
- resetDependencyRecomputations: () => void;
247
- } & {
248
- memoize: typeof import("reselect").weakMapMemoize;
249
- argsMemoize: typeof import("reselect").weakMapMemoize;
250
- }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
251
- cacheKey: import("../../models").ChartStateCacheKey;
252
- } & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState>) => {
253
- width: number;
254
- left: number;
255
- right: number;
256
- height: number;
257
- top: number;
258
- bottom: number;
259
- }) & {
260
- clearCache: () => void;
261
- resultsCount: () => number;
262
- resetResultsCount: () => void;
263
- } & {
264
- resultFunc: (resultFuncArgs_0: number, resultFuncArgs_1: number, resultFuncArgs_2: number, resultFuncArgs_3: number, resultFuncArgs_4: number, resultFuncArgs_5: number, resultFuncArgs_6: number, resultFuncArgs_7: number, resultFuncArgs_8: number, resultFuncArgs_9: number) => {
265
- width: number;
266
- left: number;
267
- right: number;
268
- height: number;
269
- top: number;
270
- bottom: number;
271
- };
272
- memoizedResultFunc: ((resultFuncArgs_0: number, resultFuncArgs_1: number, resultFuncArgs_2: number, resultFuncArgs_3: number, resultFuncArgs_4: number, resultFuncArgs_5: number, resultFuncArgs_6: number, resultFuncArgs_7: number, resultFuncArgs_8: number, resultFuncArgs_9: number) => {
273
- width: number;
274
- left: number;
275
- right: number;
276
- height: number;
277
- top: number;
278
- bottom: number;
279
- }) & {
280
- clearCache: () => void;
281
- resultsCount: () => number;
282
- resetResultsCount: () => void;
283
- };
284
- lastResult: () => {
285
- width: number;
286
- left: number;
287
- right: number;
288
- height: number;
289
- top: number;
290
- bottom: number;
291
- };
292
- dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
293
- cacheKey: import("../../models").ChartStateCacheKey;
294
- }) => number) & {
295
- clearCache: () => void;
296
- resultsCount: () => number;
297
- resetResultsCount: () => void;
298
- } & {
299
- resultFunc: (resultFuncArgs_0: {
300
- margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
301
- width: number;
302
- height: number;
303
- propsWidth: number | undefined;
304
- propsHeight: number | undefined;
305
- }) => number;
306
- memoizedResultFunc: ((resultFuncArgs_0: {
307
- margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
308
- width: number;
309
- height: number;
310
- propsWidth: number | undefined;
311
- propsHeight: number | undefined;
312
- }) => number) & {
313
- clearCache: () => void;
314
- resultsCount: () => number;
315
- resetResultsCount: () => void;
316
- };
317
- lastResult: () => number;
318
- dependencies: [import("../../..").ChartRootSelector<import("../../..").UseChartDimensionsSignature>];
319
- recomputations: () => number;
320
- resetRecomputations: () => void;
321
- dependencyRecomputations: () => number;
322
- resetDependencyRecomputations: () => void;
323
- } & {
324
- memoize: typeof import("reselect").weakMapMemoize;
325
- argsMemoize: typeof import("reselect").weakMapMemoize;
326
- }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
327
- cacheKey: import("../../models").ChartStateCacheKey;
328
- }) => number) & {
329
- clearCache: () => void;
330
- resultsCount: () => number;
331
- resetResultsCount: () => void;
332
- } & {
333
- resultFunc: (resultFuncArgs_0: {
334
- margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
335
- width: number;
336
- height: number;
337
- propsWidth: number | undefined;
338
- propsHeight: number | undefined;
339
- }) => number;
340
- memoizedResultFunc: ((resultFuncArgs_0: {
341
- margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
342
- width: number;
343
- height: number;
344
- propsWidth: number | undefined;
345
- propsHeight: number | undefined;
346
- }) => number) & {
347
- clearCache: () => void;
348
- resultsCount: () => number;
349
- resetResultsCount: () => void;
350
- };
351
- lastResult: () => number;
352
- dependencies: [import("../../..").ChartRootSelector<import("../../..").UseChartDimensionsSignature>];
353
- recomputations: () => number;
354
- resetRecomputations: () => void;
355
- dependencyRecomputations: () => number;
356
- resetDependencyRecomputations: () => void;
357
- } & {
358
- memoize: typeof import("reselect").weakMapMemoize;
359
- argsMemoize: typeof import("reselect").weakMapMemoize;
360
- }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
361
- cacheKey: import("../../models").ChartStateCacheKey;
362
- }) => number) & {
363
- clearCache: () => void;
364
- resultsCount: () => number;
365
- resetResultsCount: () => void;
366
- } & {
367
- resultFunc: (resultFuncArgs_0: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) => number;
368
- memoizedResultFunc: ((resultFuncArgs_0: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) => number) & {
369
- clearCache: () => void;
370
- resultsCount: () => number;
371
- resetResultsCount: () => void;
372
- };
373
- lastResult: () => number;
374
- dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
375
- cacheKey: import("../../models").ChartStateCacheKey;
376
- }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) & {
377
- clearCache: () => void;
378
- resultsCount: () => number;
379
- resetResultsCount: () => void;
380
- } & {
381
- resultFunc: (resultFuncArgs_0: {
382
- margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
383
- width: number;
384
- height: number;
385
- propsWidth: number | undefined;
386
- propsHeight: number | undefined;
387
- }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
388
- memoizedResultFunc: ((resultFuncArgs_0: {
389
- margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
390
- width: number;
391
- height: number;
392
- propsWidth: number | undefined;
393
- propsHeight: number | undefined;
394
- }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) & {
395
- clearCache: () => void;
396
- resultsCount: () => number;
397
- resetResultsCount: () => void;
398
- };
399
- lastResult: () => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
400
- dependencies: [import("../../..").ChartRootSelector<import("../../..").UseChartDimensionsSignature>];
401
- recomputations: () => number;
402
- resetRecomputations: () => void;
403
- dependencyRecomputations: () => number;
404
- resetDependencyRecomputations: () => void;
405
- } & {
406
- memoize: typeof import("reselect").weakMapMemoize;
407
- argsMemoize: typeof import("reselect").weakMapMemoize;
408
- }];
409
- recomputations: () => number;
410
- resetRecomputations: () => void;
411
- dependencyRecomputations: () => number;
412
- resetDependencyRecomputations: () => void;
413
- } & {
414
- memoize: typeof import("reselect").weakMapMemoize;
415
- argsMemoize: typeof import("reselect").weakMapMemoize;
416
- }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
417
- cacheKey: import("../../models").ChartStateCacheKey;
418
- }) => number) & {
419
- clearCache: () => void;
420
- resultsCount: () => number;
421
- resetResultsCount: () => void;
422
- } & {
423
- resultFunc: (resultFuncArgs_0: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) => number;
424
- memoizedResultFunc: ((resultFuncArgs_0: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) => number) & {
425
- clearCache: () => void;
426
- resultsCount: () => number;
427
- resetResultsCount: () => void;
428
- };
429
- lastResult: () => number;
430
- dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
431
- cacheKey: import("../../models").ChartStateCacheKey;
432
- }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) & {
433
- clearCache: () => void;
434
- resultsCount: () => number;
435
- resetResultsCount: () => void;
436
- } & {
437
- resultFunc: (resultFuncArgs_0: {
438
- margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
439
- width: number;
440
- height: number;
441
- propsWidth: number | undefined;
442
- propsHeight: number | undefined;
443
- }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
444
- memoizedResultFunc: ((resultFuncArgs_0: {
445
- margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
446
- width: number;
447
- height: number;
448
- propsWidth: number | undefined;
449
- propsHeight: number | undefined;
450
- }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) & {
451
- clearCache: () => void;
452
- resultsCount: () => number;
453
- resetResultsCount: () => void;
454
- };
455
- lastResult: () => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
456
- dependencies: [import("../../..").ChartRootSelector<import("../../..").UseChartDimensionsSignature>];
457
- recomputations: () => number;
458
- resetRecomputations: () => void;
459
- dependencyRecomputations: () => number;
460
- resetDependencyRecomputations: () => void;
461
- } & {
462
- memoize: typeof import("reselect").weakMapMemoize;
463
- argsMemoize: typeof import("reselect").weakMapMemoize;
464
- }];
465
- recomputations: () => number;
466
- resetRecomputations: () => void;
467
- dependencyRecomputations: () => number;
468
- resetDependencyRecomputations: () => void;
469
- } & {
470
- memoize: typeof import("reselect").weakMapMemoize;
471
- argsMemoize: typeof import("reselect").weakMapMemoize;
472
- }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
473
- cacheKey: import("../../models").ChartStateCacheKey;
474
- }) => number) & {
475
- clearCache: () => void;
476
- resultsCount: () => number;
477
- resetResultsCount: () => void;
478
- } & {
479
- resultFunc: (resultFuncArgs_0: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) => number;
480
- memoizedResultFunc: ((resultFuncArgs_0: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) => number) & {
481
- clearCache: () => void;
482
- resultsCount: () => number;
483
- resetResultsCount: () => void;
484
- };
485
- lastResult: () => number;
486
- dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
487
- cacheKey: import("../../models").ChartStateCacheKey;
488
- }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) & {
489
- clearCache: () => void;
490
- resultsCount: () => number;
491
- resetResultsCount: () => void;
492
- } & {
493
- resultFunc: (resultFuncArgs_0: {
494
- margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
495
- width: number;
496
- height: number;
497
- propsWidth: number | undefined;
498
- propsHeight: number | undefined;
499
- }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
500
- memoizedResultFunc: ((resultFuncArgs_0: {
501
- margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
502
- width: number;
503
- height: number;
504
- propsWidth: number | undefined;
505
- propsHeight: number | undefined;
506
- }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) & {
507
- clearCache: () => void;
508
- resultsCount: () => number;
509
- resetResultsCount: () => void;
510
- };
511
- lastResult: () => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
512
- dependencies: [import("../../..").ChartRootSelector<import("../../..").UseChartDimensionsSignature>];
513
- recomputations: () => number;
514
- resetRecomputations: () => void;
515
- dependencyRecomputations: () => number;
516
- resetDependencyRecomputations: () => void;
517
- } & {
518
- memoize: typeof import("reselect").weakMapMemoize;
519
- argsMemoize: typeof import("reselect").weakMapMemoize;
520
- }];
521
- recomputations: () => number;
522
- resetRecomputations: () => void;
523
- dependencyRecomputations: () => number;
524
- resetDependencyRecomputations: () => void;
525
- } & {
526
- memoize: typeof import("reselect").weakMapMemoize;
527
- argsMemoize: typeof import("reselect").weakMapMemoize;
528
- }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
529
- cacheKey: import("../../models").ChartStateCacheKey;
530
- }) => number) & {
531
- clearCache: () => void;
532
- resultsCount: () => number;
533
- resetResultsCount: () => void;
534
- } & {
535
- resultFunc: (resultFuncArgs_0: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) => number;
536
- memoizedResultFunc: ((resultFuncArgs_0: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) => number) & {
537
- clearCache: () => void;
538
- resultsCount: () => number;
539
- resetResultsCount: () => void;
540
- };
541
- lastResult: () => number;
542
- dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
543
- cacheKey: import("../../models").ChartStateCacheKey;
544
- }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) & {
545
- clearCache: () => void;
546
- resultsCount: () => number;
547
- resetResultsCount: () => void;
548
- } & {
549
- resultFunc: (resultFuncArgs_0: {
550
- margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
551
- width: number;
552
- height: number;
553
- propsWidth: number | undefined;
554
- propsHeight: number | undefined;
555
- }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
556
- memoizedResultFunc: ((resultFuncArgs_0: {
557
- margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
558
- width: number;
559
- height: number;
560
- propsWidth: number | undefined;
561
- propsHeight: number | undefined;
562
- }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) & {
563
- clearCache: () => void;
564
- resultsCount: () => number;
565
- resetResultsCount: () => void;
566
- };
567
- lastResult: () => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
568
- dependencies: [import("../../..").ChartRootSelector<import("../../..").UseChartDimensionsSignature>];
569
- recomputations: () => number;
570
- resetRecomputations: () => void;
571
- dependencyRecomputations: () => number;
572
- resetDependencyRecomputations: () => void;
573
- } & {
574
- memoize: typeof import("reselect").weakMapMemoize;
575
- argsMemoize: typeof import("reselect").weakMapMemoize;
576
- }];
577
- recomputations: () => number;
578
- resetRecomputations: () => void;
579
- dependencyRecomputations: () => number;
580
- resetDependencyRecomputations: () => void;
581
- } & {
582
- memoize: typeof import("reselect").weakMapMemoize;
583
- argsMemoize: typeof import("reselect").weakMapMemoize;
584
- }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
585
- cacheKey: import("../../models").ChartStateCacheKey;
586
- }) => number) & {
587
- clearCache: () => void;
588
- resultsCount: () => number;
589
- resetResultsCount: () => void;
590
- } & {
591
- resultFunc: (resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) => number;
592
- memoizedResultFunc: ((resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) => number) & {
593
- clearCache: () => void;
594
- resultsCount: () => number;
595
- resetResultsCount: () => void;
596
- };
597
- lastResult: () => number;
598
- dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
599
- cacheKey: import("../../models").ChartStateCacheKey;
600
- }) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) & {
601
- clearCache: () => void;
602
- resultsCount: () => number;
603
- resetResultsCount: () => void;
604
- } & {
605
- resultFunc: (resultFuncArgs_0: {
606
- x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
607
- y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
608
- } | undefined) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined;
609
- memoizedResultFunc: ((resultFuncArgs_0: {
610
- x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
611
- y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
612
- } | undefined) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) & {
613
- clearCache: () => void;
614
- resultsCount: () => number;
615
- resetResultsCount: () => void;
616
- };
617
- lastResult: () => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined;
618
- dependencies: [(state: ChartState<[], [UseChartCartesianAxisSignature]>) => {
619
- x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
620
- y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
621
- } | undefined];
622
- recomputations: () => number;
623
- resetRecomputations: () => void;
624
- dependencyRecomputations: () => number;
625
- resetDependencyRecomputations: () => void;
626
- } & {
627
- memoize: typeof import("reselect").weakMapMemoize;
628
- argsMemoize: typeof import("reselect").weakMapMemoize;
629
- }];
630
- recomputations: () => number;
631
- resetRecomputations: () => void;
632
- dependencyRecomputations: () => number;
633
- resetDependencyRecomputations: () => void;
634
- } & {
635
- memoize: typeof import("reselect").weakMapMemoize;
636
- argsMemoize: typeof import("reselect").weakMapMemoize;
637
- }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
638
- cacheKey: import("../../models").ChartStateCacheKey;
639
- }) => number) & {
640
- clearCache: () => void;
641
- resultsCount: () => number;
642
- resetResultsCount: () => void;
643
- } & {
644
- resultFunc: (resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) => number;
645
- memoizedResultFunc: ((resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) => number) & {
646
- clearCache: () => void;
647
- resultsCount: () => number;
648
- resetResultsCount: () => void;
649
- };
650
- lastResult: () => number;
651
- dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
652
- cacheKey: import("../../models").ChartStateCacheKey;
653
- }) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) & {
654
- clearCache: () => void;
655
- resultsCount: () => number;
656
- resetResultsCount: () => void;
657
- } & {
658
- resultFunc: (resultFuncArgs_0: {
659
- x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
660
- y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
661
- } | undefined) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined;
662
- memoizedResultFunc: ((resultFuncArgs_0: {
663
- x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
664
- y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
665
- } | undefined) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) & {
666
- clearCache: () => void;
667
- resultsCount: () => number;
668
- resetResultsCount: () => void;
669
- };
670
- lastResult: () => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined;
671
- dependencies: [(state: ChartState<[], [UseChartCartesianAxisSignature]>) => {
672
- x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
673
- y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
674
- } | undefined];
675
- recomputations: () => number;
676
- resetRecomputations: () => void;
677
- dependencyRecomputations: () => number;
678
- resetDependencyRecomputations: () => void;
679
- } & {
680
- memoize: typeof import("reselect").weakMapMemoize;
681
- argsMemoize: typeof import("reselect").weakMapMemoize;
682
- }];
683
- recomputations: () => number;
684
- resetRecomputations: () => void;
685
- dependencyRecomputations: () => number;
686
- resetDependencyRecomputations: () => void;
687
- } & {
688
- memoize: typeof import("reselect").weakMapMemoize;
689
- argsMemoize: typeof import("reselect").weakMapMemoize;
690
- }, ((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> & {
691
- cacheKey: import("../../models").ChartStateCacheKey;
692
- }) => number) & {
693
- clearCache: () => void;
694
- resultsCount: () => number;
695
- resetResultsCount: () => void;
696
- } & {
697
- resultFunc: (resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) => number;
698
- memoizedResultFunc: ((resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) => number) & {
699
- clearCache: () => void;
700
- resultsCount: () => number;
701
- resetResultsCount: () => void;
702
- };
703
- lastResult: () => number;
704
- dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
705
- cacheKey: import("../../models").ChartStateCacheKey;
706
- }) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) & {
707
- clearCache: () => void;
708
- resultsCount: () => number;
709
- resetResultsCount: () => void;
710
- } & {
711
- resultFunc: (resultFuncArgs_0: {
712
- x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
713
- y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
714
- } | undefined) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined;
715
- memoizedResultFunc: ((resultFuncArgs_0: {
716
- x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
717
- y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
718
- } | undefined) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) & {
719
- clearCache: () => void;
720
- resultsCount: () => number;
721
- resetResultsCount: () => void;
722
- };
723
- lastResult: () => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined;
724
- dependencies: [(state: ChartState<[], [UseChartCartesianAxisSignature]>) => {
725
- x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
726
- y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
727
- } | undefined];
728
- recomputations: () => number;
729
- resetRecomputations: () => void;
730
- dependencyRecomputations: () => number;
731
- resetDependencyRecomputations: () => void;
732
- } & {
733
- memoize: typeof import("reselect").weakMapMemoize;
734
- argsMemoize: typeof import("reselect").weakMapMemoize;
735
- }];
736
- recomputations: () => number;
737
- resetRecomputations: () => void;
738
- dependencyRecomputations: () => number;
739
- resetDependencyRecomputations: () => void;
740
- } & {
741
- memoize: typeof import("reselect").weakMapMemoize;
742
- argsMemoize: typeof import("reselect").weakMapMemoize;
743
- }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
744
- cacheKey: import("../../models").ChartStateCacheKey;
745
- }) => number) & {
746
- clearCache: () => void;
747
- resultsCount: () => number;
748
- resetResultsCount: () => void;
749
- } & {
750
- resultFunc: (resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) => number;
751
- memoizedResultFunc: ((resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) => number) & {
752
- clearCache: () => void;
753
- resultsCount: () => number;
754
- resetResultsCount: () => void;
755
- };
756
- lastResult: () => number;
757
- dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
758
- cacheKey: import("../../models").ChartStateCacheKey;
759
- }) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) & {
760
- clearCache: () => void;
761
- resultsCount: () => number;
762
- resetResultsCount: () => void;
763
- } & {
764
- resultFunc: (resultFuncArgs_0: {
765
- x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
766
- y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
767
- } | undefined) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined;
768
- memoizedResultFunc: ((resultFuncArgs_0: {
769
- x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
770
- y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
771
- } | undefined) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) & {
772
- clearCache: () => void;
773
- resultsCount: () => number;
774
- resetResultsCount: () => void;
775
- };
776
- lastResult: () => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined;
777
- dependencies: [(state: ChartState<[], [UseChartCartesianAxisSignature]>) => {
778
- x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
779
- y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
780
- } | undefined];
781
- recomputations: () => number;
782
- resetRecomputations: () => void;
783
- dependencyRecomputations: () => number;
784
- resetDependencyRecomputations: () => void;
785
- } & {
786
- memoize: typeof import("reselect").weakMapMemoize;
787
- argsMemoize: typeof import("reselect").weakMapMemoize;
788
- }];
789
- recomputations: () => number;
790
- resetRecomputations: () => void;
791
- dependencyRecomputations: () => number;
792
- resetDependencyRecomputations: () => void;
793
- } & {
794
- memoize: typeof import("reselect").weakMapMemoize;
795
- argsMemoize: typeof import("reselect").weakMapMemoize;
796
- }];
797
- recomputations: () => number;
798
- resetRecomputations: () => void;
799
- dependencyRecomputations: () => number;
800
- resetDependencyRecomputations: () => void;
801
- } & {
802
- memoize: typeof import("reselect").weakMapMemoize;
803
- argsMemoize: typeof import("reselect").weakMapMemoize;
804
- }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
805
- cacheKey: import("../../models").ChartStateCacheKey;
806
- }) => import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>) & {
807
- clearCache: () => void;
808
- resultsCount: () => number;
809
- resetResultsCount: () => void;
810
- } & {
811
- resultFunc: (resultFuncArgs_0: {
812
- processedSeries: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>;
813
- seriesConfig: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>;
814
- }) => import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>;
815
- memoizedResultFunc: ((resultFuncArgs_0: {
816
- processedSeries: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>;
817
- seriesConfig: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>;
818
- }) => import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>) & {
819
- clearCache: () => void;
820
- resultsCount: () => number;
821
- resetResultsCount: () => void;
822
- };
823
- lastResult: () => import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>;
824
- dependencies: [import("../../..").ChartRootSelector<import("../../..").UseChartSeriesSignature>];
825
- recomputations: () => number;
826
- resetRecomputations: () => void;
827
- dependencyRecomputations: () => number;
828
- resetDependencyRecomputations: () => void;
829
- } & {
830
- memoize: typeof import("reselect").weakMapMemoize;
831
- argsMemoize: typeof import("reselect").weakMapMemoize;
832
- }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
833
- cacheKey: import("../../models").ChartStateCacheKey;
834
- }) => import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>) & {
835
- clearCache: () => void;
836
- resultsCount: () => number;
837
- resetResultsCount: () => void;
838
- } & {
839
- resultFunc: (resultFuncArgs_0: {
840
- processedSeries: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>;
841
- seriesConfig: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>;
842
- }) => import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>;
843
- memoizedResultFunc: ((resultFuncArgs_0: {
844
- processedSeries: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>;
845
- seriesConfig: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>;
846
- }) => import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>) & {
847
- clearCache: () => void;
848
- resultsCount: () => number;
849
- resetResultsCount: () => void;
850
- };
851
- lastResult: () => import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>;
852
- dependencies: [import("../../..").ChartRootSelector<import("../../..").UseChartSeriesSignature>];
853
- recomputations: () => number;
854
- resetRecomputations: () => void;
855
- dependencyRecomputations: () => number;
856
- resetDependencyRecomputations: () => void;
857
- } & {
858
- memoize: typeof import("reselect").weakMapMemoize;
859
- argsMemoize: typeof import("reselect").weakMapMemoize;
860
- }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("./useChartCartesianAxis.types").UseChartCartesianAxisState & Partial<{}> & {
861
- cacheKey: import("../../models").ChartStateCacheKey;
862
- }) => Map<AxisId, ZoomData> | undefined) & {
863
- clearCache: () => void;
864
- resultsCount: () => number;
865
- resetResultsCount: () => void;
866
- } & {
867
- resultFunc: (resultFuncArgs_0: {
868
- isInteracting: boolean;
869
- zoomData: readonly ZoomData[];
870
- } | undefined) => Map<AxisId, ZoomData> | undefined;
871
- memoizedResultFunc: ((resultFuncArgs_0: {
872
- isInteracting: boolean;
873
- zoomData: readonly ZoomData[];
874
- } | undefined) => Map<AxisId, ZoomData> | undefined) & {
875
- clearCache: () => void;
876
- resultsCount: () => number;
877
- resetResultsCount: () => void;
878
- };
879
- lastResult: () => Map<AxisId, ZoomData> | undefined;
880
- dependencies: [(state: ChartState<[UseChartCartesianAxisSignature]>) => {
881
- isInteracting: boolean;
882
- zoomData: readonly ZoomData[];
883
- } | undefined];
884
- recomputations: () => number;
885
- resetRecomputations: () => void;
886
- dependencyRecomputations: () => number;
887
- resetDependencyRecomputations: () => void;
888
- } & {
889
- memoize: typeof import("reselect").weakMapMemoize;
890
- argsMemoize: typeof import("reselect").weakMapMemoize;
891
- }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
892
- cacheKey: import("../../models").ChartStateCacheKey;
893
- }) => {
894
- [x: string]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
895
- [x: number]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
896
- }) & {
897
- clearCache: () => void;
898
- resultsCount: () => number;
899
- resetResultsCount: () => void;
900
- } & {
901
- resultFunc: (resultFuncArgs_0: Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>, resultFuncArgs_1: Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>) => {
902
- [x: string]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
903
- [x: number]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
904
- };
905
- memoizedResultFunc: ((resultFuncArgs_0: Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>, resultFuncArgs_1: Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>) => {
906
- [x: string]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
907
- [x: number]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
908
- }) & {
909
- clearCache: () => void;
910
- resultsCount: () => number;
911
- resetResultsCount: () => void;
912
- };
913
- lastResult: () => {
914
- [x: string]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
915
- [x: number]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
916
- };
917
- dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
918
- cacheKey: import("../../models").ChartStateCacheKey;
919
- }) => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>) & {
920
- clearCache: () => void;
921
- resultsCount: () => number;
922
- resetResultsCount: () => void;
923
- } & {
924
- resultFunc: (resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>;
925
- memoizedResultFunc: ((resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>) & {
926
- clearCache: () => void;
927
- resultsCount: () => number;
928
- resetResultsCount: () => void;
929
- };
930
- lastResult: () => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>;
931
- dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
932
- cacheKey: import("../../models").ChartStateCacheKey;
933
- }) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) & {
934
- clearCache: () => void;
935
- resultsCount: () => number;
936
- resetResultsCount: () => void;
937
- } & {
938
- resultFunc: (resultFuncArgs_0: {
939
- x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
940
- y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
941
- } | undefined) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined;
942
- memoizedResultFunc: ((resultFuncArgs_0: {
943
- x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
944
- y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
945
- } | undefined) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) & {
946
- clearCache: () => void;
947
- resultsCount: () => number;
948
- resetResultsCount: () => void;
949
- };
950
- lastResult: () => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined;
951
- dependencies: [(state: ChartState<[], [UseChartCartesianAxisSignature]>) => {
952
- x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
953
- y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
954
- } | undefined];
955
- recomputations: () => number;
956
- resetRecomputations: () => void;
957
- dependencyRecomputations: () => number;
958
- resetDependencyRecomputations: () => void;
959
- } & {
960
- memoize: typeof import("reselect").weakMapMemoize;
961
- argsMemoize: typeof import("reselect").weakMapMemoize;
962
- }];
963
- recomputations: () => number;
964
- resetRecomputations: () => void;
965
- dependencyRecomputations: () => number;
966
- resetDependencyRecomputations: () => void;
967
- } & {
968
- memoize: typeof import("reselect").weakMapMemoize;
969
- argsMemoize: typeof import("reselect").weakMapMemoize;
970
- }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
971
- cacheKey: import("../../models").ChartStateCacheKey;
972
- }) => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>) & {
973
- clearCache: () => void;
974
- resultsCount: () => number;
975
- resetResultsCount: () => void;
976
- } & {
977
- resultFunc: (resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>;
978
- memoizedResultFunc: ((resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>) & {
979
- clearCache: () => void;
980
- resultsCount: () => number;
981
- resetResultsCount: () => void;
982
- };
983
- lastResult: () => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>;
984
- dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
985
- cacheKey: import("../../models").ChartStateCacheKey;
986
- }) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) & {
987
- clearCache: () => void;
988
- resultsCount: () => number;
989
- resetResultsCount: () => void;
990
- } & {
991
- resultFunc: (resultFuncArgs_0: {
992
- x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
993
- y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
994
- } | undefined) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined;
995
- memoizedResultFunc: ((resultFuncArgs_0: {
996
- x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
997
- y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
998
- } | undefined) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) & {
999
- clearCache: () => void;
1000
- resultsCount: () => number;
1001
- resetResultsCount: () => void;
1002
- };
1003
- lastResult: () => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined;
1004
- dependencies: [(state: ChartState<[], [UseChartCartesianAxisSignature]>) => {
1005
- x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
1006
- y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
1007
- } | undefined];
1008
- recomputations: () => number;
1009
- resetRecomputations: () => void;
1010
- dependencyRecomputations: () => number;
1011
- resetDependencyRecomputations: () => void;
1012
- } & {
1013
- memoize: typeof import("reselect").weakMapMemoize;
1014
- argsMemoize: typeof import("reselect").weakMapMemoize;
1015
- }];
1016
- recomputations: () => number;
1017
- resetRecomputations: () => void;
1018
- dependencyRecomputations: () => number;
1019
- resetDependencyRecomputations: () => void;
1020
- } & {
1021
- memoize: typeof import("reselect").weakMapMemoize;
1022
- argsMemoize: typeof import("reselect").weakMapMemoize;
1023
- }];
1024
- recomputations: () => number;
1025
- resetRecomputations: () => void;
1026
- dependencyRecomputations: () => number;
1027
- resetDependencyRecomputations: () => void;
1028
- } & {
1029
- memoize: typeof import("reselect").weakMapMemoize;
1030
- argsMemoize: typeof import("reselect").weakMapMemoize;
1031
- }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("./useChartCartesianAxis.types").UseChartCartesianAxisState & Partial<{}> & {
1032
- cacheKey: import("../../models").ChartStateCacheKey;
1033
- } & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState>) => import("./zoom.types").GetZoomAxisFilters | undefined) & {
1034
- clearCache: () => void;
1035
- resultsCount: () => number;
1036
- resetResultsCount: () => void;
1037
- } & {
1038
- resultFunc: (resultFuncArgs_0: ((axis: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>, axisIndex: number) => import("./useChartCartesianAxis.types").ExtremumFilter | null) | undefined, resultFuncArgs_1: ((axis: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>, axisIndex: number) => import("./useChartCartesianAxis.types").ExtremumFilter | null) | undefined, resultFuncArgs_2: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined, resultFuncArgs_3: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) => import("./zoom.types").GetZoomAxisFilters | undefined;
1039
- memoizedResultFunc: ((resultFuncArgs_0: ((axis: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>, axisIndex: number) => import("./useChartCartesianAxis.types").ExtremumFilter | null) | undefined, resultFuncArgs_1: ((axis: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>, axisIndex: number) => import("./useChartCartesianAxis.types").ExtremumFilter | null) | undefined, resultFuncArgs_2: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined, resultFuncArgs_3: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) => import("./zoom.types").GetZoomAxisFilters | undefined) & {
1040
- clearCache: () => void;
1041
- resultsCount: () => number;
1042
- resetResultsCount: () => void;
1043
- };
1044
- lastResult: () => import("./zoom.types").GetZoomAxisFilters | undefined;
1045
- dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("./useChartCartesianAxis.types").UseChartCartesianAxisState & Partial<{}> & {
1046
- cacheKey: import("../../models").ChartStateCacheKey;
1047
- } & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState>) => ((axis: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>, axisIndex: number) => import("./useChartCartesianAxis.types").ExtremumFilter | null) | undefined) & {
1048
- clearCache: () => void;
1049
- resultsCount: () => number;
1050
- resetResultsCount: () => void;
1051
- } & {
1052
- resultFunc: (resultFuncArgs_0: Map<AxisId, ZoomData> | undefined, resultFuncArgs_1: {
1053
- [x: string]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
1054
- [x: number]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
1055
- }, resultFuncArgs_2: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>, resultFuncArgs_3: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>) => ((axis: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>, axisIndex: number) => import("./useChartCartesianAxis.types").ExtremumFilter | null) | undefined;
1056
- memoizedResultFunc: ((resultFuncArgs_0: Map<AxisId, ZoomData> | undefined, resultFuncArgs_1: {
1057
- [x: string]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
1058
- [x: number]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
1059
- }, resultFuncArgs_2: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>, resultFuncArgs_3: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>) => ((axis: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>, axisIndex: number) => import("./useChartCartesianAxis.types").ExtremumFilter | null) | undefined) & {
1060
- clearCache: () => void;
1061
- resultsCount: () => number;
1062
- resetResultsCount: () => void;
1063
- };
1064
- lastResult: () => ((axis: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>, axisIndex: number) => import("./useChartCartesianAxis.types").ExtremumFilter | null) | undefined;
1065
- dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("./useChartCartesianAxis.types").UseChartCartesianAxisState & Partial<{}> & {
1066
- cacheKey: import("../../models").ChartStateCacheKey;
1067
- }) => Map<AxisId, ZoomData> | undefined) & {
1068
- clearCache: () => void;
1069
- resultsCount: () => number;
1070
- resetResultsCount: () => void;
1071
- } & {
1072
- resultFunc: (resultFuncArgs_0: {
1073
- isInteracting: boolean;
1074
- zoomData: readonly ZoomData[];
1075
- } | undefined) => Map<AxisId, ZoomData> | undefined;
1076
- memoizedResultFunc: ((resultFuncArgs_0: {
1077
- isInteracting: boolean;
1078
- zoomData: readonly ZoomData[];
1079
- } | undefined) => Map<AxisId, ZoomData> | undefined) & {
1080
- clearCache: () => void;
1081
- resultsCount: () => number;
1082
- resetResultsCount: () => void;
1083
- };
1084
- lastResult: () => Map<AxisId, ZoomData> | undefined;
1085
- dependencies: [(state: ChartState<[UseChartCartesianAxisSignature]>) => {
1086
- isInteracting: boolean;
1087
- zoomData: readonly ZoomData[];
1088
- } | undefined];
1089
- recomputations: () => number;
1090
- resetRecomputations: () => void;
1091
- dependencyRecomputations: () => number;
1092
- resetDependencyRecomputations: () => void;
1093
- } & {
1094
- memoize: typeof import("reselect").weakMapMemoize;
1095
- argsMemoize: typeof import("reselect").weakMapMemoize;
1096
- }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
1097
- cacheKey: import("../../models").ChartStateCacheKey;
1098
- }) => {
1099
- [x: string]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
1100
- [x: number]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
1101
- }) & {
1102
- clearCache: () => void;
1103
- resultsCount: () => number;
1104
- resetResultsCount: () => void;
1105
- } & {
1106
- resultFunc: (resultFuncArgs_0: Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>, resultFuncArgs_1: Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>) => {
1107
- [x: string]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
1108
- [x: number]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
1109
- };
1110
- memoizedResultFunc: ((resultFuncArgs_0: Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>, resultFuncArgs_1: Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>) => {
1111
- [x: string]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
1112
- [x: number]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
1113
- }) & {
1114
- clearCache: () => void;
1115
- resultsCount: () => number;
1116
- resetResultsCount: () => void;
1117
- };
1118
- lastResult: () => {
1119
- [x: string]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
1120
- [x: number]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
1121
- };
1122
- dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
1123
- cacheKey: import("../../models").ChartStateCacheKey;
1124
- }) => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>) & {
1125
- clearCache: () => void;
1126
- resultsCount: () => number;
1127
- resetResultsCount: () => void;
1128
- } & {
1129
- resultFunc: (resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>;
1130
- memoizedResultFunc: ((resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>) & {
1131
- clearCache: () => void;
1132
- resultsCount: () => number;
1133
- resetResultsCount: () => void;
1134
- };
1135
- lastResult: () => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>;
1136
- dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
1137
- cacheKey: import("../../models").ChartStateCacheKey;
1138
- }) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) & {
1139
- clearCache: () => void;
1140
- resultsCount: () => number;
1141
- resetResultsCount: () => void;
1142
- } & {
1143
- resultFunc: (resultFuncArgs_0: {
1144
- x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
1145
- y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
1146
- } | undefined) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined;
1147
- memoizedResultFunc: ((resultFuncArgs_0: {
1148
- x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
1149
- y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
1150
- } | undefined) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) & {
1151
- clearCache: () => void;
1152
- resultsCount: () => number;
1153
- resetResultsCount: () => void;
1154
- };
1155
- lastResult: () => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined;
1156
- dependencies: [(state: ChartState<[], [UseChartCartesianAxisSignature]>) => {
1157
- x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
1158
- y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
1159
- } | undefined];
1160
- recomputations: () => number;
1161
- resetRecomputations: () => void;
1162
- dependencyRecomputations: () => number;
1163
- resetDependencyRecomputations: () => void;
1164
- } & {
1165
- memoize: typeof import("reselect").weakMapMemoize;
1166
- argsMemoize: typeof import("reselect").weakMapMemoize;
1167
- }];
1168
- recomputations: () => number;
1169
- resetRecomputations: () => void;
1170
- dependencyRecomputations: () => number;
1171
- resetDependencyRecomputations: () => void;
1172
- } & {
1173
- memoize: typeof import("reselect").weakMapMemoize;
1174
- argsMemoize: typeof import("reselect").weakMapMemoize;
1175
- }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
1176
- cacheKey: import("../../models").ChartStateCacheKey;
1177
- }) => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>) & {
1178
- clearCache: () => void;
1179
- resultsCount: () => number;
1180
- resetResultsCount: () => void;
1181
- } & {
1182
- resultFunc: (resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>;
1183
- memoizedResultFunc: ((resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>) & {
1184
- clearCache: () => void;
1185
- resultsCount: () => number;
1186
- resetResultsCount: () => void;
1187
- };
1188
- lastResult: () => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>;
1189
- dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
1190
- cacheKey: import("../../models").ChartStateCacheKey;
1191
- }) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) & {
1192
- clearCache: () => void;
1193
- resultsCount: () => number;
1194
- resetResultsCount: () => void;
1195
- } & {
1196
- resultFunc: (resultFuncArgs_0: {
1197
- x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
1198
- y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
1199
- } | undefined) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined;
1200
- memoizedResultFunc: ((resultFuncArgs_0: {
1201
- x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
1202
- y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
1203
- } | undefined) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) & {
1204
- clearCache: () => void;
1205
- resultsCount: () => number;
1206
- resetResultsCount: () => void;
1207
- };
1208
- lastResult: () => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined;
1209
- dependencies: [(state: ChartState<[], [UseChartCartesianAxisSignature]>) => {
1210
- x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
1211
- y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
1212
- } | undefined];
1213
- recomputations: () => number;
1214
- resetRecomputations: () => void;
1215
- dependencyRecomputations: () => number;
1216
- resetDependencyRecomputations: () => void;
1217
- } & {
1218
- memoize: typeof import("reselect").weakMapMemoize;
1219
- argsMemoize: typeof import("reselect").weakMapMemoize;
1220
- }];
1221
- recomputations: () => number;
1222
- resetRecomputations: () => void;
1223
- dependencyRecomputations: () => number;
1224
- resetDependencyRecomputations: () => void;
1225
- } & {
1226
- memoize: typeof import("reselect").weakMapMemoize;
1227
- argsMemoize: typeof import("reselect").weakMapMemoize;
1228
- }];
1229
- recomputations: () => number;
1230
- resetRecomputations: () => void;
1231
- dependencyRecomputations: () => number;
1232
- resetDependencyRecomputations: () => void;
1233
- } & {
1234
- memoize: typeof import("reselect").weakMapMemoize;
1235
- argsMemoize: typeof import("reselect").weakMapMemoize;
1236
- }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
1237
- cacheKey: import("../../models").ChartStateCacheKey;
1238
- }) => import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>) & {
1239
- clearCache: () => void;
1240
- resultsCount: () => number;
1241
- resetResultsCount: () => void;
1242
- } & {
1243
- resultFunc: (resultFuncArgs_0: {
1244
- processedSeries: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>;
1245
- seriesConfig: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>;
1246
- }) => import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>;
1247
- memoizedResultFunc: ((resultFuncArgs_0: {
1248
- processedSeries: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>;
1249
- seriesConfig: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>;
1250
- }) => import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>) & {
1251
- clearCache: () => void;
1252
- resultsCount: () => number;
1253
- resetResultsCount: () => void;
1254
- };
1255
- lastResult: () => import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>;
1256
- dependencies: [import("../../..").ChartRootSelector<import("../../..").UseChartSeriesSignature>];
1257
- recomputations: () => number;
1258
- resetRecomputations: () => void;
1259
- dependencyRecomputations: () => number;
1260
- resetDependencyRecomputations: () => void;
1261
- } & {
1262
- memoize: typeof import("reselect").weakMapMemoize;
1263
- argsMemoize: typeof import("reselect").weakMapMemoize;
1264
- }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
1265
- cacheKey: import("../../models").ChartStateCacheKey;
1266
- }) => import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>) & {
1267
- clearCache: () => void;
1268
- resultsCount: () => number;
1269
- resetResultsCount: () => void;
1270
- } & {
1271
- resultFunc: (resultFuncArgs_0: {
1272
- processedSeries: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>;
1273
- seriesConfig: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>;
1274
- }) => import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>;
1275
- memoizedResultFunc: ((resultFuncArgs_0: {
1276
- processedSeries: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>;
1277
- seriesConfig: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>;
1278
- }) => import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>) & {
1279
- clearCache: () => void;
1280
- resultsCount: () => number;
1281
- resetResultsCount: () => void;
1282
- };
1283
- lastResult: () => import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>;
1284
- dependencies: [import("../../..").ChartRootSelector<import("../../..").UseChartSeriesSignature>];
1285
- recomputations: () => number;
1286
- resetRecomputations: () => void;
1287
- dependencyRecomputations: () => number;
1288
- resetDependencyRecomputations: () => void;
1289
- } & {
1290
- memoize: typeof import("reselect").weakMapMemoize;
1291
- argsMemoize: typeof import("reselect").weakMapMemoize;
1292
- }];
1293
- recomputations: () => number;
1294
- resetRecomputations: () => void;
1295
- dependencyRecomputations: () => number;
1296
- resetDependencyRecomputations: () => void;
1297
- } & {
1298
- memoize: typeof import("reselect").weakMapMemoize;
1299
- argsMemoize: typeof import("reselect").weakMapMemoize;
1300
- }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("./useChartCartesianAxis.types").UseChartCartesianAxisState & Partial<{}> & {
1301
- cacheKey: import("../../models").ChartStateCacheKey;
1302
- } & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState>) => ((axis: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>, axisIndex: number) => import("./useChartCartesianAxis.types").ExtremumFilter | null) | undefined) & {
1303
- clearCache: () => void;
1304
- resultsCount: () => number;
1305
- resetResultsCount: () => void;
1306
- } & {
1307
- resultFunc: (resultFuncArgs_0: Map<AxisId, ZoomData> | undefined, resultFuncArgs_1: {
1308
- [x: string]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
1309
- [x: number]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
1310
- }, resultFuncArgs_2: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>, resultFuncArgs_3: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>) => ((axis: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>, axisIndex: number) => import("./useChartCartesianAxis.types").ExtremumFilter | null) | undefined;
1311
- memoizedResultFunc: ((resultFuncArgs_0: Map<AxisId, ZoomData> | undefined, resultFuncArgs_1: {
1312
- [x: string]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
1313
- [x: number]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
1314
- }, resultFuncArgs_2: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>, resultFuncArgs_3: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>) => ((axis: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>, axisIndex: number) => import("./useChartCartesianAxis.types").ExtremumFilter | null) | undefined) & {
1315
- clearCache: () => void;
1316
- resultsCount: () => number;
1317
- resetResultsCount: () => void;
1318
- };
1319
- lastResult: () => ((axis: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>, axisIndex: number) => import("./useChartCartesianAxis.types").ExtremumFilter | null) | undefined;
1320
- dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("./useChartCartesianAxis.types").UseChartCartesianAxisState & Partial<{}> & {
1321
- cacheKey: import("../../models").ChartStateCacheKey;
1322
- }) => Map<AxisId, ZoomData> | undefined) & {
1323
- clearCache: () => void;
1324
- resultsCount: () => number;
1325
- resetResultsCount: () => void;
1326
- } & {
1327
- resultFunc: (resultFuncArgs_0: {
1328
- isInteracting: boolean;
1329
- zoomData: readonly ZoomData[];
1330
- } | undefined) => Map<AxisId, ZoomData> | undefined;
1331
- memoizedResultFunc: ((resultFuncArgs_0: {
1332
- isInteracting: boolean;
1333
- zoomData: readonly ZoomData[];
1334
- } | undefined) => Map<AxisId, ZoomData> | undefined) & {
1335
- clearCache: () => void;
1336
- resultsCount: () => number;
1337
- resetResultsCount: () => void;
1338
- };
1339
- lastResult: () => Map<AxisId, ZoomData> | undefined;
1340
- dependencies: [(state: ChartState<[UseChartCartesianAxisSignature]>) => {
1341
- isInteracting: boolean;
1342
- zoomData: readonly ZoomData[];
1343
- } | undefined];
1344
- recomputations: () => number;
1345
- resetRecomputations: () => void;
1346
- dependencyRecomputations: () => number;
1347
- resetDependencyRecomputations: () => void;
1348
- } & {
1349
- memoize: typeof import("reselect").weakMapMemoize;
1350
- argsMemoize: typeof import("reselect").weakMapMemoize;
1351
- }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
1352
- cacheKey: import("../../models").ChartStateCacheKey;
1353
- }) => {
1354
- [x: string]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
1355
- [x: number]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
1356
- }) & {
1357
- clearCache: () => void;
1358
- resultsCount: () => number;
1359
- resetResultsCount: () => void;
1360
- } & {
1361
- resultFunc: (resultFuncArgs_0: Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>, resultFuncArgs_1: Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>) => {
1362
- [x: string]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
1363
- [x: number]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
1364
- };
1365
- memoizedResultFunc: ((resultFuncArgs_0: Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>, resultFuncArgs_1: Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>) => {
1366
- [x: string]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
1367
- [x: number]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
1368
- }) & {
1369
- clearCache: () => void;
1370
- resultsCount: () => number;
1371
- resetResultsCount: () => void;
1372
- };
1373
- lastResult: () => {
1374
- [x: string]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
1375
- [x: number]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
1376
- };
1377
- dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
1378
- cacheKey: import("../../models").ChartStateCacheKey;
1379
- }) => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>) & {
1380
- clearCache: () => void;
1381
- resultsCount: () => number;
1382
- resetResultsCount: () => void;
1383
- } & {
1384
- resultFunc: (resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>;
1385
- memoizedResultFunc: ((resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>) & {
1386
- clearCache: () => void;
1387
- resultsCount: () => number;
1388
- resetResultsCount: () => void;
1389
- };
1390
- lastResult: () => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>;
1391
- dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
1392
- cacheKey: import("../../models").ChartStateCacheKey;
1393
- }) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) & {
1394
- clearCache: () => void;
1395
- resultsCount: () => number;
1396
- resetResultsCount: () => void;
1397
- } & {
1398
- resultFunc: (resultFuncArgs_0: {
1399
- x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
1400
- y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
1401
- } | undefined) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined;
1402
- memoizedResultFunc: ((resultFuncArgs_0: {
1403
- x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
1404
- y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
1405
- } | undefined) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) & {
1406
- clearCache: () => void;
1407
- resultsCount: () => number;
1408
- resetResultsCount: () => void;
1409
- };
1410
- lastResult: () => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined;
1411
- dependencies: [(state: ChartState<[], [UseChartCartesianAxisSignature]>) => {
1412
- x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
1413
- y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
1414
- } | undefined];
1415
- recomputations: () => number;
1416
- resetRecomputations: () => void;
1417
- dependencyRecomputations: () => number;
1418
- resetDependencyRecomputations: () => void;
1419
- } & {
1420
- memoize: typeof import("reselect").weakMapMemoize;
1421
- argsMemoize: typeof import("reselect").weakMapMemoize;
1422
- }];
1423
- recomputations: () => number;
1424
- resetRecomputations: () => void;
1425
- dependencyRecomputations: () => number;
1426
- resetDependencyRecomputations: () => void;
1427
- } & {
1428
- memoize: typeof import("reselect").weakMapMemoize;
1429
- argsMemoize: typeof import("reselect").weakMapMemoize;
1430
- }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
1431
- cacheKey: import("../../models").ChartStateCacheKey;
1432
- }) => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>) & {
1433
- clearCache: () => void;
1434
- resultsCount: () => number;
1435
- resetResultsCount: () => void;
1436
- } & {
1437
- resultFunc: (resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>;
1438
- memoizedResultFunc: ((resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>) & {
1439
- clearCache: () => void;
1440
- resultsCount: () => number;
1441
- resetResultsCount: () => void;
1442
- };
1443
- lastResult: () => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>;
1444
- dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
1445
- cacheKey: import("../../models").ChartStateCacheKey;
1446
- }) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) & {
1447
- clearCache: () => void;
1448
- resultsCount: () => number;
1449
- resetResultsCount: () => void;
1450
- } & {
1451
- resultFunc: (resultFuncArgs_0: {
1452
- x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
1453
- y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
1454
- } | undefined) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined;
1455
- memoizedResultFunc: ((resultFuncArgs_0: {
1456
- x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
1457
- y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
1458
- } | undefined) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) & {
1459
- clearCache: () => void;
1460
- resultsCount: () => number;
1461
- resetResultsCount: () => void;
1462
- };
1463
- lastResult: () => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined;
1464
- dependencies: [(state: ChartState<[], [UseChartCartesianAxisSignature]>) => {
1465
- x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
1466
- y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
1467
- } | undefined];
1468
- recomputations: () => number;
1469
- resetRecomputations: () => void;
1470
- dependencyRecomputations: () => number;
1471
- resetDependencyRecomputations: () => void;
1472
- } & {
1473
- memoize: typeof import("reselect").weakMapMemoize;
1474
- argsMemoize: typeof import("reselect").weakMapMemoize;
1475
- }];
1476
- recomputations: () => number;
1477
- resetRecomputations: () => void;
1478
- dependencyRecomputations: () => number;
1479
- resetDependencyRecomputations: () => void;
1480
- } & {
1481
- memoize: typeof import("reselect").weakMapMemoize;
1482
- argsMemoize: typeof import("reselect").weakMapMemoize;
1483
- }];
1484
- recomputations: () => number;
1485
- resetRecomputations: () => void;
1486
- dependencyRecomputations: () => number;
1487
- resetDependencyRecomputations: () => void;
1488
- } & {
1489
- memoize: typeof import("reselect").weakMapMemoize;
1490
- argsMemoize: typeof import("reselect").weakMapMemoize;
1491
- }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
1492
- cacheKey: import("../../models").ChartStateCacheKey;
1493
- }) => import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>) & {
1494
- clearCache: () => void;
1495
- resultsCount: () => number;
1496
- resetResultsCount: () => void;
1497
- } & {
1498
- resultFunc: (resultFuncArgs_0: {
1499
- processedSeries: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>;
1500
- seriesConfig: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>;
1501
- }) => import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>;
1502
- memoizedResultFunc: ((resultFuncArgs_0: {
1503
- processedSeries: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>;
1504
- seriesConfig: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>;
1505
- }) => import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>) & {
1506
- clearCache: () => void;
1507
- resultsCount: () => number;
1508
- resetResultsCount: () => void;
1509
- };
1510
- lastResult: () => import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>;
1511
- dependencies: [import("../../..").ChartRootSelector<import("../../..").UseChartSeriesSignature>];
1512
- recomputations: () => number;
1513
- resetRecomputations: () => void;
1514
- dependencyRecomputations: () => number;
1515
- resetDependencyRecomputations: () => void;
1516
- } & {
1517
- memoize: typeof import("reselect").weakMapMemoize;
1518
- argsMemoize: typeof import("reselect").weakMapMemoize;
1519
- }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
1520
- cacheKey: import("../../models").ChartStateCacheKey;
1521
- }) => import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>) & {
1522
- clearCache: () => void;
1523
- resultsCount: () => number;
1524
- resetResultsCount: () => void;
1525
- } & {
1526
- resultFunc: (resultFuncArgs_0: {
1527
- processedSeries: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>;
1528
- seriesConfig: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>;
1529
- }) => import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>;
1530
- memoizedResultFunc: ((resultFuncArgs_0: {
1531
- processedSeries: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>;
1532
- seriesConfig: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>;
1533
- }) => import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>) & {
1534
- clearCache: () => void;
1535
- resultsCount: () => number;
1536
- resetResultsCount: () => void;
1537
- };
1538
- lastResult: () => import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>;
1539
- dependencies: [import("../../..").ChartRootSelector<import("../../..").UseChartSeriesSignature>];
1540
- recomputations: () => number;
1541
- resetRecomputations: () => void;
1542
- dependencyRecomputations: () => number;
1543
- resetDependencyRecomputations: () => void;
1544
- } & {
1545
- memoize: typeof import("reselect").weakMapMemoize;
1546
- argsMemoize: typeof import("reselect").weakMapMemoize;
1547
- }];
1548
- recomputations: () => number;
1549
- resetRecomputations: () => void;
1550
- dependencyRecomputations: () => number;
1551
- resetDependencyRecomputations: () => void;
1552
- } & {
1553
- memoize: typeof import("reselect").weakMapMemoize;
1554
- argsMemoize: typeof import("reselect").weakMapMemoize;
1555
- }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
1556
- cacheKey: import("../../models").ChartStateCacheKey;
1557
- }) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) & {
1558
- clearCache: () => void;
1559
- resultsCount: () => number;
1560
- resetResultsCount: () => void;
1561
- } & {
1562
- resultFunc: (resultFuncArgs_0: {
1563
- x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
1564
- y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
1565
- } | undefined) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined;
1566
- memoizedResultFunc: ((resultFuncArgs_0: {
1567
- x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
1568
- y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
1569
- } | undefined) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) & {
1570
- clearCache: () => void;
1571
- resultsCount: () => number;
1572
- resetResultsCount: () => void;
1573
- };
1574
- lastResult: () => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined;
1575
- dependencies: [(state: ChartState<[], [UseChartCartesianAxisSignature]>) => {
1576
- x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
1577
- y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
1578
- } | undefined];
1579
- recomputations: () => number;
1580
- resetRecomputations: () => void;
1581
- dependencyRecomputations: () => number;
1582
- resetDependencyRecomputations: () => void;
1583
- } & {
1584
- memoize: typeof import("reselect").weakMapMemoize;
1585
- argsMemoize: typeof import("reselect").weakMapMemoize;
1586
- }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
1587
- cacheKey: import("../../models").ChartStateCacheKey;
1588
- }) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) & {
1589
- clearCache: () => void;
1590
- resultsCount: () => number;
1591
- resetResultsCount: () => void;
1592
- } & {
1593
- resultFunc: (resultFuncArgs_0: {
1594
- x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
1595
- y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
1596
- } | undefined) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined;
1597
- memoizedResultFunc: ((resultFuncArgs_0: {
1598
- x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
1599
- y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
1600
- } | undefined) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) & {
1601
- clearCache: () => void;
1602
- resultsCount: () => number;
1603
- resetResultsCount: () => void;
1604
- };
1605
- lastResult: () => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined;
1606
- dependencies: [(state: ChartState<[], [UseChartCartesianAxisSignature]>) => {
1607
- x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
1608
- y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
1609
- } | undefined];
1610
- recomputations: () => number;
1611
- resetRecomputations: () => void;
1612
- dependencyRecomputations: () => number;
1613
- resetDependencyRecomputations: () => void;
1614
- } & {
1615
- memoize: typeof import("reselect").weakMapMemoize;
1616
- argsMemoize: typeof import("reselect").weakMapMemoize;
1617
- }];
1618
- recomputations: () => number;
1619
- resetRecomputations: () => void;
1620
- dependencyRecomputations: () => number;
1621
- resetDependencyRecomputations: () => void;
1622
- } & {
1623
- memoize: typeof import("reselect").weakMapMemoize;
1624
- argsMemoize: typeof import("reselect").weakMapMemoize;
1625
- }];
1626
- recomputations: () => number;
1627
- resetRecomputations: () => void;
1628
- dependencyRecomputations: () => number;
1629
- resetDependencyRecomputations: () => void;
1630
- } & {
1631
- memoize: typeof import("reselect").weakMapMemoize;
1632
- argsMemoize: typeof import("reselect").weakMapMemoize;
1633
- };
1634
- export declare const selectorChartYAxis: ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
1635
- cacheKey: import("../../models").ChartStateCacheKey;
1636
- } & Partial<{}> & import("./useChartCartesianAxis.types").UseChartCartesianAxisState) => import("./computeAxisValue").ComputeResult<import("../../..").ChartsYAxisProps>) & {
1637
- clearCache: () => void;
1638
- resultsCount: () => number;
1639
- resetResultsCount: () => void;
1640
- } & {
1641
- resultFunc: (resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined, resultFuncArgs_1: {
1642
- width: number;
1643
- left: number;
1644
- right: number;
1645
- height: number;
1646
- top: number;
1647
- bottom: number;
1648
- }, resultFuncArgs_2: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>, resultFuncArgs_3: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>, resultFuncArgs_4: Map<AxisId, ZoomData> | undefined, resultFuncArgs_5: {
1649
- [x: string]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
1650
- [x: number]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
1651
- }, resultFuncArgs_6: import("./zoom.types").GetZoomAxisFilters | undefined) => import("./computeAxisValue").ComputeResult<import("../../..").ChartsYAxisProps>;
1652
- memoizedResultFunc: ((resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined, resultFuncArgs_1: {
1653
- width: number;
1654
- left: number;
1655
- right: number;
1656
- height: number;
1657
- top: number;
1658
- bottom: number;
1659
- }, resultFuncArgs_2: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>, resultFuncArgs_3: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>, resultFuncArgs_4: Map<AxisId, ZoomData> | undefined, resultFuncArgs_5: {
1660
- [x: string]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
1661
- [x: number]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
1662
- }, resultFuncArgs_6: import("./zoom.types").GetZoomAxisFilters | undefined) => import("./computeAxisValue").ComputeResult<import("../../..").ChartsYAxisProps>) & {
1663
- clearCache: () => void;
1664
- resultsCount: () => number;
1665
- resetResultsCount: () => void;
1666
- };
1667
- lastResult: () => import("./computeAxisValue").ComputeResult<import("../../..").ChartsYAxisProps>;
1668
- dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
1669
- cacheKey: import("../../models").ChartStateCacheKey;
1670
- }) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) & {
1671
- clearCache: () => void;
1672
- resultsCount: () => number;
1673
- resetResultsCount: () => void;
1674
- } & {
1675
- resultFunc: (resultFuncArgs_0: {
1676
- x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
1677
- y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
1678
- } | undefined) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined;
1679
- memoizedResultFunc: ((resultFuncArgs_0: {
1680
- x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
1681
- y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
1682
- } | undefined) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) & {
1683
- clearCache: () => void;
1684
- resultsCount: () => number;
1685
- resetResultsCount: () => void;
1686
- };
1687
- lastResult: () => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined;
1688
- dependencies: [(state: ChartState<[], [UseChartCartesianAxisSignature]>) => {
1689
- x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
1690
- y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
1691
- } | undefined];
1692
- recomputations: () => number;
1693
- resetRecomputations: () => void;
1694
- dependencyRecomputations: () => number;
1695
- resetDependencyRecomputations: () => void;
1696
- } & {
1697
- memoize: typeof import("reselect").weakMapMemoize;
1698
- argsMemoize: typeof import("reselect").weakMapMemoize;
1699
- }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
1700
- cacheKey: import("../../models").ChartStateCacheKey;
1701
- } & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState>) => {
1702
- width: number;
1703
- left: number;
1704
- right: number;
1705
- height: number;
1706
- top: number;
1707
- bottom: number;
1708
- }) & {
1709
- clearCache: () => void;
1710
- resultsCount: () => number;
1711
- resetResultsCount: () => void;
1712
- } & {
1713
- resultFunc: (resultFuncArgs_0: number, resultFuncArgs_1: number, resultFuncArgs_2: number, resultFuncArgs_3: number, resultFuncArgs_4: number, resultFuncArgs_5: number, resultFuncArgs_6: number, resultFuncArgs_7: number, resultFuncArgs_8: number, resultFuncArgs_9: number) => {
1714
- width: number;
1715
- left: number;
1716
- right: number;
1717
- height: number;
1718
- top: number;
1719
- bottom: number;
1720
- };
1721
- memoizedResultFunc: ((resultFuncArgs_0: number, resultFuncArgs_1: number, resultFuncArgs_2: number, resultFuncArgs_3: number, resultFuncArgs_4: number, resultFuncArgs_5: number, resultFuncArgs_6: number, resultFuncArgs_7: number, resultFuncArgs_8: number, resultFuncArgs_9: number) => {
1722
- width: number;
1723
- left: number;
1724
- right: number;
1725
- height: number;
1726
- top: number;
1727
- bottom: number;
1728
- }) & {
1729
- clearCache: () => void;
1730
- resultsCount: () => number;
1731
- resetResultsCount: () => void;
1732
- };
1733
- lastResult: () => {
1734
- width: number;
1735
- left: number;
1736
- right: number;
1737
- height: number;
1738
- top: number;
1739
- bottom: number;
1740
- };
1741
- dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
1742
- cacheKey: import("../../models").ChartStateCacheKey;
1743
- }) => number) & {
1744
- clearCache: () => void;
1745
- resultsCount: () => number;
1746
- resetResultsCount: () => void;
1747
- } & {
1748
- resultFunc: (resultFuncArgs_0: {
1749
- margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
1750
- width: number;
1751
- height: number;
1752
- propsWidth: number | undefined;
1753
- propsHeight: number | undefined;
1754
- }) => number;
1755
- memoizedResultFunc: ((resultFuncArgs_0: {
1756
- margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
1757
- width: number;
1758
- height: number;
1759
- propsWidth: number | undefined;
1760
- propsHeight: number | undefined;
1761
- }) => number) & {
1762
- clearCache: () => void;
1763
- resultsCount: () => number;
1764
- resetResultsCount: () => void;
1765
- };
1766
- lastResult: () => number;
1767
- dependencies: [import("../../..").ChartRootSelector<import("../../..").UseChartDimensionsSignature>];
1768
- recomputations: () => number;
1769
- resetRecomputations: () => void;
1770
- dependencyRecomputations: () => number;
1771
- resetDependencyRecomputations: () => void;
1772
- } & {
1773
- memoize: typeof import("reselect").weakMapMemoize;
1774
- argsMemoize: typeof import("reselect").weakMapMemoize;
1775
- }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
1776
- cacheKey: import("../../models").ChartStateCacheKey;
1777
- }) => number) & {
1778
- clearCache: () => void;
1779
- resultsCount: () => number;
1780
- resetResultsCount: () => void;
1781
- } & {
1782
- resultFunc: (resultFuncArgs_0: {
1783
- margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
1784
- width: number;
1785
- height: number;
1786
- propsWidth: number | undefined;
1787
- propsHeight: number | undefined;
1788
- }) => number;
1789
- memoizedResultFunc: ((resultFuncArgs_0: {
1790
- margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
1791
- width: number;
1792
- height: number;
1793
- propsWidth: number | undefined;
1794
- propsHeight: number | undefined;
1795
- }) => number) & {
1796
- clearCache: () => void;
1797
- resultsCount: () => number;
1798
- resetResultsCount: () => void;
1799
- };
1800
- lastResult: () => number;
1801
- dependencies: [import("../../..").ChartRootSelector<import("../../..").UseChartDimensionsSignature>];
1802
- recomputations: () => number;
1803
- resetRecomputations: () => void;
1804
- dependencyRecomputations: () => number;
1805
- resetDependencyRecomputations: () => void;
1806
- } & {
1807
- memoize: typeof import("reselect").weakMapMemoize;
1808
- argsMemoize: typeof import("reselect").weakMapMemoize;
1809
- }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
1810
- cacheKey: import("../../models").ChartStateCacheKey;
1811
- }) => number) & {
1812
- clearCache: () => void;
1813
- resultsCount: () => number;
1814
- resetResultsCount: () => void;
1815
- } & {
1816
- resultFunc: (resultFuncArgs_0: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) => number;
1817
- memoizedResultFunc: ((resultFuncArgs_0: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) => number) & {
1818
- clearCache: () => void;
1819
- resultsCount: () => number;
1820
- resetResultsCount: () => void;
1821
- };
1822
- lastResult: () => number;
1823
- dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
1824
- cacheKey: import("../../models").ChartStateCacheKey;
1825
- }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) & {
1826
- clearCache: () => void;
1827
- resultsCount: () => number;
1828
- resetResultsCount: () => void;
1829
- } & {
1830
- resultFunc: (resultFuncArgs_0: {
1831
- margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
1832
- width: number;
1833
- height: number;
1834
- propsWidth: number | undefined;
1835
- propsHeight: number | undefined;
1836
- }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
1837
- memoizedResultFunc: ((resultFuncArgs_0: {
1838
- margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
1839
- width: number;
1840
- height: number;
1841
- propsWidth: number | undefined;
1842
- propsHeight: number | undefined;
1843
- }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) & {
1844
- clearCache: () => void;
1845
- resultsCount: () => number;
1846
- resetResultsCount: () => void;
1847
- };
1848
- lastResult: () => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
1849
- dependencies: [import("../../..").ChartRootSelector<import("../../..").UseChartDimensionsSignature>];
1850
- recomputations: () => number;
1851
- resetRecomputations: () => void;
1852
- dependencyRecomputations: () => number;
1853
- resetDependencyRecomputations: () => void;
1854
- } & {
1855
- memoize: typeof import("reselect").weakMapMemoize;
1856
- argsMemoize: typeof import("reselect").weakMapMemoize;
1857
- }];
1858
- recomputations: () => number;
1859
- resetRecomputations: () => void;
1860
- dependencyRecomputations: () => number;
1861
- resetDependencyRecomputations: () => void;
1862
- } & {
1863
- memoize: typeof import("reselect").weakMapMemoize;
1864
- argsMemoize: typeof import("reselect").weakMapMemoize;
1865
- }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
1866
- cacheKey: import("../../models").ChartStateCacheKey;
1867
- }) => number) & {
1868
- clearCache: () => void;
1869
- resultsCount: () => number;
1870
- resetResultsCount: () => void;
1871
- } & {
1872
- resultFunc: (resultFuncArgs_0: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) => number;
1873
- memoizedResultFunc: ((resultFuncArgs_0: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) => number) & {
1874
- clearCache: () => void;
1875
- resultsCount: () => number;
1876
- resetResultsCount: () => void;
1877
- };
1878
- lastResult: () => number;
1879
- dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
1880
- cacheKey: import("../../models").ChartStateCacheKey;
1881
- }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) & {
1882
- clearCache: () => void;
1883
- resultsCount: () => number;
1884
- resetResultsCount: () => void;
1885
- } & {
1886
- resultFunc: (resultFuncArgs_0: {
1887
- margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
1888
- width: number;
1889
- height: number;
1890
- propsWidth: number | undefined;
1891
- propsHeight: number | undefined;
1892
- }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
1893
- memoizedResultFunc: ((resultFuncArgs_0: {
1894
- margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
1895
- width: number;
1896
- height: number;
1897
- propsWidth: number | undefined;
1898
- propsHeight: number | undefined;
1899
- }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) & {
1900
- clearCache: () => void;
1901
- resultsCount: () => number;
1902
- resetResultsCount: () => void;
1903
- };
1904
- lastResult: () => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
1905
- dependencies: [import("../../..").ChartRootSelector<import("../../..").UseChartDimensionsSignature>];
1906
- recomputations: () => number;
1907
- resetRecomputations: () => void;
1908
- dependencyRecomputations: () => number;
1909
- resetDependencyRecomputations: () => void;
1910
- } & {
1911
- memoize: typeof import("reselect").weakMapMemoize;
1912
- argsMemoize: typeof import("reselect").weakMapMemoize;
1913
- }];
1914
- recomputations: () => number;
1915
- resetRecomputations: () => void;
1916
- dependencyRecomputations: () => number;
1917
- resetDependencyRecomputations: () => void;
1918
- } & {
1919
- memoize: typeof import("reselect").weakMapMemoize;
1920
- argsMemoize: typeof import("reselect").weakMapMemoize;
1921
- }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
1922
- cacheKey: import("../../models").ChartStateCacheKey;
1923
- }) => number) & {
1924
- clearCache: () => void;
1925
- resultsCount: () => number;
1926
- resetResultsCount: () => void;
1927
- } & {
1928
- resultFunc: (resultFuncArgs_0: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) => number;
1929
- memoizedResultFunc: ((resultFuncArgs_0: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) => number) & {
1930
- clearCache: () => void;
1931
- resultsCount: () => number;
1932
- resetResultsCount: () => void;
1933
- };
1934
- lastResult: () => number;
1935
- dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
1936
- cacheKey: import("../../models").ChartStateCacheKey;
1937
- }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) & {
1938
- clearCache: () => void;
1939
- resultsCount: () => number;
1940
- resetResultsCount: () => void;
1941
- } & {
1942
- resultFunc: (resultFuncArgs_0: {
1943
- margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
1944
- width: number;
1945
- height: number;
1946
- propsWidth: number | undefined;
1947
- propsHeight: number | undefined;
1948
- }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
1949
- memoizedResultFunc: ((resultFuncArgs_0: {
1950
- margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
1951
- width: number;
1952
- height: number;
1953
- propsWidth: number | undefined;
1954
- propsHeight: number | undefined;
1955
- }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) & {
1956
- clearCache: () => void;
1957
- resultsCount: () => number;
1958
- resetResultsCount: () => void;
1959
- };
1960
- lastResult: () => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
1961
- dependencies: [import("../../..").ChartRootSelector<import("../../..").UseChartDimensionsSignature>];
1962
- recomputations: () => number;
1963
- resetRecomputations: () => void;
1964
- dependencyRecomputations: () => number;
1965
- resetDependencyRecomputations: () => void;
1966
- } & {
1967
- memoize: typeof import("reselect").weakMapMemoize;
1968
- argsMemoize: typeof import("reselect").weakMapMemoize;
1969
- }];
1970
- recomputations: () => number;
1971
- resetRecomputations: () => void;
1972
- dependencyRecomputations: () => number;
1973
- resetDependencyRecomputations: () => void;
1974
- } & {
1975
- memoize: typeof import("reselect").weakMapMemoize;
1976
- argsMemoize: typeof import("reselect").weakMapMemoize;
1977
- }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
1978
- cacheKey: import("../../models").ChartStateCacheKey;
1979
- }) => number) & {
1980
- clearCache: () => void;
1981
- resultsCount: () => number;
1982
- resetResultsCount: () => void;
1983
- } & {
1984
- resultFunc: (resultFuncArgs_0: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) => number;
1985
- memoizedResultFunc: ((resultFuncArgs_0: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) => number) & {
1986
- clearCache: () => void;
1987
- resultsCount: () => number;
1988
- resetResultsCount: () => void;
1989
- };
1990
- lastResult: () => number;
1991
- dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
1992
- cacheKey: import("../../models").ChartStateCacheKey;
1993
- }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) & {
1994
- clearCache: () => void;
1995
- resultsCount: () => number;
1996
- resetResultsCount: () => void;
1997
- } & {
1998
- resultFunc: (resultFuncArgs_0: {
1999
- margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
2000
- width: number;
2001
- height: number;
2002
- propsWidth: number | undefined;
2003
- propsHeight: number | undefined;
2004
- }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
2005
- memoizedResultFunc: ((resultFuncArgs_0: {
2006
- margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
2007
- width: number;
2008
- height: number;
2009
- propsWidth: number | undefined;
2010
- propsHeight: number | undefined;
2011
- }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) & {
2012
- clearCache: () => void;
2013
- resultsCount: () => number;
2014
- resetResultsCount: () => void;
2015
- };
2016
- lastResult: () => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
2017
- dependencies: [import("../../..").ChartRootSelector<import("../../..").UseChartDimensionsSignature>];
2018
- recomputations: () => number;
2019
- resetRecomputations: () => void;
2020
- dependencyRecomputations: () => number;
2021
- resetDependencyRecomputations: () => void;
2022
- } & {
2023
- memoize: typeof import("reselect").weakMapMemoize;
2024
- argsMemoize: typeof import("reselect").weakMapMemoize;
2025
- }];
2026
- recomputations: () => number;
2027
- resetRecomputations: () => void;
2028
- dependencyRecomputations: () => number;
2029
- resetDependencyRecomputations: () => void;
2030
- } & {
2031
- memoize: typeof import("reselect").weakMapMemoize;
2032
- argsMemoize: typeof import("reselect").weakMapMemoize;
2033
- }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
2034
- cacheKey: import("../../models").ChartStateCacheKey;
2035
- }) => number) & {
2036
- clearCache: () => void;
2037
- resultsCount: () => number;
2038
- resetResultsCount: () => void;
2039
- } & {
2040
- resultFunc: (resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) => number;
2041
- memoizedResultFunc: ((resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) => number) & {
2042
- clearCache: () => void;
2043
- resultsCount: () => number;
2044
- resetResultsCount: () => void;
2045
- };
2046
- lastResult: () => number;
2047
- dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
2048
- cacheKey: import("../../models").ChartStateCacheKey;
2049
- }) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) & {
2050
- clearCache: () => void;
2051
- resultsCount: () => number;
2052
- resetResultsCount: () => void;
2053
- } & {
2054
- resultFunc: (resultFuncArgs_0: {
2055
- x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
2056
- y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
2057
- } | undefined) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined;
2058
- memoizedResultFunc: ((resultFuncArgs_0: {
2059
- x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
2060
- y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
2061
- } | undefined) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) & {
2062
- clearCache: () => void;
2063
- resultsCount: () => number;
2064
- resetResultsCount: () => void;
2065
- };
2066
- lastResult: () => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined;
2067
- dependencies: [(state: ChartState<[], [UseChartCartesianAxisSignature]>) => {
2068
- x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
2069
- y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
2070
- } | undefined];
2071
- recomputations: () => number;
2072
- resetRecomputations: () => void;
2073
- dependencyRecomputations: () => number;
2074
- resetDependencyRecomputations: () => void;
2075
- } & {
2076
- memoize: typeof import("reselect").weakMapMemoize;
2077
- argsMemoize: typeof import("reselect").weakMapMemoize;
2078
- }];
2079
- recomputations: () => number;
2080
- resetRecomputations: () => void;
2081
- dependencyRecomputations: () => number;
2082
- resetDependencyRecomputations: () => void;
2083
- } & {
2084
- memoize: typeof import("reselect").weakMapMemoize;
2085
- argsMemoize: typeof import("reselect").weakMapMemoize;
2086
- }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
2087
- cacheKey: import("../../models").ChartStateCacheKey;
2088
- }) => number) & {
2089
- clearCache: () => void;
2090
- resultsCount: () => number;
2091
- resetResultsCount: () => void;
2092
- } & {
2093
- resultFunc: (resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) => number;
2094
- memoizedResultFunc: ((resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) => number) & {
2095
- clearCache: () => void;
2096
- resultsCount: () => number;
2097
- resetResultsCount: () => void;
2098
- };
2099
- lastResult: () => number;
2100
- dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
2101
- cacheKey: import("../../models").ChartStateCacheKey;
2102
- }) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) & {
2103
- clearCache: () => void;
2104
- resultsCount: () => number;
2105
- resetResultsCount: () => void;
2106
- } & {
2107
- resultFunc: (resultFuncArgs_0: {
2108
- x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
2109
- y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
2110
- } | undefined) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined;
2111
- memoizedResultFunc: ((resultFuncArgs_0: {
2112
- x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
2113
- y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
2114
- } | undefined) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) & {
2115
- clearCache: () => void;
2116
- resultsCount: () => number;
2117
- resetResultsCount: () => void;
2118
- };
2119
- lastResult: () => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined;
2120
- dependencies: [(state: ChartState<[], [UseChartCartesianAxisSignature]>) => {
2121
- x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
2122
- y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
2123
- } | undefined];
2124
- recomputations: () => number;
2125
- resetRecomputations: () => void;
2126
- dependencyRecomputations: () => number;
2127
- resetDependencyRecomputations: () => void;
2128
- } & {
2129
- memoize: typeof import("reselect").weakMapMemoize;
2130
- argsMemoize: typeof import("reselect").weakMapMemoize;
2131
- }];
2132
- recomputations: () => number;
2133
- resetRecomputations: () => void;
2134
- dependencyRecomputations: () => number;
2135
- resetDependencyRecomputations: () => void;
2136
- } & {
2137
- memoize: typeof import("reselect").weakMapMemoize;
2138
- argsMemoize: typeof import("reselect").weakMapMemoize;
2139
- }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
2140
- cacheKey: import("../../models").ChartStateCacheKey;
2141
- }) => number) & {
2142
- clearCache: () => void;
2143
- resultsCount: () => number;
2144
- resetResultsCount: () => void;
2145
- } & {
2146
- resultFunc: (resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) => number;
2147
- memoizedResultFunc: ((resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) => number) & {
2148
- clearCache: () => void;
2149
- resultsCount: () => number;
2150
- resetResultsCount: () => void;
2151
- };
2152
- lastResult: () => number;
2153
- dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
2154
- cacheKey: import("../../models").ChartStateCacheKey;
2155
- }) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) & {
2156
- clearCache: () => void;
2157
- resultsCount: () => number;
2158
- resetResultsCount: () => void;
2159
- } & {
2160
- resultFunc: (resultFuncArgs_0: {
2161
- x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
2162
- y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
2163
- } | undefined) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined;
2164
- memoizedResultFunc: ((resultFuncArgs_0: {
2165
- x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
2166
- y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
2167
- } | undefined) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) & {
2168
- clearCache: () => void;
2169
- resultsCount: () => number;
2170
- resetResultsCount: () => void;
2171
- };
2172
- lastResult: () => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined;
2173
- dependencies: [(state: ChartState<[], [UseChartCartesianAxisSignature]>) => {
2174
- x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
2175
- y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
2176
- } | undefined];
2177
- recomputations: () => number;
2178
- resetRecomputations: () => void;
2179
- dependencyRecomputations: () => number;
2180
- resetDependencyRecomputations: () => void;
2181
- } & {
2182
- memoize: typeof import("reselect").weakMapMemoize;
2183
- argsMemoize: typeof import("reselect").weakMapMemoize;
2184
- }];
2185
- recomputations: () => number;
2186
- resetRecomputations: () => void;
2187
- dependencyRecomputations: () => number;
2188
- resetDependencyRecomputations: () => void;
2189
- } & {
2190
- memoize: typeof import("reselect").weakMapMemoize;
2191
- argsMemoize: typeof import("reselect").weakMapMemoize;
2192
- }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
2193
- cacheKey: import("../../models").ChartStateCacheKey;
2194
- }) => number) & {
2195
- clearCache: () => void;
2196
- resultsCount: () => number;
2197
- resetResultsCount: () => void;
2198
- } & {
2199
- resultFunc: (resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) => number;
2200
- memoizedResultFunc: ((resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) => number) & {
2201
- clearCache: () => void;
2202
- resultsCount: () => number;
2203
- resetResultsCount: () => void;
2204
- };
2205
- lastResult: () => number;
2206
- dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
2207
- cacheKey: import("../../models").ChartStateCacheKey;
2208
- }) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) & {
2209
- clearCache: () => void;
2210
- resultsCount: () => number;
2211
- resetResultsCount: () => void;
2212
- } & {
2213
- resultFunc: (resultFuncArgs_0: {
2214
- x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
2215
- y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
2216
- } | undefined) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined;
2217
- memoizedResultFunc: ((resultFuncArgs_0: {
2218
- x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
2219
- y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
2220
- } | undefined) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) & {
2221
- clearCache: () => void;
2222
- resultsCount: () => number;
2223
- resetResultsCount: () => void;
2224
- };
2225
- lastResult: () => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined;
2226
- dependencies: [(state: ChartState<[], [UseChartCartesianAxisSignature]>) => {
2227
- x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
2228
- y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
2229
- } | undefined];
2230
- recomputations: () => number;
2231
- resetRecomputations: () => void;
2232
- dependencyRecomputations: () => number;
2233
- resetDependencyRecomputations: () => void;
2234
- } & {
2235
- memoize: typeof import("reselect").weakMapMemoize;
2236
- argsMemoize: typeof import("reselect").weakMapMemoize;
2237
- }];
2238
- recomputations: () => number;
2239
- resetRecomputations: () => void;
2240
- dependencyRecomputations: () => number;
2241
- resetDependencyRecomputations: () => void;
2242
- } & {
2243
- memoize: typeof import("reselect").weakMapMemoize;
2244
- argsMemoize: typeof import("reselect").weakMapMemoize;
2245
- }];
2246
- recomputations: () => number;
2247
- resetRecomputations: () => void;
2248
- dependencyRecomputations: () => number;
2249
- resetDependencyRecomputations: () => void;
2250
- } & {
2251
- memoize: typeof import("reselect").weakMapMemoize;
2252
- argsMemoize: typeof import("reselect").weakMapMemoize;
2253
- }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
2254
- cacheKey: import("../../models").ChartStateCacheKey;
2255
- }) => import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>) & {
2256
- clearCache: () => void;
2257
- resultsCount: () => number;
2258
- resetResultsCount: () => void;
2259
- } & {
2260
- resultFunc: (resultFuncArgs_0: {
2261
- processedSeries: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>;
2262
- seriesConfig: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>;
2263
- }) => import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>;
2264
- memoizedResultFunc: ((resultFuncArgs_0: {
2265
- processedSeries: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>;
2266
- seriesConfig: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>;
2267
- }) => import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>) & {
2268
- clearCache: () => void;
2269
- resultsCount: () => number;
2270
- resetResultsCount: () => void;
2271
- };
2272
- lastResult: () => import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>;
2273
- dependencies: [import("../../..").ChartRootSelector<import("../../..").UseChartSeriesSignature>];
2274
- recomputations: () => number;
2275
- resetRecomputations: () => void;
2276
- dependencyRecomputations: () => number;
2277
- resetDependencyRecomputations: () => void;
2278
- } & {
2279
- memoize: typeof import("reselect").weakMapMemoize;
2280
- argsMemoize: typeof import("reselect").weakMapMemoize;
2281
- }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
2282
- cacheKey: import("../../models").ChartStateCacheKey;
2283
- }) => import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>) & {
2284
- clearCache: () => void;
2285
- resultsCount: () => number;
2286
- resetResultsCount: () => void;
2287
- } & {
2288
- resultFunc: (resultFuncArgs_0: {
2289
- processedSeries: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>;
2290
- seriesConfig: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>;
2291
- }) => import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>;
2292
- memoizedResultFunc: ((resultFuncArgs_0: {
2293
- processedSeries: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>;
2294
- seriesConfig: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>;
2295
- }) => import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>) & {
2296
- clearCache: () => void;
2297
- resultsCount: () => number;
2298
- resetResultsCount: () => void;
2299
- };
2300
- lastResult: () => import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>;
2301
- dependencies: [import("../../..").ChartRootSelector<import("../../..").UseChartSeriesSignature>];
2302
- recomputations: () => number;
2303
- resetRecomputations: () => void;
2304
- dependencyRecomputations: () => number;
2305
- resetDependencyRecomputations: () => void;
2306
- } & {
2307
- memoize: typeof import("reselect").weakMapMemoize;
2308
- argsMemoize: typeof import("reselect").weakMapMemoize;
2309
- }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("./useChartCartesianAxis.types").UseChartCartesianAxisState & Partial<{}> & {
2310
- cacheKey: import("../../models").ChartStateCacheKey;
2311
- }) => Map<AxisId, ZoomData> | undefined) & {
2312
- clearCache: () => void;
2313
- resultsCount: () => number;
2314
- resetResultsCount: () => void;
2315
- } & {
2316
- resultFunc: (resultFuncArgs_0: {
2317
- isInteracting: boolean;
2318
- zoomData: readonly ZoomData[];
2319
- } | undefined) => Map<AxisId, ZoomData> | undefined;
2320
- memoizedResultFunc: ((resultFuncArgs_0: {
2321
- isInteracting: boolean;
2322
- zoomData: readonly ZoomData[];
2323
- } | undefined) => Map<AxisId, ZoomData> | undefined) & {
2324
- clearCache: () => void;
2325
- resultsCount: () => number;
2326
- resetResultsCount: () => void;
2327
- };
2328
- lastResult: () => Map<AxisId, ZoomData> | undefined;
2329
- dependencies: [(state: ChartState<[UseChartCartesianAxisSignature]>) => {
2330
- isInteracting: boolean;
2331
- zoomData: readonly ZoomData[];
2332
- } | undefined];
2333
- recomputations: () => number;
2334
- resetRecomputations: () => void;
2335
- dependencyRecomputations: () => number;
2336
- resetDependencyRecomputations: () => void;
2337
- } & {
2338
- memoize: typeof import("reselect").weakMapMemoize;
2339
- argsMemoize: typeof import("reselect").weakMapMemoize;
2340
- }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
2341
- cacheKey: import("../../models").ChartStateCacheKey;
2342
- }) => {
2343
- [x: string]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
2344
- [x: number]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
2345
- }) & {
2346
- clearCache: () => void;
2347
- resultsCount: () => number;
2348
- resetResultsCount: () => void;
2349
- } & {
2350
- resultFunc: (resultFuncArgs_0: Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>, resultFuncArgs_1: Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>) => {
2351
- [x: string]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
2352
- [x: number]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
2353
- };
2354
- memoizedResultFunc: ((resultFuncArgs_0: Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>, resultFuncArgs_1: Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>) => {
2355
- [x: string]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
2356
- [x: number]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
2357
- }) & {
2358
- clearCache: () => void;
2359
- resultsCount: () => number;
2360
- resetResultsCount: () => void;
2361
- };
2362
- lastResult: () => {
2363
- [x: string]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
2364
- [x: number]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
2365
- };
2366
- dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
2367
- cacheKey: import("../../models").ChartStateCacheKey;
2368
- }) => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>) & {
2369
- clearCache: () => void;
2370
- resultsCount: () => number;
2371
- resetResultsCount: () => void;
2372
- } & {
2373
- resultFunc: (resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>;
2374
- memoizedResultFunc: ((resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>) & {
2375
- clearCache: () => void;
2376
- resultsCount: () => number;
2377
- resetResultsCount: () => void;
2378
- };
2379
- lastResult: () => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>;
2380
- dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
2381
- cacheKey: import("../../models").ChartStateCacheKey;
2382
- }) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) & {
2383
- clearCache: () => void;
2384
- resultsCount: () => number;
2385
- resetResultsCount: () => void;
2386
- } & {
2387
- resultFunc: (resultFuncArgs_0: {
2388
- x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
2389
- y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
2390
- } | undefined) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined;
2391
- memoizedResultFunc: ((resultFuncArgs_0: {
2392
- x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
2393
- y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
2394
- } | undefined) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) & {
2395
- clearCache: () => void;
2396
- resultsCount: () => number;
2397
- resetResultsCount: () => void;
2398
- };
2399
- lastResult: () => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined;
2400
- dependencies: [(state: ChartState<[], [UseChartCartesianAxisSignature]>) => {
2401
- x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
2402
- y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
2403
- } | undefined];
2404
- recomputations: () => number;
2405
- resetRecomputations: () => void;
2406
- dependencyRecomputations: () => number;
2407
- resetDependencyRecomputations: () => void;
2408
- } & {
2409
- memoize: typeof import("reselect").weakMapMemoize;
2410
- argsMemoize: typeof import("reselect").weakMapMemoize;
2411
- }];
2412
- recomputations: () => number;
2413
- resetRecomputations: () => void;
2414
- dependencyRecomputations: () => number;
2415
- resetDependencyRecomputations: () => void;
2416
- } & {
2417
- memoize: typeof import("reselect").weakMapMemoize;
2418
- argsMemoize: typeof import("reselect").weakMapMemoize;
2419
- }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
2420
- cacheKey: import("../../models").ChartStateCacheKey;
2421
- }) => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>) & {
2422
- clearCache: () => void;
2423
- resultsCount: () => number;
2424
- resetResultsCount: () => void;
2425
- } & {
2426
- resultFunc: (resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>;
2427
- memoizedResultFunc: ((resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>) & {
2428
- clearCache: () => void;
2429
- resultsCount: () => number;
2430
- resetResultsCount: () => void;
2431
- };
2432
- lastResult: () => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>;
2433
- dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
2434
- cacheKey: import("../../models").ChartStateCacheKey;
2435
- }) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) & {
2436
- clearCache: () => void;
2437
- resultsCount: () => number;
2438
- resetResultsCount: () => void;
2439
- } & {
2440
- resultFunc: (resultFuncArgs_0: {
2441
- x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
2442
- y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
2443
- } | undefined) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined;
2444
- memoizedResultFunc: ((resultFuncArgs_0: {
2445
- x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
2446
- y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
2447
- } | undefined) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) & {
2448
- clearCache: () => void;
2449
- resultsCount: () => number;
2450
- resetResultsCount: () => void;
2451
- };
2452
- lastResult: () => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined;
2453
- dependencies: [(state: ChartState<[], [UseChartCartesianAxisSignature]>) => {
2454
- x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
2455
- y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
2456
- } | undefined];
2457
- recomputations: () => number;
2458
- resetRecomputations: () => void;
2459
- dependencyRecomputations: () => number;
2460
- resetDependencyRecomputations: () => void;
2461
- } & {
2462
- memoize: typeof import("reselect").weakMapMemoize;
2463
- argsMemoize: typeof import("reselect").weakMapMemoize;
2464
- }];
2465
- recomputations: () => number;
2466
- resetRecomputations: () => void;
2467
- dependencyRecomputations: () => number;
2468
- resetDependencyRecomputations: () => void;
2469
- } & {
2470
- memoize: typeof import("reselect").weakMapMemoize;
2471
- argsMemoize: typeof import("reselect").weakMapMemoize;
2472
- }];
2473
- recomputations: () => number;
2474
- resetRecomputations: () => void;
2475
- dependencyRecomputations: () => number;
2476
- resetDependencyRecomputations: () => void;
2477
- } & {
2478
- memoize: typeof import("reselect").weakMapMemoize;
2479
- argsMemoize: typeof import("reselect").weakMapMemoize;
2480
- }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("./useChartCartesianAxis.types").UseChartCartesianAxisState & Partial<{}> & {
2481
- cacheKey: import("../../models").ChartStateCacheKey;
2482
- } & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState>) => import("./zoom.types").GetZoomAxisFilters | undefined) & {
2483
- clearCache: () => void;
2484
- resultsCount: () => number;
2485
- resetResultsCount: () => void;
2486
- } & {
2487
- resultFunc: (resultFuncArgs_0: ((axis: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>, axisIndex: number) => import("./useChartCartesianAxis.types").ExtremumFilter | null) | undefined, resultFuncArgs_1: ((axis: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>, axisIndex: number) => import("./useChartCartesianAxis.types").ExtremumFilter | null) | undefined, resultFuncArgs_2: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined, resultFuncArgs_3: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) => import("./zoom.types").GetZoomAxisFilters | undefined;
2488
- memoizedResultFunc: ((resultFuncArgs_0: ((axis: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>, axisIndex: number) => import("./useChartCartesianAxis.types").ExtremumFilter | null) | undefined, resultFuncArgs_1: ((axis: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>, axisIndex: number) => import("./useChartCartesianAxis.types").ExtremumFilter | null) | undefined, resultFuncArgs_2: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined, resultFuncArgs_3: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) => import("./zoom.types").GetZoomAxisFilters | undefined) & {
2489
- clearCache: () => void;
2490
- resultsCount: () => number;
2491
- resetResultsCount: () => void;
2492
- };
2493
- lastResult: () => import("./zoom.types").GetZoomAxisFilters | undefined;
2494
- dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("./useChartCartesianAxis.types").UseChartCartesianAxisState & Partial<{}> & {
2495
- cacheKey: import("../../models").ChartStateCacheKey;
2496
- } & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState>) => ((axis: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>, axisIndex: number) => import("./useChartCartesianAxis.types").ExtremumFilter | null) | undefined) & {
2497
- clearCache: () => void;
2498
- resultsCount: () => number;
2499
- resetResultsCount: () => void;
2500
- } & {
2501
- resultFunc: (resultFuncArgs_0: Map<AxisId, ZoomData> | undefined, resultFuncArgs_1: {
2502
- [x: string]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
2503
- [x: number]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
2504
- }, resultFuncArgs_2: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>, resultFuncArgs_3: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>) => ((axis: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>, axisIndex: number) => import("./useChartCartesianAxis.types").ExtremumFilter | null) | undefined;
2505
- memoizedResultFunc: ((resultFuncArgs_0: Map<AxisId, ZoomData> | undefined, resultFuncArgs_1: {
2506
- [x: string]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
2507
- [x: number]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
2508
- }, resultFuncArgs_2: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>, resultFuncArgs_3: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>) => ((axis: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>, axisIndex: number) => import("./useChartCartesianAxis.types").ExtremumFilter | null) | undefined) & {
2509
- clearCache: () => void;
2510
- resultsCount: () => number;
2511
- resetResultsCount: () => void;
2512
- };
2513
- lastResult: () => ((axis: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>, axisIndex: number) => import("./useChartCartesianAxis.types").ExtremumFilter | null) | undefined;
2514
- dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("./useChartCartesianAxis.types").UseChartCartesianAxisState & Partial<{}> & {
2515
- cacheKey: import("../../models").ChartStateCacheKey;
2516
- }) => Map<AxisId, ZoomData> | undefined) & {
2517
- clearCache: () => void;
2518
- resultsCount: () => number;
2519
- resetResultsCount: () => void;
2520
- } & {
2521
- resultFunc: (resultFuncArgs_0: {
2522
- isInteracting: boolean;
2523
- zoomData: readonly ZoomData[];
2524
- } | undefined) => Map<AxisId, ZoomData> | undefined;
2525
- memoizedResultFunc: ((resultFuncArgs_0: {
2526
- isInteracting: boolean;
2527
- zoomData: readonly ZoomData[];
2528
- } | undefined) => Map<AxisId, ZoomData> | undefined) & {
2529
- clearCache: () => void;
2530
- resultsCount: () => number;
2531
- resetResultsCount: () => void;
2532
- };
2533
- lastResult: () => Map<AxisId, ZoomData> | undefined;
2534
- dependencies: [(state: ChartState<[UseChartCartesianAxisSignature]>) => {
2535
- isInteracting: boolean;
2536
- zoomData: readonly ZoomData[];
2537
- } | undefined];
2538
- recomputations: () => number;
2539
- resetRecomputations: () => void;
2540
- dependencyRecomputations: () => number;
2541
- resetDependencyRecomputations: () => void;
2542
- } & {
2543
- memoize: typeof import("reselect").weakMapMemoize;
2544
- argsMemoize: typeof import("reselect").weakMapMemoize;
2545
- }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
2546
- cacheKey: import("../../models").ChartStateCacheKey;
2547
- }) => {
2548
- [x: string]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
2549
- [x: number]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
2550
- }) & {
2551
- clearCache: () => void;
2552
- resultsCount: () => number;
2553
- resetResultsCount: () => void;
2554
- } & {
2555
- resultFunc: (resultFuncArgs_0: Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>, resultFuncArgs_1: Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>) => {
2556
- [x: string]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
2557
- [x: number]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
2558
- };
2559
- memoizedResultFunc: ((resultFuncArgs_0: Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>, resultFuncArgs_1: Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>) => {
2560
- [x: string]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
2561
- [x: number]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
2562
- }) & {
2563
- clearCache: () => void;
2564
- resultsCount: () => number;
2565
- resetResultsCount: () => void;
2566
- };
2567
- lastResult: () => {
2568
- [x: string]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
2569
- [x: number]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
2570
- };
2571
- dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
2572
- cacheKey: import("../../models").ChartStateCacheKey;
2573
- }) => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>) & {
2574
- clearCache: () => void;
2575
- resultsCount: () => number;
2576
- resetResultsCount: () => void;
2577
- } & {
2578
- resultFunc: (resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>;
2579
- memoizedResultFunc: ((resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>) & {
2580
- clearCache: () => void;
2581
- resultsCount: () => number;
2582
- resetResultsCount: () => void;
2583
- };
2584
- lastResult: () => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>;
2585
- dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
2586
- cacheKey: import("../../models").ChartStateCacheKey;
2587
- }) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) & {
2588
- clearCache: () => void;
2589
- resultsCount: () => number;
2590
- resetResultsCount: () => void;
2591
- } & {
2592
- resultFunc: (resultFuncArgs_0: {
2593
- x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
2594
- y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
2595
- } | undefined) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined;
2596
- memoizedResultFunc: ((resultFuncArgs_0: {
2597
- x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
2598
- y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
2599
- } | undefined) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) & {
2600
- clearCache: () => void;
2601
- resultsCount: () => number;
2602
- resetResultsCount: () => void;
2603
- };
2604
- lastResult: () => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined;
2605
- dependencies: [(state: ChartState<[], [UseChartCartesianAxisSignature]>) => {
2606
- x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
2607
- y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
2608
- } | undefined];
2609
- recomputations: () => number;
2610
- resetRecomputations: () => void;
2611
- dependencyRecomputations: () => number;
2612
- resetDependencyRecomputations: () => void;
2613
- } & {
2614
- memoize: typeof import("reselect").weakMapMemoize;
2615
- argsMemoize: typeof import("reselect").weakMapMemoize;
2616
- }];
2617
- recomputations: () => number;
2618
- resetRecomputations: () => void;
2619
- dependencyRecomputations: () => number;
2620
- resetDependencyRecomputations: () => void;
2621
- } & {
2622
- memoize: typeof import("reselect").weakMapMemoize;
2623
- argsMemoize: typeof import("reselect").weakMapMemoize;
2624
- }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
2625
- cacheKey: import("../../models").ChartStateCacheKey;
2626
- }) => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>) & {
2627
- clearCache: () => void;
2628
- resultsCount: () => number;
2629
- resetResultsCount: () => void;
2630
- } & {
2631
- resultFunc: (resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>;
2632
- memoizedResultFunc: ((resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>) & {
2633
- clearCache: () => void;
2634
- resultsCount: () => number;
2635
- resetResultsCount: () => void;
2636
- };
2637
- lastResult: () => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>;
2638
- dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
2639
- cacheKey: import("../../models").ChartStateCacheKey;
2640
- }) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) & {
2641
- clearCache: () => void;
2642
- resultsCount: () => number;
2643
- resetResultsCount: () => void;
2644
- } & {
2645
- resultFunc: (resultFuncArgs_0: {
2646
- x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
2647
- y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
2648
- } | undefined) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined;
2649
- memoizedResultFunc: ((resultFuncArgs_0: {
2650
- x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
2651
- y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
2652
- } | undefined) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) & {
2653
- clearCache: () => void;
2654
- resultsCount: () => number;
2655
- resetResultsCount: () => void;
2656
- };
2657
- lastResult: () => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined;
2658
- dependencies: [(state: ChartState<[], [UseChartCartesianAxisSignature]>) => {
2659
- x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
2660
- y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
2661
- } | undefined];
2662
- recomputations: () => number;
2663
- resetRecomputations: () => void;
2664
- dependencyRecomputations: () => number;
2665
- resetDependencyRecomputations: () => void;
2666
- } & {
2667
- memoize: typeof import("reselect").weakMapMemoize;
2668
- argsMemoize: typeof import("reselect").weakMapMemoize;
2669
- }];
2670
- recomputations: () => number;
2671
- resetRecomputations: () => void;
2672
- dependencyRecomputations: () => number;
2673
- resetDependencyRecomputations: () => void;
2674
- } & {
2675
- memoize: typeof import("reselect").weakMapMemoize;
2676
- argsMemoize: typeof import("reselect").weakMapMemoize;
2677
- }];
2678
- recomputations: () => number;
2679
- resetRecomputations: () => void;
2680
- dependencyRecomputations: () => number;
2681
- resetDependencyRecomputations: () => void;
2682
- } & {
2683
- memoize: typeof import("reselect").weakMapMemoize;
2684
- argsMemoize: typeof import("reselect").weakMapMemoize;
2685
- }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
2686
- cacheKey: import("../../models").ChartStateCacheKey;
2687
- }) => import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>) & {
2688
- clearCache: () => void;
2689
- resultsCount: () => number;
2690
- resetResultsCount: () => void;
2691
- } & {
2692
- resultFunc: (resultFuncArgs_0: {
2693
- processedSeries: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>;
2694
- seriesConfig: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>;
2695
- }) => import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>;
2696
- memoizedResultFunc: ((resultFuncArgs_0: {
2697
- processedSeries: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>;
2698
- seriesConfig: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>;
2699
- }) => import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>) & {
2700
- clearCache: () => void;
2701
- resultsCount: () => number;
2702
- resetResultsCount: () => void;
2703
- };
2704
- lastResult: () => import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>;
2705
- dependencies: [import("../../..").ChartRootSelector<import("../../..").UseChartSeriesSignature>];
2706
- recomputations: () => number;
2707
- resetRecomputations: () => void;
2708
- dependencyRecomputations: () => number;
2709
- resetDependencyRecomputations: () => void;
2710
- } & {
2711
- memoize: typeof import("reselect").weakMapMemoize;
2712
- argsMemoize: typeof import("reselect").weakMapMemoize;
2713
- }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
2714
- cacheKey: import("../../models").ChartStateCacheKey;
2715
- }) => import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>) & {
2716
- clearCache: () => void;
2717
- resultsCount: () => number;
2718
- resetResultsCount: () => void;
2719
- } & {
2720
- resultFunc: (resultFuncArgs_0: {
2721
- processedSeries: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>;
2722
- seriesConfig: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>;
2723
- }) => import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>;
2724
- memoizedResultFunc: ((resultFuncArgs_0: {
2725
- processedSeries: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>;
2726
- seriesConfig: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>;
2727
- }) => import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>) & {
2728
- clearCache: () => void;
2729
- resultsCount: () => number;
2730
- resetResultsCount: () => void;
2731
- };
2732
- lastResult: () => import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>;
2733
- dependencies: [import("../../..").ChartRootSelector<import("../../..").UseChartSeriesSignature>];
2734
- recomputations: () => number;
2735
- resetRecomputations: () => void;
2736
- dependencyRecomputations: () => number;
2737
- resetDependencyRecomputations: () => void;
2738
- } & {
2739
- memoize: typeof import("reselect").weakMapMemoize;
2740
- argsMemoize: typeof import("reselect").weakMapMemoize;
2741
- }];
2742
- recomputations: () => number;
2743
- resetRecomputations: () => void;
2744
- dependencyRecomputations: () => number;
2745
- resetDependencyRecomputations: () => void;
2746
- } & {
2747
- memoize: typeof import("reselect").weakMapMemoize;
2748
- argsMemoize: typeof import("reselect").weakMapMemoize;
2749
- }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("./useChartCartesianAxis.types").UseChartCartesianAxisState & Partial<{}> & {
2750
- cacheKey: import("../../models").ChartStateCacheKey;
2751
- } & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState>) => ((axis: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>, axisIndex: number) => import("./useChartCartesianAxis.types").ExtremumFilter | null) | undefined) & {
2752
- clearCache: () => void;
2753
- resultsCount: () => number;
2754
- resetResultsCount: () => void;
2755
- } & {
2756
- resultFunc: (resultFuncArgs_0: Map<AxisId, ZoomData> | undefined, resultFuncArgs_1: {
2757
- [x: string]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
2758
- [x: number]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
2759
- }, resultFuncArgs_2: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>, resultFuncArgs_3: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>) => ((axis: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>, axisIndex: number) => import("./useChartCartesianAxis.types").ExtremumFilter | null) | undefined;
2760
- memoizedResultFunc: ((resultFuncArgs_0: Map<AxisId, ZoomData> | undefined, resultFuncArgs_1: {
2761
- [x: string]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
2762
- [x: number]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
2763
- }, resultFuncArgs_2: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>, resultFuncArgs_3: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>) => ((axis: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>, axisIndex: number) => import("./useChartCartesianAxis.types").ExtremumFilter | null) | undefined) & {
2764
- clearCache: () => void;
2765
- resultsCount: () => number;
2766
- resetResultsCount: () => void;
2767
- };
2768
- lastResult: () => ((axis: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>, axisIndex: number) => import("./useChartCartesianAxis.types").ExtremumFilter | null) | undefined;
2769
- dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("./useChartCartesianAxis.types").UseChartCartesianAxisState & Partial<{}> & {
2770
- cacheKey: import("../../models").ChartStateCacheKey;
2771
- }) => Map<AxisId, ZoomData> | undefined) & {
2772
- clearCache: () => void;
2773
- resultsCount: () => number;
2774
- resetResultsCount: () => void;
2775
- } & {
2776
- resultFunc: (resultFuncArgs_0: {
2777
- isInteracting: boolean;
2778
- zoomData: readonly ZoomData[];
2779
- } | undefined) => Map<AxisId, ZoomData> | undefined;
2780
- memoizedResultFunc: ((resultFuncArgs_0: {
2781
- isInteracting: boolean;
2782
- zoomData: readonly ZoomData[];
2783
- } | undefined) => Map<AxisId, ZoomData> | undefined) & {
2784
- clearCache: () => void;
2785
- resultsCount: () => number;
2786
- resetResultsCount: () => void;
2787
- };
2788
- lastResult: () => Map<AxisId, ZoomData> | undefined;
2789
- dependencies: [(state: ChartState<[UseChartCartesianAxisSignature]>) => {
2790
- isInteracting: boolean;
2791
- zoomData: readonly ZoomData[];
2792
- } | undefined];
2793
- recomputations: () => number;
2794
- resetRecomputations: () => void;
2795
- dependencyRecomputations: () => number;
2796
- resetDependencyRecomputations: () => void;
2797
- } & {
2798
- memoize: typeof import("reselect").weakMapMemoize;
2799
- argsMemoize: typeof import("reselect").weakMapMemoize;
2800
- }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
2801
- cacheKey: import("../../models").ChartStateCacheKey;
2802
- }) => {
2803
- [x: string]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
2804
- [x: number]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
2805
- }) & {
2806
- clearCache: () => void;
2807
- resultsCount: () => number;
2808
- resetResultsCount: () => void;
2809
- } & {
2810
- resultFunc: (resultFuncArgs_0: Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>, resultFuncArgs_1: Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>) => {
2811
- [x: string]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
2812
- [x: number]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
2813
- };
2814
- memoizedResultFunc: ((resultFuncArgs_0: Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>, resultFuncArgs_1: Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>) => {
2815
- [x: string]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
2816
- [x: number]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
2817
- }) & {
2818
- clearCache: () => void;
2819
- resultsCount: () => number;
2820
- resetResultsCount: () => void;
2821
- };
2822
- lastResult: () => {
2823
- [x: string]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
2824
- [x: number]: import("./useChartCartesianAxis.types").DefaultizedZoomOptions;
2825
- };
2826
- dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
2827
- cacheKey: import("../../models").ChartStateCacheKey;
2828
- }) => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>) & {
2829
- clearCache: () => void;
2830
- resultsCount: () => number;
2831
- resetResultsCount: () => void;
2832
- } & {
2833
- resultFunc: (resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>;
2834
- memoizedResultFunc: ((resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>) & {
2835
- clearCache: () => void;
2836
- resultsCount: () => number;
2837
- resetResultsCount: () => void;
2838
- };
2839
- lastResult: () => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>;
2840
- dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
2841
- cacheKey: import("../../models").ChartStateCacheKey;
2842
- }) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) & {
2843
- clearCache: () => void;
2844
- resultsCount: () => number;
2845
- resetResultsCount: () => void;
2846
- } & {
2847
- resultFunc: (resultFuncArgs_0: {
2848
- x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
2849
- y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
2850
- } | undefined) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined;
2851
- memoizedResultFunc: ((resultFuncArgs_0: {
2852
- x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
2853
- y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
2854
- } | undefined) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) & {
2855
- clearCache: () => void;
2856
- resultsCount: () => number;
2857
- resetResultsCount: () => void;
2858
- };
2859
- lastResult: () => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined;
2860
- dependencies: [(state: ChartState<[], [UseChartCartesianAxisSignature]>) => {
2861
- x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
2862
- y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
2863
- } | undefined];
2864
- recomputations: () => number;
2865
- resetRecomputations: () => void;
2866
- dependencyRecomputations: () => number;
2867
- resetDependencyRecomputations: () => void;
2868
- } & {
2869
- memoize: typeof import("reselect").weakMapMemoize;
2870
- argsMemoize: typeof import("reselect").weakMapMemoize;
2871
- }];
2872
- recomputations: () => number;
2873
- resetRecomputations: () => void;
2874
- dependencyRecomputations: () => number;
2875
- resetDependencyRecomputations: () => void;
2876
- } & {
2877
- memoize: typeof import("reselect").weakMapMemoize;
2878
- argsMemoize: typeof import("reselect").weakMapMemoize;
2879
- }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
2880
- cacheKey: import("../../models").ChartStateCacheKey;
2881
- }) => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>) & {
2882
- clearCache: () => void;
2883
- resultsCount: () => number;
2884
- resetResultsCount: () => void;
2885
- } & {
2886
- resultFunc: (resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>;
2887
- memoizedResultFunc: ((resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>) & {
2888
- clearCache: () => void;
2889
- resultsCount: () => number;
2890
- resetResultsCount: () => void;
2891
- };
2892
- lastResult: () => Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>;
2893
- dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
2894
- cacheKey: import("../../models").ChartStateCacheKey;
2895
- }) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) & {
2896
- clearCache: () => void;
2897
- resultsCount: () => number;
2898
- resetResultsCount: () => void;
2899
- } & {
2900
- resultFunc: (resultFuncArgs_0: {
2901
- x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
2902
- y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
2903
- } | undefined) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined;
2904
- memoizedResultFunc: ((resultFuncArgs_0: {
2905
- x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
2906
- y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
2907
- } | undefined) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) & {
2908
- clearCache: () => void;
2909
- resultsCount: () => number;
2910
- resetResultsCount: () => void;
2911
- };
2912
- lastResult: () => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined;
2913
- dependencies: [(state: ChartState<[], [UseChartCartesianAxisSignature]>) => {
2914
- x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
2915
- y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
2916
- } | undefined];
2917
- recomputations: () => number;
2918
- resetRecomputations: () => void;
2919
- dependencyRecomputations: () => number;
2920
- resetDependencyRecomputations: () => void;
2921
- } & {
2922
- memoize: typeof import("reselect").weakMapMemoize;
2923
- argsMemoize: typeof import("reselect").weakMapMemoize;
2924
- }];
2925
- recomputations: () => number;
2926
- resetRecomputations: () => void;
2927
- dependencyRecomputations: () => number;
2928
- resetDependencyRecomputations: () => void;
2929
- } & {
2930
- memoize: typeof import("reselect").weakMapMemoize;
2931
- argsMemoize: typeof import("reselect").weakMapMemoize;
2932
- }];
2933
- recomputations: () => number;
2934
- resetRecomputations: () => void;
2935
- dependencyRecomputations: () => number;
2936
- resetDependencyRecomputations: () => void;
2937
- } & {
2938
- memoize: typeof import("reselect").weakMapMemoize;
2939
- argsMemoize: typeof import("reselect").weakMapMemoize;
2940
- }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
2941
- cacheKey: import("../../models").ChartStateCacheKey;
2942
- }) => import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>) & {
2943
- clearCache: () => void;
2944
- resultsCount: () => number;
2945
- resetResultsCount: () => void;
2946
- } & {
2947
- resultFunc: (resultFuncArgs_0: {
2948
- processedSeries: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>;
2949
- seriesConfig: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>;
2950
- }) => import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>;
2951
- memoizedResultFunc: ((resultFuncArgs_0: {
2952
- processedSeries: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>;
2953
- seriesConfig: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>;
2954
- }) => import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>) & {
2955
- clearCache: () => void;
2956
- resultsCount: () => number;
2957
- resetResultsCount: () => void;
2958
- };
2959
- lastResult: () => import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>;
2960
- dependencies: [import("../../..").ChartRootSelector<import("../../..").UseChartSeriesSignature>];
2961
- recomputations: () => number;
2962
- resetRecomputations: () => void;
2963
- dependencyRecomputations: () => number;
2964
- resetDependencyRecomputations: () => void;
2965
- } & {
2966
- memoize: typeof import("reselect").weakMapMemoize;
2967
- argsMemoize: typeof import("reselect").weakMapMemoize;
2968
- }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
2969
- cacheKey: import("../../models").ChartStateCacheKey;
2970
- }) => import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>) & {
2971
- clearCache: () => void;
2972
- resultsCount: () => number;
2973
- resetResultsCount: () => void;
2974
- } & {
2975
- resultFunc: (resultFuncArgs_0: {
2976
- processedSeries: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>;
2977
- seriesConfig: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>;
2978
- }) => import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>;
2979
- memoizedResultFunc: ((resultFuncArgs_0: {
2980
- processedSeries: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>;
2981
- seriesConfig: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>;
2982
- }) => import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>) & {
2983
- clearCache: () => void;
2984
- resultsCount: () => number;
2985
- resetResultsCount: () => void;
2986
- };
2987
- lastResult: () => import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>;
2988
- dependencies: [import("../../..").ChartRootSelector<import("../../..").UseChartSeriesSignature>];
2989
- recomputations: () => number;
2990
- resetRecomputations: () => void;
2991
- dependencyRecomputations: () => number;
2992
- resetDependencyRecomputations: () => void;
2993
- } & {
2994
- memoize: typeof import("reselect").weakMapMemoize;
2995
- argsMemoize: typeof import("reselect").weakMapMemoize;
2996
- }];
2997
- recomputations: () => number;
2998
- resetRecomputations: () => void;
2999
- dependencyRecomputations: () => number;
3000
- resetDependencyRecomputations: () => void;
3001
- } & {
3002
- memoize: typeof import("reselect").weakMapMemoize;
3003
- argsMemoize: typeof import("reselect").weakMapMemoize;
3004
- }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
3005
- cacheKey: import("../../models").ChartStateCacheKey;
3006
- }) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) & {
3007
- clearCache: () => void;
3008
- resultsCount: () => number;
3009
- resetResultsCount: () => void;
3010
- } & {
3011
- resultFunc: (resultFuncArgs_0: {
3012
- x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
3013
- y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
3014
- } | undefined) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined;
3015
- memoizedResultFunc: ((resultFuncArgs_0: {
3016
- x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
3017
- y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
3018
- } | undefined) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) & {
3019
- clearCache: () => void;
3020
- resultsCount: () => number;
3021
- resetResultsCount: () => void;
3022
- };
3023
- lastResult: () => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined;
3024
- dependencies: [(state: ChartState<[], [UseChartCartesianAxisSignature]>) => {
3025
- x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
3026
- y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
3027
- } | undefined];
3028
- recomputations: () => number;
3029
- resetRecomputations: () => void;
3030
- dependencyRecomputations: () => number;
3031
- resetDependencyRecomputations: () => void;
3032
- } & {
3033
- memoize: typeof import("reselect").weakMapMemoize;
3034
- argsMemoize: typeof import("reselect").weakMapMemoize;
3035
- }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("./useChartCartesianAxis.types").UseChartCartesianAxisState> & {
3036
- cacheKey: import("../../models").ChartStateCacheKey;
3037
- }) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) & {
3038
- clearCache: () => void;
3039
- resultsCount: () => number;
3040
- resetResultsCount: () => void;
3041
- } & {
3042
- resultFunc: (resultFuncArgs_0: {
3043
- x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
3044
- y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
3045
- } | undefined) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined;
3046
- memoizedResultFunc: ((resultFuncArgs_0: {
3047
- x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
3048
- y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
3049
- } | undefined) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) & {
3050
- clearCache: () => void;
3051
- resultsCount: () => number;
3052
- resetResultsCount: () => void;
3053
- };
3054
- lastResult: () => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined;
3055
- dependencies: [(state: ChartState<[], [UseChartCartesianAxisSignature]>) => {
3056
- x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
3057
- y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
3058
- } | undefined];
3059
- recomputations: () => number;
3060
- resetRecomputations: () => void;
3061
- dependencyRecomputations: () => number;
3062
- resetDependencyRecomputations: () => void;
3063
- } & {
3064
- memoize: typeof import("reselect").weakMapMemoize;
3065
- argsMemoize: typeof import("reselect").weakMapMemoize;
3066
- }];
3067
- recomputations: () => number;
3068
- resetRecomputations: () => void;
3069
- dependencyRecomputations: () => number;
3070
- resetDependencyRecomputations: () => void;
3071
- } & {
3072
- memoize: typeof import("reselect").weakMapMemoize;
3073
- argsMemoize: typeof import("reselect").weakMapMemoize;
3074
- }];
3075
- recomputations: () => number;
3076
- resetRecomputations: () => void;
3077
- dependencyRecomputations: () => number;
3078
- resetDependencyRecomputations: () => void;
3079
- } & {
3080
- memoize: typeof import("reselect").weakMapMemoize;
3081
- argsMemoize: typeof import("reselect").weakMapMemoize;
3082
- };