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

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