@mui/x-charts 8.4.0 → 8.5.1

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 (194) hide show
  1. package/BarChart/BarChart.d.ts +9 -2
  2. package/BarChart/BarChart.js +7 -1
  3. package/BarChart/BarLabel/BarLabel.d.ts +1 -1
  4. package/BarChart/seriesConfig/seriesProcessor.js +1 -1
  5. package/BarChart/useBarChartProps.js +1 -1
  6. package/CHANGELOG.md +215 -0
  7. package/ChartContainer/ChartContainer.d.ts +21 -2
  8. package/ChartContainer/ChartContainer.js +16 -0
  9. package/ChartContainer/useChartContainerProps.js +7 -3
  10. package/ChartDataProvider/ChartDataProvider.d.ts +11 -1
  11. package/ChartDataProvider/ChartDataProvider.js +19 -2
  12. package/ChartDataProvider/useChartDataProviderProps.d.ts +2 -0
  13. package/ChartDataProvider/useChartDataProviderProps.js +7 -3
  14. package/ChartsAxisHighlight/ChartsAxisHighlightPath.d.ts +1 -1
  15. package/ChartsGrid/styledComponents.d.ts +2 -2
  16. package/ChartsReferenceLine/common.d.ts +1 -1
  17. package/ChartsTooltip/ChartsTooltip.js +1 -1
  18. package/ChartsTooltip/ChartsTooltipContainer.js +21 -16
  19. package/ChartsTooltip/ChartsTooltipTable.d.ts +4 -4
  20. package/ChartsTooltip/utils.d.ts +6 -0
  21. package/ChartsTooltip/utils.js +19 -1
  22. package/LineChart/LineChart.d.ts +9 -2
  23. package/LineChart/LineChart.js +7 -1
  24. package/LineChart/useLineChartProps.js +1 -1
  25. package/PieChart/PieChart.d.ts +10 -3
  26. package/PieChart/PieChart.js +12 -11
  27. package/RadarChart/RadarChart.d.ts +21 -3
  28. package/RadarChart/RadarChart.js +16 -2
  29. package/RadarChart/RadarChart.plugins.d.ts +5 -0
  30. package/RadarChart/RadarChart.plugins.js +10 -0
  31. package/RadarChart/RadarDataProvider/RadarDataProvider.d.ts +6 -11
  32. package/RadarChart/RadarDataProvider/RadarDataProvider.js +6 -116
  33. package/RadarChart/index.d.ts +2 -0
  34. package/RadarChart/index.js +15 -1
  35. package/RadarChart/useRadarChartProps.d.ts +2 -1
  36. package/RadarChart/useRadarChartProps.js +3 -1
  37. package/ScatterChart/ScatterChart.d.ts +9 -2
  38. package/ScatterChart/ScatterChart.js +7 -1
  39. package/ScatterChart/useScatterChartProps.js +4 -2
  40. package/SparkLineChart/SparkLineChart.d.ts +1 -1
  41. package/Toolbar/Toolbar.d.ts +11 -4
  42. package/Toolbar/Toolbar.js +38 -7
  43. package/Toolbar/Toolbar.types.d.ts +15 -0
  44. package/Toolbar/Toolbar.types.js +5 -0
  45. package/Toolbar/ToolbarButton.d.ts +8 -2
  46. package/Toolbar/ToolbarButton.js +39 -7
  47. package/Toolbar/chartToolbarClasses.d.ts +6 -0
  48. package/Toolbar/chartToolbarClasses.js +9 -0
  49. package/Toolbar/index.d.ts +3 -1
  50. package/Toolbar/index.js +22 -0
  51. package/context/ChartsSlotsContext.d.ts +20 -0
  52. package/context/ChartsSlotsContext.js +44 -0
  53. package/context/index.d.ts +2 -1
  54. package/context/index.js +11 -0
  55. package/context/useChartApiContext.d.ts +10 -0
  56. package/context/useChartApiContext.js +27 -0
  57. package/esm/BarChart/BarChart.d.ts +9 -2
  58. package/esm/BarChart/BarChart.js +7 -1
  59. package/esm/BarChart/BarLabel/BarLabel.d.ts +1 -1
  60. package/esm/BarChart/seriesConfig/seriesProcessor.js +1 -1
  61. package/esm/BarChart/useBarChartProps.js +1 -1
  62. package/esm/ChartContainer/ChartContainer.d.ts +21 -2
  63. package/esm/ChartContainer/ChartContainer.js +16 -0
  64. package/esm/ChartContainer/useChartContainerProps.js +7 -3
  65. package/esm/ChartDataProvider/ChartDataProvider.d.ts +11 -1
  66. package/esm/ChartDataProvider/ChartDataProvider.js +19 -2
  67. package/esm/ChartDataProvider/useChartDataProviderProps.d.ts +2 -0
  68. package/esm/ChartDataProvider/useChartDataProviderProps.js +7 -3
  69. package/esm/ChartsAxisHighlight/ChartsAxisHighlightPath.d.ts +1 -1
  70. package/esm/ChartsGrid/styledComponents.d.ts +2 -2
  71. package/esm/ChartsReferenceLine/common.d.ts +1 -1
  72. package/esm/ChartsTooltip/ChartsTooltip.js +1 -1
  73. package/esm/ChartsTooltip/ChartsTooltipContainer.js +22 -17
  74. package/esm/ChartsTooltip/ChartsTooltipTable.d.ts +4 -4
  75. package/esm/ChartsTooltip/utils.d.ts +6 -0
  76. package/esm/ChartsTooltip/utils.js +16 -1
  77. package/esm/LineChart/LineChart.d.ts +9 -2
  78. package/esm/LineChart/LineChart.js +7 -1
  79. package/esm/LineChart/useLineChartProps.js +1 -1
  80. package/esm/PieChart/PieChart.d.ts +10 -3
  81. package/esm/PieChart/PieChart.js +12 -11
  82. package/esm/RadarChart/RadarChart.d.ts +21 -3
  83. package/esm/RadarChart/RadarChart.js +16 -2
  84. package/esm/RadarChart/RadarChart.plugins.d.ts +5 -0
  85. package/esm/RadarChart/RadarChart.plugins.js +4 -0
  86. package/esm/RadarChart/RadarDataProvider/RadarDataProvider.d.ts +6 -11
  87. package/esm/RadarChart/RadarDataProvider/RadarDataProvider.js +5 -115
  88. package/esm/RadarChart/index.d.ts +2 -0
  89. package/esm/RadarChart/index.js +2 -0
  90. package/esm/RadarChart/useRadarChartProps.d.ts +2 -1
  91. package/esm/RadarChart/useRadarChartProps.js +3 -1
  92. package/esm/ScatterChart/ScatterChart.d.ts +9 -2
  93. package/esm/ScatterChart/ScatterChart.js +7 -1
  94. package/esm/ScatterChart/useScatterChartProps.js +4 -2
  95. package/esm/SparkLineChart/SparkLineChart.d.ts +1 -1
  96. package/esm/Toolbar/Toolbar.d.ts +11 -4
  97. package/esm/Toolbar/Toolbar.js +36 -6
  98. package/esm/Toolbar/Toolbar.types.d.ts +15 -0
  99. package/esm/Toolbar/Toolbar.types.js +1 -0
  100. package/esm/Toolbar/ToolbarButton.d.ts +8 -2
  101. package/esm/Toolbar/ToolbarButton.js +39 -6
  102. package/esm/Toolbar/chartToolbarClasses.d.ts +6 -0
  103. package/esm/Toolbar/chartToolbarClasses.js +2 -0
  104. package/esm/Toolbar/index.d.ts +3 -1
  105. package/esm/Toolbar/index.js +3 -1
  106. package/esm/context/ChartsSlotsContext.d.ts +20 -0
  107. package/esm/context/ChartsSlotsContext.js +35 -0
  108. package/esm/context/index.d.ts +2 -1
  109. package/esm/context/index.js +1 -0
  110. package/esm/context/useChartApiContext.d.ts +10 -0
  111. package/esm/context/useChartApiContext.js +21 -0
  112. package/esm/hooks/index.d.ts +1 -0
  113. package/esm/hooks/index.js +1 -0
  114. package/esm/index.js +1 -1
  115. package/esm/internals/components/AxisSharedComponents.d.ts +1 -1
  116. package/esm/internals/components/ChartsWrapper/ChartsWrapper.d.ts +5 -0
  117. package/esm/internals/components/ChartsWrapper/ChartsWrapper.js +22 -3
  118. package/esm/internals/constants.d.ts +10 -1
  119. package/esm/internals/constants.js +10 -1
  120. package/esm/internals/dateHelpers.d.ts +15 -0
  121. package/esm/internals/dateHelpers.js +20 -0
  122. package/esm/internals/domUtils.d.ts +1 -2
  123. package/esm/internals/domUtils.js +8 -19
  124. package/esm/internals/index.d.ts +6 -1
  125. package/esm/internals/index.js +6 -1
  126. package/esm/internals/invertScale.d.ts +2 -0
  127. package/esm/internals/invertScale.js +8 -0
  128. package/esm/internals/material/index.d.ts +2 -0
  129. package/esm/internals/material/index.js +2 -0
  130. package/esm/internals/plugins/allPlugins.d.ts +1 -0
  131. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/computeAxisValue.js +2 -8
  132. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/defaultizeZoom.d.ts +14 -0
  133. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/defaultizeZoom.js +4 -3
  134. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxis.types.d.ts +5 -2
  135. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisRendering.selectors.d.ts +3000 -0
  136. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisRendering.selectors.js +9 -1
  137. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/zoom.types.d.ts +9 -0
  138. package/esm/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.js +5 -0
  139. package/esm/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.js +11 -5
  140. package/esm/internals/plugins/featurePlugins/useChartPolarAxis/computeAxisValue.js +2 -8
  141. package/esm/locales/index.d.ts +3 -1
  142. package/esm/locales/index.js +2 -0
  143. package/esm/locales/ptBR.d.ts +16 -0
  144. package/esm/locales/ptBR.js +9 -0
  145. package/esm/locales/ptPT.d.ts +16 -0
  146. package/esm/locales/ptPT.js +9 -0
  147. package/esm/models/axis.d.ts +2 -1
  148. package/esm/models/index.d.ts +2 -2
  149. package/esm/models/index.js +1 -0
  150. package/esm/models/seriesType/bar.d.ts +2 -2
  151. package/esm/models/slots/chartsBaseSlotProps.d.ts +7 -0
  152. package/esm/models/slots/chartsBaseSlots.d.ts +2 -1
  153. package/hooks/index.d.ts +1 -0
  154. package/hooks/index.js +12 -0
  155. package/index.js +1 -1
  156. package/internals/components/AxisSharedComponents.d.ts +1 -1
  157. package/internals/components/ChartsWrapper/ChartsWrapper.d.ts +5 -0
  158. package/internals/components/ChartsWrapper/ChartsWrapper.js +22 -3
  159. package/internals/constants.d.ts +10 -1
  160. package/internals/constants.js +11 -2
  161. package/internals/dateHelpers.d.ts +15 -0
  162. package/internals/dateHelpers.js +28 -0
  163. package/internals/domUtils.d.ts +1 -2
  164. package/internals/domUtils.js +8 -20
  165. package/internals/index.d.ts +6 -1
  166. package/internals/index.js +68 -8
  167. package/internals/invertScale.d.ts +2 -0
  168. package/internals/invertScale.js +14 -0
  169. package/internals/material/index.d.ts +2 -0
  170. package/internals/material/index.js +2 -0
  171. package/internals/plugins/allPlugins.d.ts +1 -0
  172. package/internals/plugins/featurePlugins/useChartCartesianAxis/computeAxisValue.js +5 -11
  173. package/internals/plugins/featurePlugins/useChartCartesianAxis/defaultizeZoom.d.ts +14 -0
  174. package/internals/plugins/featurePlugins/useChartCartesianAxis/defaultizeZoom.js +4 -3
  175. package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxis.types.d.ts +5 -2
  176. package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisRendering.selectors.d.ts +3000 -0
  177. package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisRendering.selectors.js +10 -2
  178. package/internals/plugins/featurePlugins/useChartCartesianAxis/zoom.types.d.ts +9 -0
  179. package/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.js +5 -0
  180. package/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.js +11 -5
  181. package/internals/plugins/featurePlugins/useChartPolarAxis/computeAxisValue.js +5 -11
  182. package/locales/index.d.ts +3 -1
  183. package/locales/index.js +22 -0
  184. package/locales/ptBR.d.ts +16 -0
  185. package/locales/ptBR.js +15 -0
  186. package/locales/ptPT.d.ts +16 -0
  187. package/locales/ptPT.js +15 -0
  188. package/models/axis.d.ts +2 -1
  189. package/models/index.d.ts +2 -2
  190. package/models/index.js +11 -0
  191. package/models/seriesType/bar.d.ts +2 -2
  192. package/models/slots/chartsBaseSlotProps.d.ts +7 -0
  193. package/models/slots/chartsBaseSlots.d.ts +2 -1
  194. package/package.json +5 -5
@@ -3238,4 +3238,3004 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
3238
3238
  } & {
3239
3239
  memoize: typeof import("reselect").weakMapMemoize;
3240
3240
  argsMemoize: typeof import("reselect").weakMapMemoize;
3241
+ };
3242
+ export declare const selectorChartAxis: ((state: any, axisId: AxisId) => import("../../../index.js").ComputedAxis<keyof import("../../../index.js").AxisScaleConfig, any, import("../../../index.js").ChartsXAxisProps>) & {
3243
+ clearCache: () => void;
3244
+ resultsCount: () => number;
3245
+ resetResultsCount: () => void;
3246
+ } & {
3247
+ resultFunc: (resultFuncArgs_0: import("./computeAxisValue.js").ComputeResult<import("../../../index.js").ChartsXAxisProps>, resultFuncArgs_1: import("./computeAxisValue.js").ComputeResult<import("../../../index.js").ChartsYAxisProps>, resultFuncArgs_2: AxisId) => import("../../../index.js").ComputedAxis<keyof import("../../../index.js").AxisScaleConfig, any, import("../../../index.js").ChartsXAxisProps>;
3248
+ memoizedResultFunc: ((resultFuncArgs_0: import("./computeAxisValue.js").ComputeResult<import("../../../index.js").ChartsXAxisProps>, resultFuncArgs_1: import("./computeAxisValue.js").ComputeResult<import("../../../index.js").ChartsYAxisProps>, resultFuncArgs_2: AxisId) => import("../../../index.js").ComputedAxis<keyof import("../../../index.js").AxisScaleConfig, any, import("../../../index.js").ChartsXAxisProps>) & {
3249
+ clearCache: () => void;
3250
+ resultsCount: () => number;
3251
+ resetResultsCount: () => void;
3252
+ };
3253
+ lastResult: () => import("../../../index.js").ComputedAxis<keyof import("../../../index.js").AxisScaleConfig, any, import("../../../index.js").ChartsXAxisProps>;
3254
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types.js").UseChartCartesianAxisState> & {
3255
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
3256
+ } & Partial<{}>) => import("./computeAxisValue.js").ComputeResult<import("../../../index.js").ChartsXAxisProps>) & {
3257
+ clearCache: () => void;
3258
+ resultsCount: () => number;
3259
+ resetResultsCount: () => void;
3260
+ } & {
3261
+ resultFunc: (resultFuncArgs_0: import("../../../index.js").DefaultedXAxis[] | undefined, resultFuncArgs_1: {
3262
+ width: number;
3263
+ left: number;
3264
+ right: number;
3265
+ height: number;
3266
+ top: number;
3267
+ bottom: number;
3268
+ }, resultFuncArgs_2: import("../../../index.js").ProcessedSeries<keyof import("../../../index.js").ChartsSeriesConfig>, resultFuncArgs_3: import("../../models/index.js").ChartSeriesConfig<keyof import("../../../index.js").ChartsSeriesConfig>, resultFuncArgs_4: Map<AxisId, ZoomData> | undefined, resultFuncArgs_5: {
3269
+ [x: string]: import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions;
3270
+ [x: number]: import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions;
3271
+ }, resultFuncArgs_6: import("./zoom.types.js").GetZoomAxisFilters | undefined) => import("./computeAxisValue.js").ComputeResult<import("../../../index.js").ChartsXAxisProps>;
3272
+ memoizedResultFunc: ((resultFuncArgs_0: import("../../../index.js").DefaultedXAxis[] | undefined, resultFuncArgs_1: {
3273
+ width: number;
3274
+ left: number;
3275
+ right: number;
3276
+ height: number;
3277
+ top: number;
3278
+ bottom: number;
3279
+ }, resultFuncArgs_2: import("../../../index.js").ProcessedSeries<keyof import("../../../index.js").ChartsSeriesConfig>, resultFuncArgs_3: import("../../models/index.js").ChartSeriesConfig<keyof import("../../../index.js").ChartsSeriesConfig>, resultFuncArgs_4: Map<AxisId, ZoomData> | undefined, resultFuncArgs_5: {
3280
+ [x: string]: import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions;
3281
+ [x: number]: import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions;
3282
+ }, resultFuncArgs_6: import("./zoom.types.js").GetZoomAxisFilters | undefined) => import("./computeAxisValue.js").ComputeResult<import("../../../index.js").ChartsXAxisProps>) & {
3283
+ clearCache: () => void;
3284
+ resultsCount: () => number;
3285
+ resetResultsCount: () => void;
3286
+ };
3287
+ lastResult: () => import("./computeAxisValue.js").ComputeResult<import("../../../index.js").ChartsXAxisProps>;
3288
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types.js").UseChartCartesianAxisState> & {
3289
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
3290
+ }) => import("../../../index.js").DefaultedXAxis[] | undefined) & {
3291
+ clearCache: () => void;
3292
+ resultsCount: () => number;
3293
+ resetResultsCount: () => void;
3294
+ } & {
3295
+ resultFunc: (resultFuncArgs_0: {
3296
+ x: import("../../../index.js").DefaultedXAxis[];
3297
+ y: import("../../../index.js").DefaultedYAxis[];
3298
+ } | undefined) => import("../../../index.js").DefaultedXAxis[] | undefined;
3299
+ memoizedResultFunc: ((resultFuncArgs_0: {
3300
+ x: import("../../../index.js").DefaultedXAxis[];
3301
+ y: import("../../../index.js").DefaultedYAxis[];
3302
+ } | undefined) => import("../../../index.js").DefaultedXAxis[] | undefined) & {
3303
+ clearCache: () => void;
3304
+ resultsCount: () => number;
3305
+ resetResultsCount: () => void;
3306
+ };
3307
+ lastResult: () => import("../../../index.js").DefaultedXAxis[] | undefined;
3308
+ dependencies: [(state: ChartState<[], [UseChartCartesianAxisSignature]>) => {
3309
+ x: import("../../../index.js").DefaultedXAxis[];
3310
+ y: import("../../../index.js").DefaultedYAxis[];
3311
+ } | undefined];
3312
+ recomputations: () => number;
3313
+ resetRecomputations: () => void;
3314
+ dependencyRecomputations: () => number;
3315
+ resetDependencyRecomputations: () => void;
3316
+ } & {
3317
+ memoize: typeof import("reselect").weakMapMemoize;
3318
+ argsMemoize: typeof import("reselect").weakMapMemoize;
3319
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<{}> & {
3320
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
3321
+ } & Partial<import("./useChartCartesianAxis.types.js").UseChartCartesianAxisState>) => {
3322
+ width: number;
3323
+ left: number;
3324
+ right: number;
3325
+ height: number;
3326
+ top: number;
3327
+ bottom: number;
3328
+ }) & {
3329
+ clearCache: () => void;
3330
+ resultsCount: () => number;
3331
+ resetResultsCount: () => void;
3332
+ } & {
3333
+ 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) => {
3334
+ width: number;
3335
+ left: number;
3336
+ right: number;
3337
+ height: number;
3338
+ top: number;
3339
+ bottom: number;
3340
+ };
3341
+ 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) => {
3342
+ width: number;
3343
+ left: number;
3344
+ right: number;
3345
+ height: number;
3346
+ top: number;
3347
+ bottom: number;
3348
+ }) & {
3349
+ clearCache: () => void;
3350
+ resultsCount: () => number;
3351
+ resetResultsCount: () => void;
3352
+ };
3353
+ lastResult: () => {
3354
+ width: number;
3355
+ left: number;
3356
+ right: number;
3357
+ height: number;
3358
+ top: number;
3359
+ bottom: number;
3360
+ };
3361
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<{}> & {
3362
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
3363
+ }) => number) & {
3364
+ clearCache: () => void;
3365
+ resultsCount: () => number;
3366
+ resetResultsCount: () => void;
3367
+ } & {
3368
+ resultFunc: (resultFuncArgs_0: {
3369
+ margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").ChartMargin;
3370
+ width: number;
3371
+ height: number;
3372
+ propsWidth: number | undefined;
3373
+ propsHeight: number | undefined;
3374
+ }) => number;
3375
+ memoizedResultFunc: ((resultFuncArgs_0: {
3376
+ margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").ChartMargin;
3377
+ width: number;
3378
+ height: number;
3379
+ propsWidth: number | undefined;
3380
+ propsHeight: number | undefined;
3381
+ }) => number) & {
3382
+ clearCache: () => void;
3383
+ resultsCount: () => number;
3384
+ resetResultsCount: () => void;
3385
+ };
3386
+ lastResult: () => number;
3387
+ dependencies: [import("../../../index.js").ChartRootSelector<import("../../../index.js").UseChartDimensionsSignature>];
3388
+ recomputations: () => number;
3389
+ resetRecomputations: () => void;
3390
+ dependencyRecomputations: () => number;
3391
+ resetDependencyRecomputations: () => void;
3392
+ } & {
3393
+ memoize: typeof import("reselect").weakMapMemoize;
3394
+ argsMemoize: typeof import("reselect").weakMapMemoize;
3395
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<{}> & {
3396
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
3397
+ }) => number) & {
3398
+ clearCache: () => void;
3399
+ resultsCount: () => number;
3400
+ resetResultsCount: () => void;
3401
+ } & {
3402
+ resultFunc: (resultFuncArgs_0: {
3403
+ margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").ChartMargin;
3404
+ width: number;
3405
+ height: number;
3406
+ propsWidth: number | undefined;
3407
+ propsHeight: number | undefined;
3408
+ }) => number;
3409
+ memoizedResultFunc: ((resultFuncArgs_0: {
3410
+ margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").ChartMargin;
3411
+ width: number;
3412
+ height: number;
3413
+ propsWidth: number | undefined;
3414
+ propsHeight: number | undefined;
3415
+ }) => number) & {
3416
+ clearCache: () => void;
3417
+ resultsCount: () => number;
3418
+ resetResultsCount: () => void;
3419
+ };
3420
+ lastResult: () => number;
3421
+ dependencies: [import("../../../index.js").ChartRootSelector<import("../../../index.js").UseChartDimensionsSignature>];
3422
+ recomputations: () => number;
3423
+ resetRecomputations: () => void;
3424
+ dependencyRecomputations: () => number;
3425
+ resetDependencyRecomputations: () => void;
3426
+ } & {
3427
+ memoize: typeof import("reselect").weakMapMemoize;
3428
+ argsMemoize: typeof import("reselect").weakMapMemoize;
3429
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<{}> & {
3430
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
3431
+ }) => number) & {
3432
+ clearCache: () => void;
3433
+ resultsCount: () => number;
3434
+ resetResultsCount: () => void;
3435
+ } & {
3436
+ resultFunc: (resultFuncArgs_0: import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").ChartMargin) => number;
3437
+ memoizedResultFunc: ((resultFuncArgs_0: import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").ChartMargin) => number) & {
3438
+ clearCache: () => void;
3439
+ resultsCount: () => number;
3440
+ resetResultsCount: () => void;
3441
+ };
3442
+ lastResult: () => number;
3443
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<{}> & {
3444
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
3445
+ }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").ChartMargin) & {
3446
+ clearCache: () => void;
3447
+ resultsCount: () => number;
3448
+ resetResultsCount: () => void;
3449
+ } & {
3450
+ resultFunc: (resultFuncArgs_0: {
3451
+ margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").ChartMargin;
3452
+ width: number;
3453
+ height: number;
3454
+ propsWidth: number | undefined;
3455
+ propsHeight: number | undefined;
3456
+ }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").ChartMargin;
3457
+ memoizedResultFunc: ((resultFuncArgs_0: {
3458
+ margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").ChartMargin;
3459
+ width: number;
3460
+ height: number;
3461
+ propsWidth: number | undefined;
3462
+ propsHeight: number | undefined;
3463
+ }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").ChartMargin) & {
3464
+ clearCache: () => void;
3465
+ resultsCount: () => number;
3466
+ resetResultsCount: () => void;
3467
+ };
3468
+ lastResult: () => import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").ChartMargin;
3469
+ dependencies: [import("../../../index.js").ChartRootSelector<import("../../../index.js").UseChartDimensionsSignature>];
3470
+ recomputations: () => number;
3471
+ resetRecomputations: () => void;
3472
+ dependencyRecomputations: () => number;
3473
+ resetDependencyRecomputations: () => void;
3474
+ } & {
3475
+ memoize: typeof import("reselect").weakMapMemoize;
3476
+ argsMemoize: typeof import("reselect").weakMapMemoize;
3477
+ }];
3478
+ recomputations: () => number;
3479
+ resetRecomputations: () => void;
3480
+ dependencyRecomputations: () => number;
3481
+ resetDependencyRecomputations: () => void;
3482
+ } & {
3483
+ memoize: typeof import("reselect").weakMapMemoize;
3484
+ argsMemoize: typeof import("reselect").weakMapMemoize;
3485
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<{}> & {
3486
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
3487
+ }) => number) & {
3488
+ clearCache: () => void;
3489
+ resultsCount: () => number;
3490
+ resetResultsCount: () => void;
3491
+ } & {
3492
+ resultFunc: (resultFuncArgs_0: import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").ChartMargin) => number;
3493
+ memoizedResultFunc: ((resultFuncArgs_0: import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").ChartMargin) => number) & {
3494
+ clearCache: () => void;
3495
+ resultsCount: () => number;
3496
+ resetResultsCount: () => void;
3497
+ };
3498
+ lastResult: () => number;
3499
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<{}> & {
3500
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
3501
+ }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").ChartMargin) & {
3502
+ clearCache: () => void;
3503
+ resultsCount: () => number;
3504
+ resetResultsCount: () => void;
3505
+ } & {
3506
+ resultFunc: (resultFuncArgs_0: {
3507
+ margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").ChartMargin;
3508
+ width: number;
3509
+ height: number;
3510
+ propsWidth: number | undefined;
3511
+ propsHeight: number | undefined;
3512
+ }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").ChartMargin;
3513
+ memoizedResultFunc: ((resultFuncArgs_0: {
3514
+ margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").ChartMargin;
3515
+ width: number;
3516
+ height: number;
3517
+ propsWidth: number | undefined;
3518
+ propsHeight: number | undefined;
3519
+ }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").ChartMargin) & {
3520
+ clearCache: () => void;
3521
+ resultsCount: () => number;
3522
+ resetResultsCount: () => void;
3523
+ };
3524
+ lastResult: () => import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").ChartMargin;
3525
+ dependencies: [import("../../../index.js").ChartRootSelector<import("../../../index.js").UseChartDimensionsSignature>];
3526
+ recomputations: () => number;
3527
+ resetRecomputations: () => void;
3528
+ dependencyRecomputations: () => number;
3529
+ resetDependencyRecomputations: () => void;
3530
+ } & {
3531
+ memoize: typeof import("reselect").weakMapMemoize;
3532
+ argsMemoize: typeof import("reselect").weakMapMemoize;
3533
+ }];
3534
+ recomputations: () => number;
3535
+ resetRecomputations: () => void;
3536
+ dependencyRecomputations: () => number;
3537
+ resetDependencyRecomputations: () => void;
3538
+ } & {
3539
+ memoize: typeof import("reselect").weakMapMemoize;
3540
+ argsMemoize: typeof import("reselect").weakMapMemoize;
3541
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<{}> & {
3542
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
3543
+ }) => number) & {
3544
+ clearCache: () => void;
3545
+ resultsCount: () => number;
3546
+ resetResultsCount: () => void;
3547
+ } & {
3548
+ resultFunc: (resultFuncArgs_0: import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").ChartMargin) => number;
3549
+ memoizedResultFunc: ((resultFuncArgs_0: import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").ChartMargin) => number) & {
3550
+ clearCache: () => void;
3551
+ resultsCount: () => number;
3552
+ resetResultsCount: () => void;
3553
+ };
3554
+ lastResult: () => number;
3555
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<{}> & {
3556
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
3557
+ }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").ChartMargin) & {
3558
+ clearCache: () => void;
3559
+ resultsCount: () => number;
3560
+ resetResultsCount: () => void;
3561
+ } & {
3562
+ resultFunc: (resultFuncArgs_0: {
3563
+ margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").ChartMargin;
3564
+ width: number;
3565
+ height: number;
3566
+ propsWidth: number | undefined;
3567
+ propsHeight: number | undefined;
3568
+ }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").ChartMargin;
3569
+ memoizedResultFunc: ((resultFuncArgs_0: {
3570
+ margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").ChartMargin;
3571
+ width: number;
3572
+ height: number;
3573
+ propsWidth: number | undefined;
3574
+ propsHeight: number | undefined;
3575
+ }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").ChartMargin) & {
3576
+ clearCache: () => void;
3577
+ resultsCount: () => number;
3578
+ resetResultsCount: () => void;
3579
+ };
3580
+ lastResult: () => import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").ChartMargin;
3581
+ dependencies: [import("../../../index.js").ChartRootSelector<import("../../../index.js").UseChartDimensionsSignature>];
3582
+ recomputations: () => number;
3583
+ resetRecomputations: () => void;
3584
+ dependencyRecomputations: () => number;
3585
+ resetDependencyRecomputations: () => void;
3586
+ } & {
3587
+ memoize: typeof import("reselect").weakMapMemoize;
3588
+ argsMemoize: typeof import("reselect").weakMapMemoize;
3589
+ }];
3590
+ recomputations: () => number;
3591
+ resetRecomputations: () => void;
3592
+ dependencyRecomputations: () => number;
3593
+ resetDependencyRecomputations: () => void;
3594
+ } & {
3595
+ memoize: typeof import("reselect").weakMapMemoize;
3596
+ argsMemoize: typeof import("reselect").weakMapMemoize;
3597
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<{}> & {
3598
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
3599
+ }) => number) & {
3600
+ clearCache: () => void;
3601
+ resultsCount: () => number;
3602
+ resetResultsCount: () => void;
3603
+ } & {
3604
+ resultFunc: (resultFuncArgs_0: import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").ChartMargin) => number;
3605
+ memoizedResultFunc: ((resultFuncArgs_0: import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").ChartMargin) => number) & {
3606
+ clearCache: () => void;
3607
+ resultsCount: () => number;
3608
+ resetResultsCount: () => void;
3609
+ };
3610
+ lastResult: () => number;
3611
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<{}> & {
3612
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
3613
+ }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").ChartMargin) & {
3614
+ clearCache: () => void;
3615
+ resultsCount: () => number;
3616
+ resetResultsCount: () => void;
3617
+ } & {
3618
+ resultFunc: (resultFuncArgs_0: {
3619
+ margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").ChartMargin;
3620
+ width: number;
3621
+ height: number;
3622
+ propsWidth: number | undefined;
3623
+ propsHeight: number | undefined;
3624
+ }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").ChartMargin;
3625
+ memoizedResultFunc: ((resultFuncArgs_0: {
3626
+ margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").ChartMargin;
3627
+ width: number;
3628
+ height: number;
3629
+ propsWidth: number | undefined;
3630
+ propsHeight: number | undefined;
3631
+ }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").ChartMargin) & {
3632
+ clearCache: () => void;
3633
+ resultsCount: () => number;
3634
+ resetResultsCount: () => void;
3635
+ };
3636
+ lastResult: () => import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").ChartMargin;
3637
+ dependencies: [import("../../../index.js").ChartRootSelector<import("../../../index.js").UseChartDimensionsSignature>];
3638
+ recomputations: () => number;
3639
+ resetRecomputations: () => void;
3640
+ dependencyRecomputations: () => number;
3641
+ resetDependencyRecomputations: () => void;
3642
+ } & {
3643
+ memoize: typeof import("reselect").weakMapMemoize;
3644
+ argsMemoize: typeof import("reselect").weakMapMemoize;
3645
+ }];
3646
+ recomputations: () => number;
3647
+ resetRecomputations: () => void;
3648
+ dependencyRecomputations: () => number;
3649
+ resetDependencyRecomputations: () => void;
3650
+ } & {
3651
+ memoize: typeof import("reselect").weakMapMemoize;
3652
+ argsMemoize: typeof import("reselect").weakMapMemoize;
3653
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types.js").UseChartCartesianAxisState> & {
3654
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
3655
+ }) => number) & {
3656
+ clearCache: () => void;
3657
+ resultsCount: () => number;
3658
+ resetResultsCount: () => void;
3659
+ } & {
3660
+ resultFunc: (resultFuncArgs_0: import("../../../index.js").DefaultedXAxis[] | undefined) => number;
3661
+ memoizedResultFunc: ((resultFuncArgs_0: import("../../../index.js").DefaultedXAxis[] | undefined) => number) & {
3662
+ clearCache: () => void;
3663
+ resultsCount: () => number;
3664
+ resetResultsCount: () => void;
3665
+ };
3666
+ lastResult: () => number;
3667
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types.js").UseChartCartesianAxisState> & {
3668
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
3669
+ }) => import("../../../index.js").DefaultedXAxis[] | undefined) & {
3670
+ clearCache: () => void;
3671
+ resultsCount: () => number;
3672
+ resetResultsCount: () => void;
3673
+ } & {
3674
+ resultFunc: (resultFuncArgs_0: {
3675
+ x: import("../../../index.js").DefaultedXAxis[];
3676
+ y: import("../../../index.js").DefaultedYAxis[];
3677
+ } | undefined) => import("../../../index.js").DefaultedXAxis[] | undefined;
3678
+ memoizedResultFunc: ((resultFuncArgs_0: {
3679
+ x: import("../../../index.js").DefaultedXAxis[];
3680
+ y: import("../../../index.js").DefaultedYAxis[];
3681
+ } | undefined) => import("../../../index.js").DefaultedXAxis[] | undefined) & {
3682
+ clearCache: () => void;
3683
+ resultsCount: () => number;
3684
+ resetResultsCount: () => void;
3685
+ };
3686
+ lastResult: () => import("../../../index.js").DefaultedXAxis[] | undefined;
3687
+ dependencies: [(state: ChartState<[], [UseChartCartesianAxisSignature]>) => {
3688
+ x: import("../../../index.js").DefaultedXAxis[];
3689
+ y: import("../../../index.js").DefaultedYAxis[];
3690
+ } | undefined];
3691
+ recomputations: () => number;
3692
+ resetRecomputations: () => void;
3693
+ dependencyRecomputations: () => number;
3694
+ resetDependencyRecomputations: () => void;
3695
+ } & {
3696
+ memoize: typeof import("reselect").weakMapMemoize;
3697
+ argsMemoize: typeof import("reselect").weakMapMemoize;
3698
+ }];
3699
+ recomputations: () => number;
3700
+ resetRecomputations: () => void;
3701
+ dependencyRecomputations: () => number;
3702
+ resetDependencyRecomputations: () => void;
3703
+ } & {
3704
+ memoize: typeof import("reselect").weakMapMemoize;
3705
+ argsMemoize: typeof import("reselect").weakMapMemoize;
3706
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types.js").UseChartCartesianAxisState> & {
3707
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
3708
+ }) => number) & {
3709
+ clearCache: () => void;
3710
+ resultsCount: () => number;
3711
+ resetResultsCount: () => void;
3712
+ } & {
3713
+ resultFunc: (resultFuncArgs_0: import("../../../index.js").DefaultedYAxis[] | undefined) => number;
3714
+ memoizedResultFunc: ((resultFuncArgs_0: import("../../../index.js").DefaultedYAxis[] | undefined) => number) & {
3715
+ clearCache: () => void;
3716
+ resultsCount: () => number;
3717
+ resetResultsCount: () => void;
3718
+ };
3719
+ lastResult: () => number;
3720
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types.js").UseChartCartesianAxisState> & {
3721
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
3722
+ }) => import("../../../index.js").DefaultedYAxis[] | undefined) & {
3723
+ clearCache: () => void;
3724
+ resultsCount: () => number;
3725
+ resetResultsCount: () => void;
3726
+ } & {
3727
+ resultFunc: (resultFuncArgs_0: {
3728
+ x: import("../../../index.js").DefaultedXAxis[];
3729
+ y: import("../../../index.js").DefaultedYAxis[];
3730
+ } | undefined) => import("../../../index.js").DefaultedYAxis[] | undefined;
3731
+ memoizedResultFunc: ((resultFuncArgs_0: {
3732
+ x: import("../../../index.js").DefaultedXAxis[];
3733
+ y: import("../../../index.js").DefaultedYAxis[];
3734
+ } | undefined) => import("../../../index.js").DefaultedYAxis[] | undefined) & {
3735
+ clearCache: () => void;
3736
+ resultsCount: () => number;
3737
+ resetResultsCount: () => void;
3738
+ };
3739
+ lastResult: () => import("../../../index.js").DefaultedYAxis[] | undefined;
3740
+ dependencies: [(state: ChartState<[], [UseChartCartesianAxisSignature]>) => {
3741
+ x: import("../../../index.js").DefaultedXAxis[];
3742
+ y: import("../../../index.js").DefaultedYAxis[];
3743
+ } | undefined];
3744
+ recomputations: () => number;
3745
+ resetRecomputations: () => void;
3746
+ dependencyRecomputations: () => number;
3747
+ resetDependencyRecomputations: () => void;
3748
+ } & {
3749
+ memoize: typeof import("reselect").weakMapMemoize;
3750
+ argsMemoize: typeof import("reselect").weakMapMemoize;
3751
+ }];
3752
+ recomputations: () => number;
3753
+ resetRecomputations: () => void;
3754
+ dependencyRecomputations: () => number;
3755
+ resetDependencyRecomputations: () => void;
3756
+ } & {
3757
+ memoize: typeof import("reselect").weakMapMemoize;
3758
+ argsMemoize: typeof import("reselect").weakMapMemoize;
3759
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types.js").UseChartCartesianAxisState> & {
3760
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
3761
+ }) => number) & {
3762
+ clearCache: () => void;
3763
+ resultsCount: () => number;
3764
+ resetResultsCount: () => void;
3765
+ } & {
3766
+ resultFunc: (resultFuncArgs_0: import("../../../index.js").DefaultedXAxis[] | undefined) => number;
3767
+ memoizedResultFunc: ((resultFuncArgs_0: import("../../../index.js").DefaultedXAxis[] | undefined) => number) & {
3768
+ clearCache: () => void;
3769
+ resultsCount: () => number;
3770
+ resetResultsCount: () => void;
3771
+ };
3772
+ lastResult: () => number;
3773
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types.js").UseChartCartesianAxisState> & {
3774
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
3775
+ }) => import("../../../index.js").DefaultedXAxis[] | undefined) & {
3776
+ clearCache: () => void;
3777
+ resultsCount: () => number;
3778
+ resetResultsCount: () => void;
3779
+ } & {
3780
+ resultFunc: (resultFuncArgs_0: {
3781
+ x: import("../../../index.js").DefaultedXAxis[];
3782
+ y: import("../../../index.js").DefaultedYAxis[];
3783
+ } | undefined) => import("../../../index.js").DefaultedXAxis[] | undefined;
3784
+ memoizedResultFunc: ((resultFuncArgs_0: {
3785
+ x: import("../../../index.js").DefaultedXAxis[];
3786
+ y: import("../../../index.js").DefaultedYAxis[];
3787
+ } | undefined) => import("../../../index.js").DefaultedXAxis[] | undefined) & {
3788
+ clearCache: () => void;
3789
+ resultsCount: () => number;
3790
+ resetResultsCount: () => void;
3791
+ };
3792
+ lastResult: () => import("../../../index.js").DefaultedXAxis[] | undefined;
3793
+ dependencies: [(state: ChartState<[], [UseChartCartesianAxisSignature]>) => {
3794
+ x: import("../../../index.js").DefaultedXAxis[];
3795
+ y: import("../../../index.js").DefaultedYAxis[];
3796
+ } | undefined];
3797
+ recomputations: () => number;
3798
+ resetRecomputations: () => void;
3799
+ dependencyRecomputations: () => number;
3800
+ resetDependencyRecomputations: () => void;
3801
+ } & {
3802
+ memoize: typeof import("reselect").weakMapMemoize;
3803
+ argsMemoize: typeof import("reselect").weakMapMemoize;
3804
+ }];
3805
+ recomputations: () => number;
3806
+ resetRecomputations: () => void;
3807
+ dependencyRecomputations: () => number;
3808
+ resetDependencyRecomputations: () => void;
3809
+ } & {
3810
+ memoize: typeof import("reselect").weakMapMemoize;
3811
+ argsMemoize: typeof import("reselect").weakMapMemoize;
3812
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types.js").UseChartCartesianAxisState> & {
3813
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
3814
+ }) => number) & {
3815
+ clearCache: () => void;
3816
+ resultsCount: () => number;
3817
+ resetResultsCount: () => void;
3818
+ } & {
3819
+ resultFunc: (resultFuncArgs_0: import("../../../index.js").DefaultedYAxis[] | undefined) => number;
3820
+ memoizedResultFunc: ((resultFuncArgs_0: import("../../../index.js").DefaultedYAxis[] | undefined) => number) & {
3821
+ clearCache: () => void;
3822
+ resultsCount: () => number;
3823
+ resetResultsCount: () => void;
3824
+ };
3825
+ lastResult: () => number;
3826
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types.js").UseChartCartesianAxisState> & {
3827
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
3828
+ }) => import("../../../index.js").DefaultedYAxis[] | undefined) & {
3829
+ clearCache: () => void;
3830
+ resultsCount: () => number;
3831
+ resetResultsCount: () => void;
3832
+ } & {
3833
+ resultFunc: (resultFuncArgs_0: {
3834
+ x: import("../../../index.js").DefaultedXAxis[];
3835
+ y: import("../../../index.js").DefaultedYAxis[];
3836
+ } | undefined) => import("../../../index.js").DefaultedYAxis[] | undefined;
3837
+ memoizedResultFunc: ((resultFuncArgs_0: {
3838
+ x: import("../../../index.js").DefaultedXAxis[];
3839
+ y: import("../../../index.js").DefaultedYAxis[];
3840
+ } | undefined) => import("../../../index.js").DefaultedYAxis[] | undefined) & {
3841
+ clearCache: () => void;
3842
+ resultsCount: () => number;
3843
+ resetResultsCount: () => void;
3844
+ };
3845
+ lastResult: () => import("../../../index.js").DefaultedYAxis[] | undefined;
3846
+ dependencies: [(state: ChartState<[], [UseChartCartesianAxisSignature]>) => {
3847
+ x: import("../../../index.js").DefaultedXAxis[];
3848
+ y: import("../../../index.js").DefaultedYAxis[];
3849
+ } | undefined];
3850
+ recomputations: () => number;
3851
+ resetRecomputations: () => void;
3852
+ dependencyRecomputations: () => number;
3853
+ resetDependencyRecomputations: () => void;
3854
+ } & {
3855
+ memoize: typeof import("reselect").weakMapMemoize;
3856
+ argsMemoize: typeof import("reselect").weakMapMemoize;
3857
+ }];
3858
+ recomputations: () => number;
3859
+ resetRecomputations: () => void;
3860
+ dependencyRecomputations: () => number;
3861
+ resetDependencyRecomputations: () => void;
3862
+ } & {
3863
+ memoize: typeof import("reselect").weakMapMemoize;
3864
+ argsMemoize: typeof import("reselect").weakMapMemoize;
3865
+ }];
3866
+ recomputations: () => number;
3867
+ resetRecomputations: () => void;
3868
+ dependencyRecomputations: () => number;
3869
+ resetDependencyRecomputations: () => void;
3870
+ } & {
3871
+ memoize: typeof import("reselect").weakMapMemoize;
3872
+ argsMemoize: typeof import("reselect").weakMapMemoize;
3873
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<{}> & {
3874
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
3875
+ }) => import("../../../index.js").ProcessedSeries<keyof import("../../../index.js").ChartsSeriesConfig>) & {
3876
+ clearCache: () => void;
3877
+ resultsCount: () => number;
3878
+ resetResultsCount: () => void;
3879
+ } & {
3880
+ resultFunc: (resultFuncArgs_0: {
3881
+ processedSeries: import("../../../index.js").ProcessedSeries<keyof import("../../../index.js").ChartsSeriesConfig>;
3882
+ seriesConfig: import("../../models/index.js").ChartSeriesConfig<keyof import("../../../index.js").ChartsSeriesConfig>;
3883
+ }) => import("../../../index.js").ProcessedSeries<keyof import("../../../index.js").ChartsSeriesConfig>;
3884
+ memoizedResultFunc: ((resultFuncArgs_0: {
3885
+ processedSeries: import("../../../index.js").ProcessedSeries<keyof import("../../../index.js").ChartsSeriesConfig>;
3886
+ seriesConfig: import("../../models/index.js").ChartSeriesConfig<keyof import("../../../index.js").ChartsSeriesConfig>;
3887
+ }) => import("../../../index.js").ProcessedSeries<keyof import("../../../index.js").ChartsSeriesConfig>) & {
3888
+ clearCache: () => void;
3889
+ resultsCount: () => number;
3890
+ resetResultsCount: () => void;
3891
+ };
3892
+ lastResult: () => import("../../../index.js").ProcessedSeries<keyof import("../../../index.js").ChartsSeriesConfig>;
3893
+ dependencies: [import("../../../index.js").ChartRootSelector<import("../../../index.js").UseChartSeriesSignature>];
3894
+ recomputations: () => number;
3895
+ resetRecomputations: () => void;
3896
+ dependencyRecomputations: () => number;
3897
+ resetDependencyRecomputations: () => void;
3898
+ } & {
3899
+ memoize: typeof import("reselect").weakMapMemoize;
3900
+ argsMemoize: typeof import("reselect").weakMapMemoize;
3901
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<{}> & {
3902
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
3903
+ }) => import("../../models/index.js").ChartSeriesConfig<keyof import("../../../index.js").ChartsSeriesConfig>) & {
3904
+ clearCache: () => void;
3905
+ resultsCount: () => number;
3906
+ resetResultsCount: () => void;
3907
+ } & {
3908
+ resultFunc: (resultFuncArgs_0: {
3909
+ processedSeries: import("../../../index.js").ProcessedSeries<keyof import("../../../index.js").ChartsSeriesConfig>;
3910
+ seriesConfig: import("../../models/index.js").ChartSeriesConfig<keyof import("../../../index.js").ChartsSeriesConfig>;
3911
+ }) => import("../../models/index.js").ChartSeriesConfig<keyof import("../../../index.js").ChartsSeriesConfig>;
3912
+ memoizedResultFunc: ((resultFuncArgs_0: {
3913
+ processedSeries: import("../../../index.js").ProcessedSeries<keyof import("../../../index.js").ChartsSeriesConfig>;
3914
+ seriesConfig: import("../../models/index.js").ChartSeriesConfig<keyof import("../../../index.js").ChartsSeriesConfig>;
3915
+ }) => import("../../models/index.js").ChartSeriesConfig<keyof import("../../../index.js").ChartsSeriesConfig>) & {
3916
+ clearCache: () => void;
3917
+ resultsCount: () => number;
3918
+ resetResultsCount: () => void;
3919
+ };
3920
+ lastResult: () => import("../../models/index.js").ChartSeriesConfig<keyof import("../../../index.js").ChartsSeriesConfig>;
3921
+ dependencies: [import("../../../index.js").ChartRootSelector<import("../../../index.js").UseChartSeriesSignature>];
3922
+ recomputations: () => number;
3923
+ resetRecomputations: () => void;
3924
+ dependencyRecomputations: () => number;
3925
+ resetDependencyRecomputations: () => void;
3926
+ } & {
3927
+ memoize: typeof import("reselect").weakMapMemoize;
3928
+ argsMemoize: typeof import("reselect").weakMapMemoize;
3929
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types.js").UseChartCartesianAxisState> & {
3930
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
3931
+ }) => Map<AxisId, ZoomData> | undefined) & {
3932
+ clearCache: () => void;
3933
+ resultsCount: () => number;
3934
+ resetResultsCount: () => void;
3935
+ } & {
3936
+ resultFunc: (resultFuncArgs_0: {
3937
+ isInteracting: boolean;
3938
+ zoomData: readonly ZoomData[];
3939
+ } | undefined) => Map<AxisId, ZoomData> | undefined;
3940
+ memoizedResultFunc: ((resultFuncArgs_0: {
3941
+ isInteracting: boolean;
3942
+ zoomData: readonly ZoomData[];
3943
+ } | undefined) => Map<AxisId, ZoomData> | undefined) & {
3944
+ clearCache: () => void;
3945
+ resultsCount: () => number;
3946
+ resetResultsCount: () => void;
3947
+ };
3948
+ lastResult: () => Map<AxisId, ZoomData> | undefined;
3949
+ dependencies: [(state: ChartState<[], [UseChartCartesianAxisSignature]>) => {
3950
+ isInteracting: boolean;
3951
+ zoomData: readonly ZoomData[];
3952
+ } | undefined];
3953
+ recomputations: () => number;
3954
+ resetRecomputations: () => void;
3955
+ dependencyRecomputations: () => number;
3956
+ resetDependencyRecomputations: () => void;
3957
+ } & {
3958
+ memoize: typeof import("reselect").weakMapMemoize;
3959
+ argsMemoize: typeof import("reselect").weakMapMemoize;
3960
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types.js").UseChartCartesianAxisState> & {
3961
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
3962
+ }) => {
3963
+ [x: string]: import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions;
3964
+ [x: number]: import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions;
3965
+ }) & {
3966
+ clearCache: () => void;
3967
+ resultsCount: () => number;
3968
+ resetResultsCount: () => void;
3969
+ } & {
3970
+ resultFunc: (resultFuncArgs_0: Record<AxisId, import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions>, resultFuncArgs_1: Record<AxisId, import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions>) => {
3971
+ [x: string]: import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions;
3972
+ [x: number]: import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions;
3973
+ };
3974
+ memoizedResultFunc: ((resultFuncArgs_0: Record<AxisId, import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions>, resultFuncArgs_1: Record<AxisId, import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions>) => {
3975
+ [x: string]: import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions;
3976
+ [x: number]: import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions;
3977
+ }) & {
3978
+ clearCache: () => void;
3979
+ resultsCount: () => number;
3980
+ resetResultsCount: () => void;
3981
+ };
3982
+ lastResult: () => {
3983
+ [x: string]: import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions;
3984
+ [x: number]: import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions;
3985
+ };
3986
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types.js").UseChartCartesianAxisState> & {
3987
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
3988
+ }) => Record<AxisId, import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions>) & {
3989
+ clearCache: () => void;
3990
+ resultsCount: () => number;
3991
+ resetResultsCount: () => void;
3992
+ } & {
3993
+ resultFunc: (resultFuncArgs_0: import("../../../index.js").DefaultedXAxis[] | undefined) => Record<AxisId, import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions>;
3994
+ memoizedResultFunc: ((resultFuncArgs_0: import("../../../index.js").DefaultedXAxis[] | undefined) => Record<AxisId, import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions>) & {
3995
+ clearCache: () => void;
3996
+ resultsCount: () => number;
3997
+ resetResultsCount: () => void;
3998
+ };
3999
+ lastResult: () => Record<AxisId, import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions>;
4000
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types.js").UseChartCartesianAxisState> & {
4001
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
4002
+ }) => import("../../../index.js").DefaultedXAxis[] | undefined) & {
4003
+ clearCache: () => void;
4004
+ resultsCount: () => number;
4005
+ resetResultsCount: () => void;
4006
+ } & {
4007
+ resultFunc: (resultFuncArgs_0: {
4008
+ x: import("../../../index.js").DefaultedXAxis[];
4009
+ y: import("../../../index.js").DefaultedYAxis[];
4010
+ } | undefined) => import("../../../index.js").DefaultedXAxis[] | undefined;
4011
+ memoizedResultFunc: ((resultFuncArgs_0: {
4012
+ x: import("../../../index.js").DefaultedXAxis[];
4013
+ y: import("../../../index.js").DefaultedYAxis[];
4014
+ } | undefined) => import("../../../index.js").DefaultedXAxis[] | undefined) & {
4015
+ clearCache: () => void;
4016
+ resultsCount: () => number;
4017
+ resetResultsCount: () => void;
4018
+ };
4019
+ lastResult: () => import("../../../index.js").DefaultedXAxis[] | undefined;
4020
+ dependencies: [(state: ChartState<[], [UseChartCartesianAxisSignature]>) => {
4021
+ x: import("../../../index.js").DefaultedXAxis[];
4022
+ y: import("../../../index.js").DefaultedYAxis[];
4023
+ } | undefined];
4024
+ recomputations: () => number;
4025
+ resetRecomputations: () => void;
4026
+ dependencyRecomputations: () => number;
4027
+ resetDependencyRecomputations: () => void;
4028
+ } & {
4029
+ memoize: typeof import("reselect").weakMapMemoize;
4030
+ argsMemoize: typeof import("reselect").weakMapMemoize;
4031
+ }];
4032
+ recomputations: () => number;
4033
+ resetRecomputations: () => void;
4034
+ dependencyRecomputations: () => number;
4035
+ resetDependencyRecomputations: () => void;
4036
+ } & {
4037
+ memoize: typeof import("reselect").weakMapMemoize;
4038
+ argsMemoize: typeof import("reselect").weakMapMemoize;
4039
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types.js").UseChartCartesianAxisState> & {
4040
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
4041
+ }) => Record<AxisId, import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions>) & {
4042
+ clearCache: () => void;
4043
+ resultsCount: () => number;
4044
+ resetResultsCount: () => void;
4045
+ } & {
4046
+ resultFunc: (resultFuncArgs_0: import("../../../index.js").DefaultedYAxis[] | undefined) => Record<AxisId, import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions>;
4047
+ memoizedResultFunc: ((resultFuncArgs_0: import("../../../index.js").DefaultedYAxis[] | undefined) => Record<AxisId, import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions>) & {
4048
+ clearCache: () => void;
4049
+ resultsCount: () => number;
4050
+ resetResultsCount: () => void;
4051
+ };
4052
+ lastResult: () => Record<AxisId, import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions>;
4053
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types.js").UseChartCartesianAxisState> & {
4054
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
4055
+ }) => import("../../../index.js").DefaultedYAxis[] | undefined) & {
4056
+ clearCache: () => void;
4057
+ resultsCount: () => number;
4058
+ resetResultsCount: () => void;
4059
+ } & {
4060
+ resultFunc: (resultFuncArgs_0: {
4061
+ x: import("../../../index.js").DefaultedXAxis[];
4062
+ y: import("../../../index.js").DefaultedYAxis[];
4063
+ } | undefined) => import("../../../index.js").DefaultedYAxis[] | undefined;
4064
+ memoizedResultFunc: ((resultFuncArgs_0: {
4065
+ x: import("../../../index.js").DefaultedXAxis[];
4066
+ y: import("../../../index.js").DefaultedYAxis[];
4067
+ } | undefined) => import("../../../index.js").DefaultedYAxis[] | undefined) & {
4068
+ clearCache: () => void;
4069
+ resultsCount: () => number;
4070
+ resetResultsCount: () => void;
4071
+ };
4072
+ lastResult: () => import("../../../index.js").DefaultedYAxis[] | undefined;
4073
+ dependencies: [(state: ChartState<[], [UseChartCartesianAxisSignature]>) => {
4074
+ x: import("../../../index.js").DefaultedXAxis[];
4075
+ y: import("../../../index.js").DefaultedYAxis[];
4076
+ } | undefined];
4077
+ recomputations: () => number;
4078
+ resetRecomputations: () => void;
4079
+ dependencyRecomputations: () => number;
4080
+ resetDependencyRecomputations: () => void;
4081
+ } & {
4082
+ memoize: typeof import("reselect").weakMapMemoize;
4083
+ argsMemoize: typeof import("reselect").weakMapMemoize;
4084
+ }];
4085
+ recomputations: () => number;
4086
+ resetRecomputations: () => void;
4087
+ dependencyRecomputations: () => number;
4088
+ resetDependencyRecomputations: () => void;
4089
+ } & {
4090
+ memoize: typeof import("reselect").weakMapMemoize;
4091
+ argsMemoize: typeof import("reselect").weakMapMemoize;
4092
+ }];
4093
+ recomputations: () => number;
4094
+ resetRecomputations: () => void;
4095
+ dependencyRecomputations: () => number;
4096
+ resetDependencyRecomputations: () => void;
4097
+ } & {
4098
+ memoize: typeof import("reselect").weakMapMemoize;
4099
+ argsMemoize: typeof import("reselect").weakMapMemoize;
4100
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types.js").UseChartCartesianAxisState> & {
4101
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
4102
+ } & Partial<{}>) => import("./zoom.types.js").GetZoomAxisFilters | undefined) & {
4103
+ clearCache: () => void;
4104
+ resultsCount: () => number;
4105
+ resetResultsCount: () => void;
4106
+ } & {
4107
+ resultFunc: (resultFuncArgs_0: ((axis: import("../../../index.js").AxisConfig<import("../../../index.js").ScaleName, any, import("../../../index.js").ChartsXAxisProps>, axisIndex: number) => import("./useChartCartesianAxis.types.js").ExtremumFilter | null) | undefined, resultFuncArgs_1: ((axis: import("../../../index.js").AxisConfig<import("../../../index.js").ScaleName, any, import("../../../index.js").ChartsYAxisProps>, axisIndex: number) => import("./useChartCartesianAxis.types.js").ExtremumFilter | null) | undefined, resultFuncArgs_2: import("../../../index.js").DefaultedXAxis[] | undefined, resultFuncArgs_3: import("../../../index.js").DefaultedYAxis[] | undefined) => import("./zoom.types.js").GetZoomAxisFilters | undefined;
4108
+ memoizedResultFunc: ((resultFuncArgs_0: ((axis: import("../../../index.js").AxisConfig<import("../../../index.js").ScaleName, any, import("../../../index.js").ChartsXAxisProps>, axisIndex: number) => import("./useChartCartesianAxis.types.js").ExtremumFilter | null) | undefined, resultFuncArgs_1: ((axis: import("../../../index.js").AxisConfig<import("../../../index.js").ScaleName, any, import("../../../index.js").ChartsYAxisProps>, axisIndex: number) => import("./useChartCartesianAxis.types.js").ExtremumFilter | null) | undefined, resultFuncArgs_2: import("../../../index.js").DefaultedXAxis[] | undefined, resultFuncArgs_3: import("../../../index.js").DefaultedYAxis[] | undefined) => import("./zoom.types.js").GetZoomAxisFilters | undefined) & {
4109
+ clearCache: () => void;
4110
+ resultsCount: () => number;
4111
+ resetResultsCount: () => void;
4112
+ };
4113
+ lastResult: () => import("./zoom.types.js").GetZoomAxisFilters | undefined;
4114
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types.js").UseChartCartesianAxisState> & {
4115
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
4116
+ } & Partial<{}>) => ((axis: import("../../../index.js").AxisConfig<import("../../../index.js").ScaleName, any, import("../../../index.js").ChartsXAxisProps>, axisIndex: number) => import("./useChartCartesianAxis.types.js").ExtremumFilter | null) | undefined) & {
4117
+ clearCache: () => void;
4118
+ resultsCount: () => number;
4119
+ resetResultsCount: () => void;
4120
+ } & {
4121
+ resultFunc: (resultFuncArgs_0: Map<AxisId, ZoomData> | undefined, resultFuncArgs_1: {
4122
+ [x: string]: import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions;
4123
+ [x: number]: import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions;
4124
+ }, resultFuncArgs_2: import("../../models/index.js").ChartSeriesConfig<keyof import("../../../index.js").ChartsSeriesConfig>, resultFuncArgs_3: import("../../../index.js").ProcessedSeries<keyof import("../../../index.js").ChartsSeriesConfig>) => ((axis: import("../../../index.js").AxisConfig<import("../../../index.js").ScaleName, any, import("../../../index.js").ChartsXAxisProps>, axisIndex: number) => import("./useChartCartesianAxis.types.js").ExtremumFilter | null) | undefined;
4125
+ memoizedResultFunc: ((resultFuncArgs_0: Map<AxisId, ZoomData> | undefined, resultFuncArgs_1: {
4126
+ [x: string]: import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions;
4127
+ [x: number]: import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions;
4128
+ }, resultFuncArgs_2: import("../../models/index.js").ChartSeriesConfig<keyof import("../../../index.js").ChartsSeriesConfig>, resultFuncArgs_3: import("../../../index.js").ProcessedSeries<keyof import("../../../index.js").ChartsSeriesConfig>) => ((axis: import("../../../index.js").AxisConfig<import("../../../index.js").ScaleName, any, import("../../../index.js").ChartsXAxisProps>, axisIndex: number) => import("./useChartCartesianAxis.types.js").ExtremumFilter | null) | undefined) & {
4129
+ clearCache: () => void;
4130
+ resultsCount: () => number;
4131
+ resetResultsCount: () => void;
4132
+ };
4133
+ lastResult: () => ((axis: import("../../../index.js").AxisConfig<import("../../../index.js").ScaleName, any, import("../../../index.js").ChartsXAxisProps>, axisIndex: number) => import("./useChartCartesianAxis.types.js").ExtremumFilter | null) | undefined;
4134
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types.js").UseChartCartesianAxisState> & {
4135
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
4136
+ }) => Map<AxisId, ZoomData> | undefined) & {
4137
+ clearCache: () => void;
4138
+ resultsCount: () => number;
4139
+ resetResultsCount: () => void;
4140
+ } & {
4141
+ resultFunc: (resultFuncArgs_0: {
4142
+ isInteracting: boolean;
4143
+ zoomData: readonly ZoomData[];
4144
+ } | undefined) => Map<AxisId, ZoomData> | undefined;
4145
+ memoizedResultFunc: ((resultFuncArgs_0: {
4146
+ isInteracting: boolean;
4147
+ zoomData: readonly ZoomData[];
4148
+ } | undefined) => Map<AxisId, ZoomData> | undefined) & {
4149
+ clearCache: () => void;
4150
+ resultsCount: () => number;
4151
+ resetResultsCount: () => void;
4152
+ };
4153
+ lastResult: () => Map<AxisId, ZoomData> | undefined;
4154
+ dependencies: [(state: ChartState<[], [UseChartCartesianAxisSignature]>) => {
4155
+ isInteracting: boolean;
4156
+ zoomData: readonly ZoomData[];
4157
+ } | undefined];
4158
+ recomputations: () => number;
4159
+ resetRecomputations: () => void;
4160
+ dependencyRecomputations: () => number;
4161
+ resetDependencyRecomputations: () => void;
4162
+ } & {
4163
+ memoize: typeof import("reselect").weakMapMemoize;
4164
+ argsMemoize: typeof import("reselect").weakMapMemoize;
4165
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types.js").UseChartCartesianAxisState> & {
4166
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
4167
+ }) => {
4168
+ [x: string]: import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions;
4169
+ [x: number]: import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions;
4170
+ }) & {
4171
+ clearCache: () => void;
4172
+ resultsCount: () => number;
4173
+ resetResultsCount: () => void;
4174
+ } & {
4175
+ resultFunc: (resultFuncArgs_0: Record<AxisId, import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions>, resultFuncArgs_1: Record<AxisId, import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions>) => {
4176
+ [x: string]: import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions;
4177
+ [x: number]: import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions;
4178
+ };
4179
+ memoizedResultFunc: ((resultFuncArgs_0: Record<AxisId, import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions>, resultFuncArgs_1: Record<AxisId, import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions>) => {
4180
+ [x: string]: import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions;
4181
+ [x: number]: import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions;
4182
+ }) & {
4183
+ clearCache: () => void;
4184
+ resultsCount: () => number;
4185
+ resetResultsCount: () => void;
4186
+ };
4187
+ lastResult: () => {
4188
+ [x: string]: import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions;
4189
+ [x: number]: import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions;
4190
+ };
4191
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types.js").UseChartCartesianAxisState> & {
4192
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
4193
+ }) => Record<AxisId, import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions>) & {
4194
+ clearCache: () => void;
4195
+ resultsCount: () => number;
4196
+ resetResultsCount: () => void;
4197
+ } & {
4198
+ resultFunc: (resultFuncArgs_0: import("../../../index.js").DefaultedXAxis[] | undefined) => Record<AxisId, import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions>;
4199
+ memoizedResultFunc: ((resultFuncArgs_0: import("../../../index.js").DefaultedXAxis[] | undefined) => Record<AxisId, import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions>) & {
4200
+ clearCache: () => void;
4201
+ resultsCount: () => number;
4202
+ resetResultsCount: () => void;
4203
+ };
4204
+ lastResult: () => Record<AxisId, import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions>;
4205
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types.js").UseChartCartesianAxisState> & {
4206
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
4207
+ }) => import("../../../index.js").DefaultedXAxis[] | undefined) & {
4208
+ clearCache: () => void;
4209
+ resultsCount: () => number;
4210
+ resetResultsCount: () => void;
4211
+ } & {
4212
+ resultFunc: (resultFuncArgs_0: {
4213
+ x: import("../../../index.js").DefaultedXAxis[];
4214
+ y: import("../../../index.js").DefaultedYAxis[];
4215
+ } | undefined) => import("../../../index.js").DefaultedXAxis[] | undefined;
4216
+ memoizedResultFunc: ((resultFuncArgs_0: {
4217
+ x: import("../../../index.js").DefaultedXAxis[];
4218
+ y: import("../../../index.js").DefaultedYAxis[];
4219
+ } | undefined) => import("../../../index.js").DefaultedXAxis[] | undefined) & {
4220
+ clearCache: () => void;
4221
+ resultsCount: () => number;
4222
+ resetResultsCount: () => void;
4223
+ };
4224
+ lastResult: () => import("../../../index.js").DefaultedXAxis[] | undefined;
4225
+ dependencies: [(state: ChartState<[], [UseChartCartesianAxisSignature]>) => {
4226
+ x: import("../../../index.js").DefaultedXAxis[];
4227
+ y: import("../../../index.js").DefaultedYAxis[];
4228
+ } | undefined];
4229
+ recomputations: () => number;
4230
+ resetRecomputations: () => void;
4231
+ dependencyRecomputations: () => number;
4232
+ resetDependencyRecomputations: () => void;
4233
+ } & {
4234
+ memoize: typeof import("reselect").weakMapMemoize;
4235
+ argsMemoize: typeof import("reselect").weakMapMemoize;
4236
+ }];
4237
+ recomputations: () => number;
4238
+ resetRecomputations: () => void;
4239
+ dependencyRecomputations: () => number;
4240
+ resetDependencyRecomputations: () => void;
4241
+ } & {
4242
+ memoize: typeof import("reselect").weakMapMemoize;
4243
+ argsMemoize: typeof import("reselect").weakMapMemoize;
4244
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types.js").UseChartCartesianAxisState> & {
4245
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
4246
+ }) => Record<AxisId, import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions>) & {
4247
+ clearCache: () => void;
4248
+ resultsCount: () => number;
4249
+ resetResultsCount: () => void;
4250
+ } & {
4251
+ resultFunc: (resultFuncArgs_0: import("../../../index.js").DefaultedYAxis[] | undefined) => Record<AxisId, import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions>;
4252
+ memoizedResultFunc: ((resultFuncArgs_0: import("../../../index.js").DefaultedYAxis[] | undefined) => Record<AxisId, import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions>) & {
4253
+ clearCache: () => void;
4254
+ resultsCount: () => number;
4255
+ resetResultsCount: () => void;
4256
+ };
4257
+ lastResult: () => Record<AxisId, import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions>;
4258
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types.js").UseChartCartesianAxisState> & {
4259
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
4260
+ }) => import("../../../index.js").DefaultedYAxis[] | undefined) & {
4261
+ clearCache: () => void;
4262
+ resultsCount: () => number;
4263
+ resetResultsCount: () => void;
4264
+ } & {
4265
+ resultFunc: (resultFuncArgs_0: {
4266
+ x: import("../../../index.js").DefaultedXAxis[];
4267
+ y: import("../../../index.js").DefaultedYAxis[];
4268
+ } | undefined) => import("../../../index.js").DefaultedYAxis[] | undefined;
4269
+ memoizedResultFunc: ((resultFuncArgs_0: {
4270
+ x: import("../../../index.js").DefaultedXAxis[];
4271
+ y: import("../../../index.js").DefaultedYAxis[];
4272
+ } | undefined) => import("../../../index.js").DefaultedYAxis[] | undefined) & {
4273
+ clearCache: () => void;
4274
+ resultsCount: () => number;
4275
+ resetResultsCount: () => void;
4276
+ };
4277
+ lastResult: () => import("../../../index.js").DefaultedYAxis[] | undefined;
4278
+ dependencies: [(state: ChartState<[], [UseChartCartesianAxisSignature]>) => {
4279
+ x: import("../../../index.js").DefaultedXAxis[];
4280
+ y: import("../../../index.js").DefaultedYAxis[];
4281
+ } | undefined];
4282
+ recomputations: () => number;
4283
+ resetRecomputations: () => void;
4284
+ dependencyRecomputations: () => number;
4285
+ resetDependencyRecomputations: () => void;
4286
+ } & {
4287
+ memoize: typeof import("reselect").weakMapMemoize;
4288
+ argsMemoize: typeof import("reselect").weakMapMemoize;
4289
+ }];
4290
+ recomputations: () => number;
4291
+ resetRecomputations: () => void;
4292
+ dependencyRecomputations: () => number;
4293
+ resetDependencyRecomputations: () => void;
4294
+ } & {
4295
+ memoize: typeof import("reselect").weakMapMemoize;
4296
+ argsMemoize: typeof import("reselect").weakMapMemoize;
4297
+ }];
4298
+ recomputations: () => number;
4299
+ resetRecomputations: () => void;
4300
+ dependencyRecomputations: () => number;
4301
+ resetDependencyRecomputations: () => void;
4302
+ } & {
4303
+ memoize: typeof import("reselect").weakMapMemoize;
4304
+ argsMemoize: typeof import("reselect").weakMapMemoize;
4305
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<{}> & {
4306
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
4307
+ }) => import("../../models/index.js").ChartSeriesConfig<keyof import("../../../index.js").ChartsSeriesConfig>) & {
4308
+ clearCache: () => void;
4309
+ resultsCount: () => number;
4310
+ resetResultsCount: () => void;
4311
+ } & {
4312
+ resultFunc: (resultFuncArgs_0: {
4313
+ processedSeries: import("../../../index.js").ProcessedSeries<keyof import("../../../index.js").ChartsSeriesConfig>;
4314
+ seriesConfig: import("../../models/index.js").ChartSeriesConfig<keyof import("../../../index.js").ChartsSeriesConfig>;
4315
+ }) => import("../../models/index.js").ChartSeriesConfig<keyof import("../../../index.js").ChartsSeriesConfig>;
4316
+ memoizedResultFunc: ((resultFuncArgs_0: {
4317
+ processedSeries: import("../../../index.js").ProcessedSeries<keyof import("../../../index.js").ChartsSeriesConfig>;
4318
+ seriesConfig: import("../../models/index.js").ChartSeriesConfig<keyof import("../../../index.js").ChartsSeriesConfig>;
4319
+ }) => import("../../models/index.js").ChartSeriesConfig<keyof import("../../../index.js").ChartsSeriesConfig>) & {
4320
+ clearCache: () => void;
4321
+ resultsCount: () => number;
4322
+ resetResultsCount: () => void;
4323
+ };
4324
+ lastResult: () => import("../../models/index.js").ChartSeriesConfig<keyof import("../../../index.js").ChartsSeriesConfig>;
4325
+ dependencies: [import("../../../index.js").ChartRootSelector<import("../../../index.js").UseChartSeriesSignature>];
4326
+ recomputations: () => number;
4327
+ resetRecomputations: () => void;
4328
+ dependencyRecomputations: () => number;
4329
+ resetDependencyRecomputations: () => void;
4330
+ } & {
4331
+ memoize: typeof import("reselect").weakMapMemoize;
4332
+ argsMemoize: typeof import("reselect").weakMapMemoize;
4333
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<{}> & {
4334
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
4335
+ }) => import("../../../index.js").ProcessedSeries<keyof import("../../../index.js").ChartsSeriesConfig>) & {
4336
+ clearCache: () => void;
4337
+ resultsCount: () => number;
4338
+ resetResultsCount: () => void;
4339
+ } & {
4340
+ resultFunc: (resultFuncArgs_0: {
4341
+ processedSeries: import("../../../index.js").ProcessedSeries<keyof import("../../../index.js").ChartsSeriesConfig>;
4342
+ seriesConfig: import("../../models/index.js").ChartSeriesConfig<keyof import("../../../index.js").ChartsSeriesConfig>;
4343
+ }) => import("../../../index.js").ProcessedSeries<keyof import("../../../index.js").ChartsSeriesConfig>;
4344
+ memoizedResultFunc: ((resultFuncArgs_0: {
4345
+ processedSeries: import("../../../index.js").ProcessedSeries<keyof import("../../../index.js").ChartsSeriesConfig>;
4346
+ seriesConfig: import("../../models/index.js").ChartSeriesConfig<keyof import("../../../index.js").ChartsSeriesConfig>;
4347
+ }) => import("../../../index.js").ProcessedSeries<keyof import("../../../index.js").ChartsSeriesConfig>) & {
4348
+ clearCache: () => void;
4349
+ resultsCount: () => number;
4350
+ resetResultsCount: () => void;
4351
+ };
4352
+ lastResult: () => import("../../../index.js").ProcessedSeries<keyof import("../../../index.js").ChartsSeriesConfig>;
4353
+ dependencies: [import("../../../index.js").ChartRootSelector<import("../../../index.js").UseChartSeriesSignature>];
4354
+ recomputations: () => number;
4355
+ resetRecomputations: () => void;
4356
+ dependencyRecomputations: () => number;
4357
+ resetDependencyRecomputations: () => void;
4358
+ } & {
4359
+ memoize: typeof import("reselect").weakMapMemoize;
4360
+ argsMemoize: typeof import("reselect").weakMapMemoize;
4361
+ }];
4362
+ recomputations: () => number;
4363
+ resetRecomputations: () => void;
4364
+ dependencyRecomputations: () => number;
4365
+ resetDependencyRecomputations: () => void;
4366
+ } & {
4367
+ memoize: typeof import("reselect").weakMapMemoize;
4368
+ argsMemoize: typeof import("reselect").weakMapMemoize;
4369
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types.js").UseChartCartesianAxisState> & {
4370
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
4371
+ } & Partial<{}>) => ((axis: import("../../../index.js").AxisConfig<import("../../../index.js").ScaleName, any, import("../../../index.js").ChartsYAxisProps>, axisIndex: number) => import("./useChartCartesianAxis.types.js").ExtremumFilter | null) | undefined) & {
4372
+ clearCache: () => void;
4373
+ resultsCount: () => number;
4374
+ resetResultsCount: () => void;
4375
+ } & {
4376
+ resultFunc: (resultFuncArgs_0: Map<AxisId, ZoomData> | undefined, resultFuncArgs_1: {
4377
+ [x: string]: import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions;
4378
+ [x: number]: import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions;
4379
+ }, resultFuncArgs_2: import("../../models/index.js").ChartSeriesConfig<keyof import("../../../index.js").ChartsSeriesConfig>, resultFuncArgs_3: import("../../../index.js").ProcessedSeries<keyof import("../../../index.js").ChartsSeriesConfig>) => ((axis: import("../../../index.js").AxisConfig<import("../../../index.js").ScaleName, any, import("../../../index.js").ChartsYAxisProps>, axisIndex: number) => import("./useChartCartesianAxis.types.js").ExtremumFilter | null) | undefined;
4380
+ memoizedResultFunc: ((resultFuncArgs_0: Map<AxisId, ZoomData> | undefined, resultFuncArgs_1: {
4381
+ [x: string]: import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions;
4382
+ [x: number]: import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions;
4383
+ }, resultFuncArgs_2: import("../../models/index.js").ChartSeriesConfig<keyof import("../../../index.js").ChartsSeriesConfig>, resultFuncArgs_3: import("../../../index.js").ProcessedSeries<keyof import("../../../index.js").ChartsSeriesConfig>) => ((axis: import("../../../index.js").AxisConfig<import("../../../index.js").ScaleName, any, import("../../../index.js").ChartsYAxisProps>, axisIndex: number) => import("./useChartCartesianAxis.types.js").ExtremumFilter | null) | undefined) & {
4384
+ clearCache: () => void;
4385
+ resultsCount: () => number;
4386
+ resetResultsCount: () => void;
4387
+ };
4388
+ lastResult: () => ((axis: import("../../../index.js").AxisConfig<import("../../../index.js").ScaleName, any, import("../../../index.js").ChartsYAxisProps>, axisIndex: number) => import("./useChartCartesianAxis.types.js").ExtremumFilter | null) | undefined;
4389
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types.js").UseChartCartesianAxisState> & {
4390
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
4391
+ }) => Map<AxisId, ZoomData> | undefined) & {
4392
+ clearCache: () => void;
4393
+ resultsCount: () => number;
4394
+ resetResultsCount: () => void;
4395
+ } & {
4396
+ resultFunc: (resultFuncArgs_0: {
4397
+ isInteracting: boolean;
4398
+ zoomData: readonly ZoomData[];
4399
+ } | undefined) => Map<AxisId, ZoomData> | undefined;
4400
+ memoizedResultFunc: ((resultFuncArgs_0: {
4401
+ isInteracting: boolean;
4402
+ zoomData: readonly ZoomData[];
4403
+ } | undefined) => Map<AxisId, ZoomData> | undefined) & {
4404
+ clearCache: () => void;
4405
+ resultsCount: () => number;
4406
+ resetResultsCount: () => void;
4407
+ };
4408
+ lastResult: () => Map<AxisId, ZoomData> | undefined;
4409
+ dependencies: [(state: ChartState<[], [UseChartCartesianAxisSignature]>) => {
4410
+ isInteracting: boolean;
4411
+ zoomData: readonly ZoomData[];
4412
+ } | undefined];
4413
+ recomputations: () => number;
4414
+ resetRecomputations: () => void;
4415
+ dependencyRecomputations: () => number;
4416
+ resetDependencyRecomputations: () => void;
4417
+ } & {
4418
+ memoize: typeof import("reselect").weakMapMemoize;
4419
+ argsMemoize: typeof import("reselect").weakMapMemoize;
4420
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types.js").UseChartCartesianAxisState> & {
4421
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
4422
+ }) => {
4423
+ [x: string]: import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions;
4424
+ [x: number]: import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions;
4425
+ }) & {
4426
+ clearCache: () => void;
4427
+ resultsCount: () => number;
4428
+ resetResultsCount: () => void;
4429
+ } & {
4430
+ resultFunc: (resultFuncArgs_0: Record<AxisId, import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions>, resultFuncArgs_1: Record<AxisId, import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions>) => {
4431
+ [x: string]: import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions;
4432
+ [x: number]: import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions;
4433
+ };
4434
+ memoizedResultFunc: ((resultFuncArgs_0: Record<AxisId, import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions>, resultFuncArgs_1: Record<AxisId, import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions>) => {
4435
+ [x: string]: import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions;
4436
+ [x: number]: import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions;
4437
+ }) & {
4438
+ clearCache: () => void;
4439
+ resultsCount: () => number;
4440
+ resetResultsCount: () => void;
4441
+ };
4442
+ lastResult: () => {
4443
+ [x: string]: import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions;
4444
+ [x: number]: import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions;
4445
+ };
4446
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types.js").UseChartCartesianAxisState> & {
4447
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
4448
+ }) => Record<AxisId, import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions>) & {
4449
+ clearCache: () => void;
4450
+ resultsCount: () => number;
4451
+ resetResultsCount: () => void;
4452
+ } & {
4453
+ resultFunc: (resultFuncArgs_0: import("../../../index.js").DefaultedXAxis[] | undefined) => Record<AxisId, import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions>;
4454
+ memoizedResultFunc: ((resultFuncArgs_0: import("../../../index.js").DefaultedXAxis[] | undefined) => Record<AxisId, import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions>) & {
4455
+ clearCache: () => void;
4456
+ resultsCount: () => number;
4457
+ resetResultsCount: () => void;
4458
+ };
4459
+ lastResult: () => Record<AxisId, import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions>;
4460
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types.js").UseChartCartesianAxisState> & {
4461
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
4462
+ }) => import("../../../index.js").DefaultedXAxis[] | undefined) & {
4463
+ clearCache: () => void;
4464
+ resultsCount: () => number;
4465
+ resetResultsCount: () => void;
4466
+ } & {
4467
+ resultFunc: (resultFuncArgs_0: {
4468
+ x: import("../../../index.js").DefaultedXAxis[];
4469
+ y: import("../../../index.js").DefaultedYAxis[];
4470
+ } | undefined) => import("../../../index.js").DefaultedXAxis[] | undefined;
4471
+ memoizedResultFunc: ((resultFuncArgs_0: {
4472
+ x: import("../../../index.js").DefaultedXAxis[];
4473
+ y: import("../../../index.js").DefaultedYAxis[];
4474
+ } | undefined) => import("../../../index.js").DefaultedXAxis[] | undefined) & {
4475
+ clearCache: () => void;
4476
+ resultsCount: () => number;
4477
+ resetResultsCount: () => void;
4478
+ };
4479
+ lastResult: () => import("../../../index.js").DefaultedXAxis[] | undefined;
4480
+ dependencies: [(state: ChartState<[], [UseChartCartesianAxisSignature]>) => {
4481
+ x: import("../../../index.js").DefaultedXAxis[];
4482
+ y: import("../../../index.js").DefaultedYAxis[];
4483
+ } | undefined];
4484
+ recomputations: () => number;
4485
+ resetRecomputations: () => void;
4486
+ dependencyRecomputations: () => number;
4487
+ resetDependencyRecomputations: () => void;
4488
+ } & {
4489
+ memoize: typeof import("reselect").weakMapMemoize;
4490
+ argsMemoize: typeof import("reselect").weakMapMemoize;
4491
+ }];
4492
+ recomputations: () => number;
4493
+ resetRecomputations: () => void;
4494
+ dependencyRecomputations: () => number;
4495
+ resetDependencyRecomputations: () => void;
4496
+ } & {
4497
+ memoize: typeof import("reselect").weakMapMemoize;
4498
+ argsMemoize: typeof import("reselect").weakMapMemoize;
4499
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types.js").UseChartCartesianAxisState> & {
4500
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
4501
+ }) => Record<AxisId, import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions>) & {
4502
+ clearCache: () => void;
4503
+ resultsCount: () => number;
4504
+ resetResultsCount: () => void;
4505
+ } & {
4506
+ resultFunc: (resultFuncArgs_0: import("../../../index.js").DefaultedYAxis[] | undefined) => Record<AxisId, import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions>;
4507
+ memoizedResultFunc: ((resultFuncArgs_0: import("../../../index.js").DefaultedYAxis[] | undefined) => Record<AxisId, import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions>) & {
4508
+ clearCache: () => void;
4509
+ resultsCount: () => number;
4510
+ resetResultsCount: () => void;
4511
+ };
4512
+ lastResult: () => Record<AxisId, import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions>;
4513
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types.js").UseChartCartesianAxisState> & {
4514
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
4515
+ }) => import("../../../index.js").DefaultedYAxis[] | undefined) & {
4516
+ clearCache: () => void;
4517
+ resultsCount: () => number;
4518
+ resetResultsCount: () => void;
4519
+ } & {
4520
+ resultFunc: (resultFuncArgs_0: {
4521
+ x: import("../../../index.js").DefaultedXAxis[];
4522
+ y: import("../../../index.js").DefaultedYAxis[];
4523
+ } | undefined) => import("../../../index.js").DefaultedYAxis[] | undefined;
4524
+ memoizedResultFunc: ((resultFuncArgs_0: {
4525
+ x: import("../../../index.js").DefaultedXAxis[];
4526
+ y: import("../../../index.js").DefaultedYAxis[];
4527
+ } | undefined) => import("../../../index.js").DefaultedYAxis[] | undefined) & {
4528
+ clearCache: () => void;
4529
+ resultsCount: () => number;
4530
+ resetResultsCount: () => void;
4531
+ };
4532
+ lastResult: () => import("../../../index.js").DefaultedYAxis[] | undefined;
4533
+ dependencies: [(state: ChartState<[], [UseChartCartesianAxisSignature]>) => {
4534
+ x: import("../../../index.js").DefaultedXAxis[];
4535
+ y: import("../../../index.js").DefaultedYAxis[];
4536
+ } | undefined];
4537
+ recomputations: () => number;
4538
+ resetRecomputations: () => void;
4539
+ dependencyRecomputations: () => number;
4540
+ resetDependencyRecomputations: () => void;
4541
+ } & {
4542
+ memoize: typeof import("reselect").weakMapMemoize;
4543
+ argsMemoize: typeof import("reselect").weakMapMemoize;
4544
+ }];
4545
+ recomputations: () => number;
4546
+ resetRecomputations: () => void;
4547
+ dependencyRecomputations: () => number;
4548
+ resetDependencyRecomputations: () => void;
4549
+ } & {
4550
+ memoize: typeof import("reselect").weakMapMemoize;
4551
+ argsMemoize: typeof import("reselect").weakMapMemoize;
4552
+ }];
4553
+ recomputations: () => number;
4554
+ resetRecomputations: () => void;
4555
+ dependencyRecomputations: () => number;
4556
+ resetDependencyRecomputations: () => void;
4557
+ } & {
4558
+ memoize: typeof import("reselect").weakMapMemoize;
4559
+ argsMemoize: typeof import("reselect").weakMapMemoize;
4560
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<{}> & {
4561
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
4562
+ }) => import("../../models/index.js").ChartSeriesConfig<keyof import("../../../index.js").ChartsSeriesConfig>) & {
4563
+ clearCache: () => void;
4564
+ resultsCount: () => number;
4565
+ resetResultsCount: () => void;
4566
+ } & {
4567
+ resultFunc: (resultFuncArgs_0: {
4568
+ processedSeries: import("../../../index.js").ProcessedSeries<keyof import("../../../index.js").ChartsSeriesConfig>;
4569
+ seriesConfig: import("../../models/index.js").ChartSeriesConfig<keyof import("../../../index.js").ChartsSeriesConfig>;
4570
+ }) => import("../../models/index.js").ChartSeriesConfig<keyof import("../../../index.js").ChartsSeriesConfig>;
4571
+ memoizedResultFunc: ((resultFuncArgs_0: {
4572
+ processedSeries: import("../../../index.js").ProcessedSeries<keyof import("../../../index.js").ChartsSeriesConfig>;
4573
+ seriesConfig: import("../../models/index.js").ChartSeriesConfig<keyof import("../../../index.js").ChartsSeriesConfig>;
4574
+ }) => import("../../models/index.js").ChartSeriesConfig<keyof import("../../../index.js").ChartsSeriesConfig>) & {
4575
+ clearCache: () => void;
4576
+ resultsCount: () => number;
4577
+ resetResultsCount: () => void;
4578
+ };
4579
+ lastResult: () => import("../../models/index.js").ChartSeriesConfig<keyof import("../../../index.js").ChartsSeriesConfig>;
4580
+ dependencies: [import("../../../index.js").ChartRootSelector<import("../../../index.js").UseChartSeriesSignature>];
4581
+ recomputations: () => number;
4582
+ resetRecomputations: () => void;
4583
+ dependencyRecomputations: () => number;
4584
+ resetDependencyRecomputations: () => void;
4585
+ } & {
4586
+ memoize: typeof import("reselect").weakMapMemoize;
4587
+ argsMemoize: typeof import("reselect").weakMapMemoize;
4588
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<{}> & {
4589
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
4590
+ }) => import("../../../index.js").ProcessedSeries<keyof import("../../../index.js").ChartsSeriesConfig>) & {
4591
+ clearCache: () => void;
4592
+ resultsCount: () => number;
4593
+ resetResultsCount: () => void;
4594
+ } & {
4595
+ resultFunc: (resultFuncArgs_0: {
4596
+ processedSeries: import("../../../index.js").ProcessedSeries<keyof import("../../../index.js").ChartsSeriesConfig>;
4597
+ seriesConfig: import("../../models/index.js").ChartSeriesConfig<keyof import("../../../index.js").ChartsSeriesConfig>;
4598
+ }) => import("../../../index.js").ProcessedSeries<keyof import("../../../index.js").ChartsSeriesConfig>;
4599
+ memoizedResultFunc: ((resultFuncArgs_0: {
4600
+ processedSeries: import("../../../index.js").ProcessedSeries<keyof import("../../../index.js").ChartsSeriesConfig>;
4601
+ seriesConfig: import("../../models/index.js").ChartSeriesConfig<keyof import("../../../index.js").ChartsSeriesConfig>;
4602
+ }) => import("../../../index.js").ProcessedSeries<keyof import("../../../index.js").ChartsSeriesConfig>) & {
4603
+ clearCache: () => void;
4604
+ resultsCount: () => number;
4605
+ resetResultsCount: () => void;
4606
+ };
4607
+ lastResult: () => import("../../../index.js").ProcessedSeries<keyof import("../../../index.js").ChartsSeriesConfig>;
4608
+ dependencies: [import("../../../index.js").ChartRootSelector<import("../../../index.js").UseChartSeriesSignature>];
4609
+ recomputations: () => number;
4610
+ resetRecomputations: () => void;
4611
+ dependencyRecomputations: () => number;
4612
+ resetDependencyRecomputations: () => void;
4613
+ } & {
4614
+ memoize: typeof import("reselect").weakMapMemoize;
4615
+ argsMemoize: typeof import("reselect").weakMapMemoize;
4616
+ }];
4617
+ recomputations: () => number;
4618
+ resetRecomputations: () => void;
4619
+ dependencyRecomputations: () => number;
4620
+ resetDependencyRecomputations: () => void;
4621
+ } & {
4622
+ memoize: typeof import("reselect").weakMapMemoize;
4623
+ argsMemoize: typeof import("reselect").weakMapMemoize;
4624
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types.js").UseChartCartesianAxisState> & {
4625
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
4626
+ }) => import("../../../index.js").DefaultedXAxis[] | undefined) & {
4627
+ clearCache: () => void;
4628
+ resultsCount: () => number;
4629
+ resetResultsCount: () => void;
4630
+ } & {
4631
+ resultFunc: (resultFuncArgs_0: {
4632
+ x: import("../../../index.js").DefaultedXAxis[];
4633
+ y: import("../../../index.js").DefaultedYAxis[];
4634
+ } | undefined) => import("../../../index.js").DefaultedXAxis[] | undefined;
4635
+ memoizedResultFunc: ((resultFuncArgs_0: {
4636
+ x: import("../../../index.js").DefaultedXAxis[];
4637
+ y: import("../../../index.js").DefaultedYAxis[];
4638
+ } | undefined) => import("../../../index.js").DefaultedXAxis[] | undefined) & {
4639
+ clearCache: () => void;
4640
+ resultsCount: () => number;
4641
+ resetResultsCount: () => void;
4642
+ };
4643
+ lastResult: () => import("../../../index.js").DefaultedXAxis[] | undefined;
4644
+ dependencies: [(state: ChartState<[], [UseChartCartesianAxisSignature]>) => {
4645
+ x: import("../../../index.js").DefaultedXAxis[];
4646
+ y: import("../../../index.js").DefaultedYAxis[];
4647
+ } | undefined];
4648
+ recomputations: () => number;
4649
+ resetRecomputations: () => void;
4650
+ dependencyRecomputations: () => number;
4651
+ resetDependencyRecomputations: () => void;
4652
+ } & {
4653
+ memoize: typeof import("reselect").weakMapMemoize;
4654
+ argsMemoize: typeof import("reselect").weakMapMemoize;
4655
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types.js").UseChartCartesianAxisState> & {
4656
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
4657
+ }) => import("../../../index.js").DefaultedYAxis[] | undefined) & {
4658
+ clearCache: () => void;
4659
+ resultsCount: () => number;
4660
+ resetResultsCount: () => void;
4661
+ } & {
4662
+ resultFunc: (resultFuncArgs_0: {
4663
+ x: import("../../../index.js").DefaultedXAxis[];
4664
+ y: import("../../../index.js").DefaultedYAxis[];
4665
+ } | undefined) => import("../../../index.js").DefaultedYAxis[] | undefined;
4666
+ memoizedResultFunc: ((resultFuncArgs_0: {
4667
+ x: import("../../../index.js").DefaultedXAxis[];
4668
+ y: import("../../../index.js").DefaultedYAxis[];
4669
+ } | undefined) => import("../../../index.js").DefaultedYAxis[] | undefined) & {
4670
+ clearCache: () => void;
4671
+ resultsCount: () => number;
4672
+ resetResultsCount: () => void;
4673
+ };
4674
+ lastResult: () => import("../../../index.js").DefaultedYAxis[] | undefined;
4675
+ dependencies: [(state: ChartState<[], [UseChartCartesianAxisSignature]>) => {
4676
+ x: import("../../../index.js").DefaultedXAxis[];
4677
+ y: import("../../../index.js").DefaultedYAxis[];
4678
+ } | undefined];
4679
+ recomputations: () => number;
4680
+ resetRecomputations: () => void;
4681
+ dependencyRecomputations: () => number;
4682
+ resetDependencyRecomputations: () => void;
4683
+ } & {
4684
+ memoize: typeof import("reselect").weakMapMemoize;
4685
+ argsMemoize: typeof import("reselect").weakMapMemoize;
4686
+ }];
4687
+ recomputations: () => number;
4688
+ resetRecomputations: () => void;
4689
+ dependencyRecomputations: () => number;
4690
+ resetDependencyRecomputations: () => void;
4691
+ } & {
4692
+ memoize: typeof import("reselect").weakMapMemoize;
4693
+ argsMemoize: typeof import("reselect").weakMapMemoize;
4694
+ }];
4695
+ recomputations: () => number;
4696
+ resetRecomputations: () => void;
4697
+ dependencyRecomputations: () => number;
4698
+ resetDependencyRecomputations: () => void;
4699
+ } & {
4700
+ memoize: typeof import("reselect").weakMapMemoize;
4701
+ argsMemoize: typeof import("reselect").weakMapMemoize;
4702
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types.js").UseChartCartesianAxisState> & {
4703
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
4704
+ } & Partial<{}>) => import("./computeAxisValue.js").ComputeResult<import("../../../index.js").ChartsYAxisProps>) & {
4705
+ clearCache: () => void;
4706
+ resultsCount: () => number;
4707
+ resetResultsCount: () => void;
4708
+ } & {
4709
+ resultFunc: (resultFuncArgs_0: import("../../../index.js").DefaultedYAxis[] | undefined, resultFuncArgs_1: {
4710
+ width: number;
4711
+ left: number;
4712
+ right: number;
4713
+ height: number;
4714
+ top: number;
4715
+ bottom: number;
4716
+ }, resultFuncArgs_2: import("../../../index.js").ProcessedSeries<keyof import("../../../index.js").ChartsSeriesConfig>, resultFuncArgs_3: import("../../models/index.js").ChartSeriesConfig<keyof import("../../../index.js").ChartsSeriesConfig>, resultFuncArgs_4: Map<AxisId, ZoomData> | undefined, resultFuncArgs_5: {
4717
+ [x: string]: import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions;
4718
+ [x: number]: import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions;
4719
+ }, resultFuncArgs_6: import("./zoom.types.js").GetZoomAxisFilters | undefined) => import("./computeAxisValue.js").ComputeResult<import("../../../index.js").ChartsYAxisProps>;
4720
+ memoizedResultFunc: ((resultFuncArgs_0: import("../../../index.js").DefaultedYAxis[] | undefined, resultFuncArgs_1: {
4721
+ width: number;
4722
+ left: number;
4723
+ right: number;
4724
+ height: number;
4725
+ top: number;
4726
+ bottom: number;
4727
+ }, resultFuncArgs_2: import("../../../index.js").ProcessedSeries<keyof import("../../../index.js").ChartsSeriesConfig>, resultFuncArgs_3: import("../../models/index.js").ChartSeriesConfig<keyof import("../../../index.js").ChartsSeriesConfig>, resultFuncArgs_4: Map<AxisId, ZoomData> | undefined, resultFuncArgs_5: {
4728
+ [x: string]: import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions;
4729
+ [x: number]: import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions;
4730
+ }, resultFuncArgs_6: import("./zoom.types.js").GetZoomAxisFilters | undefined) => import("./computeAxisValue.js").ComputeResult<import("../../../index.js").ChartsYAxisProps>) & {
4731
+ clearCache: () => void;
4732
+ resultsCount: () => number;
4733
+ resetResultsCount: () => void;
4734
+ };
4735
+ lastResult: () => import("./computeAxisValue.js").ComputeResult<import("../../../index.js").ChartsYAxisProps>;
4736
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types.js").UseChartCartesianAxisState> & {
4737
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
4738
+ }) => import("../../../index.js").DefaultedYAxis[] | undefined) & {
4739
+ clearCache: () => void;
4740
+ resultsCount: () => number;
4741
+ resetResultsCount: () => void;
4742
+ } & {
4743
+ resultFunc: (resultFuncArgs_0: {
4744
+ x: import("../../../index.js").DefaultedXAxis[];
4745
+ y: import("../../../index.js").DefaultedYAxis[];
4746
+ } | undefined) => import("../../../index.js").DefaultedYAxis[] | undefined;
4747
+ memoizedResultFunc: ((resultFuncArgs_0: {
4748
+ x: import("../../../index.js").DefaultedXAxis[];
4749
+ y: import("../../../index.js").DefaultedYAxis[];
4750
+ } | undefined) => import("../../../index.js").DefaultedYAxis[] | undefined) & {
4751
+ clearCache: () => void;
4752
+ resultsCount: () => number;
4753
+ resetResultsCount: () => void;
4754
+ };
4755
+ lastResult: () => import("../../../index.js").DefaultedYAxis[] | undefined;
4756
+ dependencies: [(state: ChartState<[], [UseChartCartesianAxisSignature]>) => {
4757
+ x: import("../../../index.js").DefaultedXAxis[];
4758
+ y: import("../../../index.js").DefaultedYAxis[];
4759
+ } | undefined];
4760
+ recomputations: () => number;
4761
+ resetRecomputations: () => void;
4762
+ dependencyRecomputations: () => number;
4763
+ resetDependencyRecomputations: () => void;
4764
+ } & {
4765
+ memoize: typeof import("reselect").weakMapMemoize;
4766
+ argsMemoize: typeof import("reselect").weakMapMemoize;
4767
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<{}> & {
4768
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
4769
+ } & Partial<import("./useChartCartesianAxis.types.js").UseChartCartesianAxisState>) => {
4770
+ width: number;
4771
+ left: number;
4772
+ right: number;
4773
+ height: number;
4774
+ top: number;
4775
+ bottom: number;
4776
+ }) & {
4777
+ clearCache: () => void;
4778
+ resultsCount: () => number;
4779
+ resetResultsCount: () => void;
4780
+ } & {
4781
+ 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) => {
4782
+ width: number;
4783
+ left: number;
4784
+ right: number;
4785
+ height: number;
4786
+ top: number;
4787
+ bottom: number;
4788
+ };
4789
+ 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) => {
4790
+ width: number;
4791
+ left: number;
4792
+ right: number;
4793
+ height: number;
4794
+ top: number;
4795
+ bottom: number;
4796
+ }) & {
4797
+ clearCache: () => void;
4798
+ resultsCount: () => number;
4799
+ resetResultsCount: () => void;
4800
+ };
4801
+ lastResult: () => {
4802
+ width: number;
4803
+ left: number;
4804
+ right: number;
4805
+ height: number;
4806
+ top: number;
4807
+ bottom: number;
4808
+ };
4809
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<{}> & {
4810
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
4811
+ }) => number) & {
4812
+ clearCache: () => void;
4813
+ resultsCount: () => number;
4814
+ resetResultsCount: () => void;
4815
+ } & {
4816
+ resultFunc: (resultFuncArgs_0: {
4817
+ margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").ChartMargin;
4818
+ width: number;
4819
+ height: number;
4820
+ propsWidth: number | undefined;
4821
+ propsHeight: number | undefined;
4822
+ }) => number;
4823
+ memoizedResultFunc: ((resultFuncArgs_0: {
4824
+ margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").ChartMargin;
4825
+ width: number;
4826
+ height: number;
4827
+ propsWidth: number | undefined;
4828
+ propsHeight: number | undefined;
4829
+ }) => number) & {
4830
+ clearCache: () => void;
4831
+ resultsCount: () => number;
4832
+ resetResultsCount: () => void;
4833
+ };
4834
+ lastResult: () => number;
4835
+ dependencies: [import("../../../index.js").ChartRootSelector<import("../../../index.js").UseChartDimensionsSignature>];
4836
+ recomputations: () => number;
4837
+ resetRecomputations: () => void;
4838
+ dependencyRecomputations: () => number;
4839
+ resetDependencyRecomputations: () => void;
4840
+ } & {
4841
+ memoize: typeof import("reselect").weakMapMemoize;
4842
+ argsMemoize: typeof import("reselect").weakMapMemoize;
4843
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<{}> & {
4844
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
4845
+ }) => number) & {
4846
+ clearCache: () => void;
4847
+ resultsCount: () => number;
4848
+ resetResultsCount: () => void;
4849
+ } & {
4850
+ resultFunc: (resultFuncArgs_0: {
4851
+ margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").ChartMargin;
4852
+ width: number;
4853
+ height: number;
4854
+ propsWidth: number | undefined;
4855
+ propsHeight: number | undefined;
4856
+ }) => number;
4857
+ memoizedResultFunc: ((resultFuncArgs_0: {
4858
+ margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").ChartMargin;
4859
+ width: number;
4860
+ height: number;
4861
+ propsWidth: number | undefined;
4862
+ propsHeight: number | undefined;
4863
+ }) => number) & {
4864
+ clearCache: () => void;
4865
+ resultsCount: () => number;
4866
+ resetResultsCount: () => void;
4867
+ };
4868
+ lastResult: () => number;
4869
+ dependencies: [import("../../../index.js").ChartRootSelector<import("../../../index.js").UseChartDimensionsSignature>];
4870
+ recomputations: () => number;
4871
+ resetRecomputations: () => void;
4872
+ dependencyRecomputations: () => number;
4873
+ resetDependencyRecomputations: () => void;
4874
+ } & {
4875
+ memoize: typeof import("reselect").weakMapMemoize;
4876
+ argsMemoize: typeof import("reselect").weakMapMemoize;
4877
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<{}> & {
4878
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
4879
+ }) => number) & {
4880
+ clearCache: () => void;
4881
+ resultsCount: () => number;
4882
+ resetResultsCount: () => void;
4883
+ } & {
4884
+ resultFunc: (resultFuncArgs_0: import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").ChartMargin) => number;
4885
+ memoizedResultFunc: ((resultFuncArgs_0: import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").ChartMargin) => number) & {
4886
+ clearCache: () => void;
4887
+ resultsCount: () => number;
4888
+ resetResultsCount: () => void;
4889
+ };
4890
+ lastResult: () => number;
4891
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<{}> & {
4892
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
4893
+ }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").ChartMargin) & {
4894
+ clearCache: () => void;
4895
+ resultsCount: () => number;
4896
+ resetResultsCount: () => void;
4897
+ } & {
4898
+ resultFunc: (resultFuncArgs_0: {
4899
+ margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").ChartMargin;
4900
+ width: number;
4901
+ height: number;
4902
+ propsWidth: number | undefined;
4903
+ propsHeight: number | undefined;
4904
+ }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").ChartMargin;
4905
+ memoizedResultFunc: ((resultFuncArgs_0: {
4906
+ margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").ChartMargin;
4907
+ width: number;
4908
+ height: number;
4909
+ propsWidth: number | undefined;
4910
+ propsHeight: number | undefined;
4911
+ }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").ChartMargin) & {
4912
+ clearCache: () => void;
4913
+ resultsCount: () => number;
4914
+ resetResultsCount: () => void;
4915
+ };
4916
+ lastResult: () => import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").ChartMargin;
4917
+ dependencies: [import("../../../index.js").ChartRootSelector<import("../../../index.js").UseChartDimensionsSignature>];
4918
+ recomputations: () => number;
4919
+ resetRecomputations: () => void;
4920
+ dependencyRecomputations: () => number;
4921
+ resetDependencyRecomputations: () => void;
4922
+ } & {
4923
+ memoize: typeof import("reselect").weakMapMemoize;
4924
+ argsMemoize: typeof import("reselect").weakMapMemoize;
4925
+ }];
4926
+ recomputations: () => number;
4927
+ resetRecomputations: () => void;
4928
+ dependencyRecomputations: () => number;
4929
+ resetDependencyRecomputations: () => void;
4930
+ } & {
4931
+ memoize: typeof import("reselect").weakMapMemoize;
4932
+ argsMemoize: typeof import("reselect").weakMapMemoize;
4933
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<{}> & {
4934
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
4935
+ }) => number) & {
4936
+ clearCache: () => void;
4937
+ resultsCount: () => number;
4938
+ resetResultsCount: () => void;
4939
+ } & {
4940
+ resultFunc: (resultFuncArgs_0: import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").ChartMargin) => number;
4941
+ memoizedResultFunc: ((resultFuncArgs_0: import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").ChartMargin) => number) & {
4942
+ clearCache: () => void;
4943
+ resultsCount: () => number;
4944
+ resetResultsCount: () => void;
4945
+ };
4946
+ lastResult: () => number;
4947
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<{}> & {
4948
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
4949
+ }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").ChartMargin) & {
4950
+ clearCache: () => void;
4951
+ resultsCount: () => number;
4952
+ resetResultsCount: () => void;
4953
+ } & {
4954
+ resultFunc: (resultFuncArgs_0: {
4955
+ margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").ChartMargin;
4956
+ width: number;
4957
+ height: number;
4958
+ propsWidth: number | undefined;
4959
+ propsHeight: number | undefined;
4960
+ }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").ChartMargin;
4961
+ memoizedResultFunc: ((resultFuncArgs_0: {
4962
+ margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").ChartMargin;
4963
+ width: number;
4964
+ height: number;
4965
+ propsWidth: number | undefined;
4966
+ propsHeight: number | undefined;
4967
+ }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").ChartMargin) & {
4968
+ clearCache: () => void;
4969
+ resultsCount: () => number;
4970
+ resetResultsCount: () => void;
4971
+ };
4972
+ lastResult: () => import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").ChartMargin;
4973
+ dependencies: [import("../../../index.js").ChartRootSelector<import("../../../index.js").UseChartDimensionsSignature>];
4974
+ recomputations: () => number;
4975
+ resetRecomputations: () => void;
4976
+ dependencyRecomputations: () => number;
4977
+ resetDependencyRecomputations: () => void;
4978
+ } & {
4979
+ memoize: typeof import("reselect").weakMapMemoize;
4980
+ argsMemoize: typeof import("reselect").weakMapMemoize;
4981
+ }];
4982
+ recomputations: () => number;
4983
+ resetRecomputations: () => void;
4984
+ dependencyRecomputations: () => number;
4985
+ resetDependencyRecomputations: () => void;
4986
+ } & {
4987
+ memoize: typeof import("reselect").weakMapMemoize;
4988
+ argsMemoize: typeof import("reselect").weakMapMemoize;
4989
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<{}> & {
4990
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
4991
+ }) => number) & {
4992
+ clearCache: () => void;
4993
+ resultsCount: () => number;
4994
+ resetResultsCount: () => void;
4995
+ } & {
4996
+ resultFunc: (resultFuncArgs_0: import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").ChartMargin) => number;
4997
+ memoizedResultFunc: ((resultFuncArgs_0: import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").ChartMargin) => number) & {
4998
+ clearCache: () => void;
4999
+ resultsCount: () => number;
5000
+ resetResultsCount: () => void;
5001
+ };
5002
+ lastResult: () => number;
5003
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<{}> & {
5004
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
5005
+ }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").ChartMargin) & {
5006
+ clearCache: () => void;
5007
+ resultsCount: () => number;
5008
+ resetResultsCount: () => void;
5009
+ } & {
5010
+ resultFunc: (resultFuncArgs_0: {
5011
+ margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").ChartMargin;
5012
+ width: number;
5013
+ height: number;
5014
+ propsWidth: number | undefined;
5015
+ propsHeight: number | undefined;
5016
+ }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").ChartMargin;
5017
+ memoizedResultFunc: ((resultFuncArgs_0: {
5018
+ margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").ChartMargin;
5019
+ width: number;
5020
+ height: number;
5021
+ propsWidth: number | undefined;
5022
+ propsHeight: number | undefined;
5023
+ }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").ChartMargin) & {
5024
+ clearCache: () => void;
5025
+ resultsCount: () => number;
5026
+ resetResultsCount: () => void;
5027
+ };
5028
+ lastResult: () => import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").ChartMargin;
5029
+ dependencies: [import("../../../index.js").ChartRootSelector<import("../../../index.js").UseChartDimensionsSignature>];
5030
+ recomputations: () => number;
5031
+ resetRecomputations: () => void;
5032
+ dependencyRecomputations: () => number;
5033
+ resetDependencyRecomputations: () => void;
5034
+ } & {
5035
+ memoize: typeof import("reselect").weakMapMemoize;
5036
+ argsMemoize: typeof import("reselect").weakMapMemoize;
5037
+ }];
5038
+ recomputations: () => number;
5039
+ resetRecomputations: () => void;
5040
+ dependencyRecomputations: () => number;
5041
+ resetDependencyRecomputations: () => void;
5042
+ } & {
5043
+ memoize: typeof import("reselect").weakMapMemoize;
5044
+ argsMemoize: typeof import("reselect").weakMapMemoize;
5045
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<{}> & {
5046
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
5047
+ }) => number) & {
5048
+ clearCache: () => void;
5049
+ resultsCount: () => number;
5050
+ resetResultsCount: () => void;
5051
+ } & {
5052
+ resultFunc: (resultFuncArgs_0: import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").ChartMargin) => number;
5053
+ memoizedResultFunc: ((resultFuncArgs_0: import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").ChartMargin) => number) & {
5054
+ clearCache: () => void;
5055
+ resultsCount: () => number;
5056
+ resetResultsCount: () => void;
5057
+ };
5058
+ lastResult: () => number;
5059
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<{}> & {
5060
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
5061
+ }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").ChartMargin) & {
5062
+ clearCache: () => void;
5063
+ resultsCount: () => number;
5064
+ resetResultsCount: () => void;
5065
+ } & {
5066
+ resultFunc: (resultFuncArgs_0: {
5067
+ margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").ChartMargin;
5068
+ width: number;
5069
+ height: number;
5070
+ propsWidth: number | undefined;
5071
+ propsHeight: number | undefined;
5072
+ }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").ChartMargin;
5073
+ memoizedResultFunc: ((resultFuncArgs_0: {
5074
+ margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").ChartMargin;
5075
+ width: number;
5076
+ height: number;
5077
+ propsWidth: number | undefined;
5078
+ propsHeight: number | undefined;
5079
+ }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").ChartMargin) & {
5080
+ clearCache: () => void;
5081
+ resultsCount: () => number;
5082
+ resetResultsCount: () => void;
5083
+ };
5084
+ lastResult: () => import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").ChartMargin;
5085
+ dependencies: [import("../../../index.js").ChartRootSelector<import("../../../index.js").UseChartDimensionsSignature>];
5086
+ recomputations: () => number;
5087
+ resetRecomputations: () => void;
5088
+ dependencyRecomputations: () => number;
5089
+ resetDependencyRecomputations: () => void;
5090
+ } & {
5091
+ memoize: typeof import("reselect").weakMapMemoize;
5092
+ argsMemoize: typeof import("reselect").weakMapMemoize;
5093
+ }];
5094
+ recomputations: () => number;
5095
+ resetRecomputations: () => void;
5096
+ dependencyRecomputations: () => number;
5097
+ resetDependencyRecomputations: () => void;
5098
+ } & {
5099
+ memoize: typeof import("reselect").weakMapMemoize;
5100
+ argsMemoize: typeof import("reselect").weakMapMemoize;
5101
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types.js").UseChartCartesianAxisState> & {
5102
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
5103
+ }) => number) & {
5104
+ clearCache: () => void;
5105
+ resultsCount: () => number;
5106
+ resetResultsCount: () => void;
5107
+ } & {
5108
+ resultFunc: (resultFuncArgs_0: import("../../../index.js").DefaultedXAxis[] | undefined) => number;
5109
+ memoizedResultFunc: ((resultFuncArgs_0: import("../../../index.js").DefaultedXAxis[] | undefined) => number) & {
5110
+ clearCache: () => void;
5111
+ resultsCount: () => number;
5112
+ resetResultsCount: () => void;
5113
+ };
5114
+ lastResult: () => number;
5115
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types.js").UseChartCartesianAxisState> & {
5116
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
5117
+ }) => import("../../../index.js").DefaultedXAxis[] | undefined) & {
5118
+ clearCache: () => void;
5119
+ resultsCount: () => number;
5120
+ resetResultsCount: () => void;
5121
+ } & {
5122
+ resultFunc: (resultFuncArgs_0: {
5123
+ x: import("../../../index.js").DefaultedXAxis[];
5124
+ y: import("../../../index.js").DefaultedYAxis[];
5125
+ } | undefined) => import("../../../index.js").DefaultedXAxis[] | undefined;
5126
+ memoizedResultFunc: ((resultFuncArgs_0: {
5127
+ x: import("../../../index.js").DefaultedXAxis[];
5128
+ y: import("../../../index.js").DefaultedYAxis[];
5129
+ } | undefined) => import("../../../index.js").DefaultedXAxis[] | undefined) & {
5130
+ clearCache: () => void;
5131
+ resultsCount: () => number;
5132
+ resetResultsCount: () => void;
5133
+ };
5134
+ lastResult: () => import("../../../index.js").DefaultedXAxis[] | undefined;
5135
+ dependencies: [(state: ChartState<[], [UseChartCartesianAxisSignature]>) => {
5136
+ x: import("../../../index.js").DefaultedXAxis[];
5137
+ y: import("../../../index.js").DefaultedYAxis[];
5138
+ } | undefined];
5139
+ recomputations: () => number;
5140
+ resetRecomputations: () => void;
5141
+ dependencyRecomputations: () => number;
5142
+ resetDependencyRecomputations: () => void;
5143
+ } & {
5144
+ memoize: typeof import("reselect").weakMapMemoize;
5145
+ argsMemoize: typeof import("reselect").weakMapMemoize;
5146
+ }];
5147
+ recomputations: () => number;
5148
+ resetRecomputations: () => void;
5149
+ dependencyRecomputations: () => number;
5150
+ resetDependencyRecomputations: () => void;
5151
+ } & {
5152
+ memoize: typeof import("reselect").weakMapMemoize;
5153
+ argsMemoize: typeof import("reselect").weakMapMemoize;
5154
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types.js").UseChartCartesianAxisState> & {
5155
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
5156
+ }) => number) & {
5157
+ clearCache: () => void;
5158
+ resultsCount: () => number;
5159
+ resetResultsCount: () => void;
5160
+ } & {
5161
+ resultFunc: (resultFuncArgs_0: import("../../../index.js").DefaultedYAxis[] | undefined) => number;
5162
+ memoizedResultFunc: ((resultFuncArgs_0: import("../../../index.js").DefaultedYAxis[] | undefined) => number) & {
5163
+ clearCache: () => void;
5164
+ resultsCount: () => number;
5165
+ resetResultsCount: () => void;
5166
+ };
5167
+ lastResult: () => number;
5168
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types.js").UseChartCartesianAxisState> & {
5169
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
5170
+ }) => import("../../../index.js").DefaultedYAxis[] | undefined) & {
5171
+ clearCache: () => void;
5172
+ resultsCount: () => number;
5173
+ resetResultsCount: () => void;
5174
+ } & {
5175
+ resultFunc: (resultFuncArgs_0: {
5176
+ x: import("../../../index.js").DefaultedXAxis[];
5177
+ y: import("../../../index.js").DefaultedYAxis[];
5178
+ } | undefined) => import("../../../index.js").DefaultedYAxis[] | undefined;
5179
+ memoizedResultFunc: ((resultFuncArgs_0: {
5180
+ x: import("../../../index.js").DefaultedXAxis[];
5181
+ y: import("../../../index.js").DefaultedYAxis[];
5182
+ } | undefined) => import("../../../index.js").DefaultedYAxis[] | undefined) & {
5183
+ clearCache: () => void;
5184
+ resultsCount: () => number;
5185
+ resetResultsCount: () => void;
5186
+ };
5187
+ lastResult: () => import("../../../index.js").DefaultedYAxis[] | undefined;
5188
+ dependencies: [(state: ChartState<[], [UseChartCartesianAxisSignature]>) => {
5189
+ x: import("../../../index.js").DefaultedXAxis[];
5190
+ y: import("../../../index.js").DefaultedYAxis[];
5191
+ } | undefined];
5192
+ recomputations: () => number;
5193
+ resetRecomputations: () => void;
5194
+ dependencyRecomputations: () => number;
5195
+ resetDependencyRecomputations: () => void;
5196
+ } & {
5197
+ memoize: typeof import("reselect").weakMapMemoize;
5198
+ argsMemoize: typeof import("reselect").weakMapMemoize;
5199
+ }];
5200
+ recomputations: () => number;
5201
+ resetRecomputations: () => void;
5202
+ dependencyRecomputations: () => number;
5203
+ resetDependencyRecomputations: () => void;
5204
+ } & {
5205
+ memoize: typeof import("reselect").weakMapMemoize;
5206
+ argsMemoize: typeof import("reselect").weakMapMemoize;
5207
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types.js").UseChartCartesianAxisState> & {
5208
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
5209
+ }) => number) & {
5210
+ clearCache: () => void;
5211
+ resultsCount: () => number;
5212
+ resetResultsCount: () => void;
5213
+ } & {
5214
+ resultFunc: (resultFuncArgs_0: import("../../../index.js").DefaultedXAxis[] | undefined) => number;
5215
+ memoizedResultFunc: ((resultFuncArgs_0: import("../../../index.js").DefaultedXAxis[] | undefined) => number) & {
5216
+ clearCache: () => void;
5217
+ resultsCount: () => number;
5218
+ resetResultsCount: () => void;
5219
+ };
5220
+ lastResult: () => number;
5221
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types.js").UseChartCartesianAxisState> & {
5222
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
5223
+ }) => import("../../../index.js").DefaultedXAxis[] | undefined) & {
5224
+ clearCache: () => void;
5225
+ resultsCount: () => number;
5226
+ resetResultsCount: () => void;
5227
+ } & {
5228
+ resultFunc: (resultFuncArgs_0: {
5229
+ x: import("../../../index.js").DefaultedXAxis[];
5230
+ y: import("../../../index.js").DefaultedYAxis[];
5231
+ } | undefined) => import("../../../index.js").DefaultedXAxis[] | undefined;
5232
+ memoizedResultFunc: ((resultFuncArgs_0: {
5233
+ x: import("../../../index.js").DefaultedXAxis[];
5234
+ y: import("../../../index.js").DefaultedYAxis[];
5235
+ } | undefined) => import("../../../index.js").DefaultedXAxis[] | undefined) & {
5236
+ clearCache: () => void;
5237
+ resultsCount: () => number;
5238
+ resetResultsCount: () => void;
5239
+ };
5240
+ lastResult: () => import("../../../index.js").DefaultedXAxis[] | undefined;
5241
+ dependencies: [(state: ChartState<[], [UseChartCartesianAxisSignature]>) => {
5242
+ x: import("../../../index.js").DefaultedXAxis[];
5243
+ y: import("../../../index.js").DefaultedYAxis[];
5244
+ } | undefined];
5245
+ recomputations: () => number;
5246
+ resetRecomputations: () => void;
5247
+ dependencyRecomputations: () => number;
5248
+ resetDependencyRecomputations: () => void;
5249
+ } & {
5250
+ memoize: typeof import("reselect").weakMapMemoize;
5251
+ argsMemoize: typeof import("reselect").weakMapMemoize;
5252
+ }];
5253
+ recomputations: () => number;
5254
+ resetRecomputations: () => void;
5255
+ dependencyRecomputations: () => number;
5256
+ resetDependencyRecomputations: () => void;
5257
+ } & {
5258
+ memoize: typeof import("reselect").weakMapMemoize;
5259
+ argsMemoize: typeof import("reselect").weakMapMemoize;
5260
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types.js").UseChartCartesianAxisState> & {
5261
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
5262
+ }) => number) & {
5263
+ clearCache: () => void;
5264
+ resultsCount: () => number;
5265
+ resetResultsCount: () => void;
5266
+ } & {
5267
+ resultFunc: (resultFuncArgs_0: import("../../../index.js").DefaultedYAxis[] | undefined) => number;
5268
+ memoizedResultFunc: ((resultFuncArgs_0: import("../../../index.js").DefaultedYAxis[] | undefined) => number) & {
5269
+ clearCache: () => void;
5270
+ resultsCount: () => number;
5271
+ resetResultsCount: () => void;
5272
+ };
5273
+ lastResult: () => number;
5274
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types.js").UseChartCartesianAxisState> & {
5275
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
5276
+ }) => import("../../../index.js").DefaultedYAxis[] | undefined) & {
5277
+ clearCache: () => void;
5278
+ resultsCount: () => number;
5279
+ resetResultsCount: () => void;
5280
+ } & {
5281
+ resultFunc: (resultFuncArgs_0: {
5282
+ x: import("../../../index.js").DefaultedXAxis[];
5283
+ y: import("../../../index.js").DefaultedYAxis[];
5284
+ } | undefined) => import("../../../index.js").DefaultedYAxis[] | undefined;
5285
+ memoizedResultFunc: ((resultFuncArgs_0: {
5286
+ x: import("../../../index.js").DefaultedXAxis[];
5287
+ y: import("../../../index.js").DefaultedYAxis[];
5288
+ } | undefined) => import("../../../index.js").DefaultedYAxis[] | undefined) & {
5289
+ clearCache: () => void;
5290
+ resultsCount: () => number;
5291
+ resetResultsCount: () => void;
5292
+ };
5293
+ lastResult: () => import("../../../index.js").DefaultedYAxis[] | undefined;
5294
+ dependencies: [(state: ChartState<[], [UseChartCartesianAxisSignature]>) => {
5295
+ x: import("../../../index.js").DefaultedXAxis[];
5296
+ y: import("../../../index.js").DefaultedYAxis[];
5297
+ } | undefined];
5298
+ recomputations: () => number;
5299
+ resetRecomputations: () => void;
5300
+ dependencyRecomputations: () => number;
5301
+ resetDependencyRecomputations: () => void;
5302
+ } & {
5303
+ memoize: typeof import("reselect").weakMapMemoize;
5304
+ argsMemoize: typeof import("reselect").weakMapMemoize;
5305
+ }];
5306
+ recomputations: () => number;
5307
+ resetRecomputations: () => void;
5308
+ dependencyRecomputations: () => number;
5309
+ resetDependencyRecomputations: () => void;
5310
+ } & {
5311
+ memoize: typeof import("reselect").weakMapMemoize;
5312
+ argsMemoize: typeof import("reselect").weakMapMemoize;
5313
+ }];
5314
+ recomputations: () => number;
5315
+ resetRecomputations: () => void;
5316
+ dependencyRecomputations: () => number;
5317
+ resetDependencyRecomputations: () => void;
5318
+ } & {
5319
+ memoize: typeof import("reselect").weakMapMemoize;
5320
+ argsMemoize: typeof import("reselect").weakMapMemoize;
5321
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<{}> & {
5322
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
5323
+ }) => import("../../../index.js").ProcessedSeries<keyof import("../../../index.js").ChartsSeriesConfig>) & {
5324
+ clearCache: () => void;
5325
+ resultsCount: () => number;
5326
+ resetResultsCount: () => void;
5327
+ } & {
5328
+ resultFunc: (resultFuncArgs_0: {
5329
+ processedSeries: import("../../../index.js").ProcessedSeries<keyof import("../../../index.js").ChartsSeriesConfig>;
5330
+ seriesConfig: import("../../models/index.js").ChartSeriesConfig<keyof import("../../../index.js").ChartsSeriesConfig>;
5331
+ }) => import("../../../index.js").ProcessedSeries<keyof import("../../../index.js").ChartsSeriesConfig>;
5332
+ memoizedResultFunc: ((resultFuncArgs_0: {
5333
+ processedSeries: import("../../../index.js").ProcessedSeries<keyof import("../../../index.js").ChartsSeriesConfig>;
5334
+ seriesConfig: import("../../models/index.js").ChartSeriesConfig<keyof import("../../../index.js").ChartsSeriesConfig>;
5335
+ }) => import("../../../index.js").ProcessedSeries<keyof import("../../../index.js").ChartsSeriesConfig>) & {
5336
+ clearCache: () => void;
5337
+ resultsCount: () => number;
5338
+ resetResultsCount: () => void;
5339
+ };
5340
+ lastResult: () => import("../../../index.js").ProcessedSeries<keyof import("../../../index.js").ChartsSeriesConfig>;
5341
+ dependencies: [import("../../../index.js").ChartRootSelector<import("../../../index.js").UseChartSeriesSignature>];
5342
+ recomputations: () => number;
5343
+ resetRecomputations: () => void;
5344
+ dependencyRecomputations: () => number;
5345
+ resetDependencyRecomputations: () => void;
5346
+ } & {
5347
+ memoize: typeof import("reselect").weakMapMemoize;
5348
+ argsMemoize: typeof import("reselect").weakMapMemoize;
5349
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<{}> & {
5350
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
5351
+ }) => import("../../models/index.js").ChartSeriesConfig<keyof import("../../../index.js").ChartsSeriesConfig>) & {
5352
+ clearCache: () => void;
5353
+ resultsCount: () => number;
5354
+ resetResultsCount: () => void;
5355
+ } & {
5356
+ resultFunc: (resultFuncArgs_0: {
5357
+ processedSeries: import("../../../index.js").ProcessedSeries<keyof import("../../../index.js").ChartsSeriesConfig>;
5358
+ seriesConfig: import("../../models/index.js").ChartSeriesConfig<keyof import("../../../index.js").ChartsSeriesConfig>;
5359
+ }) => import("../../models/index.js").ChartSeriesConfig<keyof import("../../../index.js").ChartsSeriesConfig>;
5360
+ memoizedResultFunc: ((resultFuncArgs_0: {
5361
+ processedSeries: import("../../../index.js").ProcessedSeries<keyof import("../../../index.js").ChartsSeriesConfig>;
5362
+ seriesConfig: import("../../models/index.js").ChartSeriesConfig<keyof import("../../../index.js").ChartsSeriesConfig>;
5363
+ }) => import("../../models/index.js").ChartSeriesConfig<keyof import("../../../index.js").ChartsSeriesConfig>) & {
5364
+ clearCache: () => void;
5365
+ resultsCount: () => number;
5366
+ resetResultsCount: () => void;
5367
+ };
5368
+ lastResult: () => import("../../models/index.js").ChartSeriesConfig<keyof import("../../../index.js").ChartsSeriesConfig>;
5369
+ dependencies: [import("../../../index.js").ChartRootSelector<import("../../../index.js").UseChartSeriesSignature>];
5370
+ recomputations: () => number;
5371
+ resetRecomputations: () => void;
5372
+ dependencyRecomputations: () => number;
5373
+ resetDependencyRecomputations: () => void;
5374
+ } & {
5375
+ memoize: typeof import("reselect").weakMapMemoize;
5376
+ argsMemoize: typeof import("reselect").weakMapMemoize;
5377
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types.js").UseChartCartesianAxisState> & {
5378
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
5379
+ }) => Map<AxisId, ZoomData> | undefined) & {
5380
+ clearCache: () => void;
5381
+ resultsCount: () => number;
5382
+ resetResultsCount: () => void;
5383
+ } & {
5384
+ resultFunc: (resultFuncArgs_0: {
5385
+ isInteracting: boolean;
5386
+ zoomData: readonly ZoomData[];
5387
+ } | undefined) => Map<AxisId, ZoomData> | undefined;
5388
+ memoizedResultFunc: ((resultFuncArgs_0: {
5389
+ isInteracting: boolean;
5390
+ zoomData: readonly ZoomData[];
5391
+ } | undefined) => Map<AxisId, ZoomData> | undefined) & {
5392
+ clearCache: () => void;
5393
+ resultsCount: () => number;
5394
+ resetResultsCount: () => void;
5395
+ };
5396
+ lastResult: () => Map<AxisId, ZoomData> | undefined;
5397
+ dependencies: [(state: ChartState<[], [UseChartCartesianAxisSignature]>) => {
5398
+ isInteracting: boolean;
5399
+ zoomData: readonly ZoomData[];
5400
+ } | undefined];
5401
+ recomputations: () => number;
5402
+ resetRecomputations: () => void;
5403
+ dependencyRecomputations: () => number;
5404
+ resetDependencyRecomputations: () => void;
5405
+ } & {
5406
+ memoize: typeof import("reselect").weakMapMemoize;
5407
+ argsMemoize: typeof import("reselect").weakMapMemoize;
5408
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types.js").UseChartCartesianAxisState> & {
5409
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
5410
+ }) => {
5411
+ [x: string]: import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions;
5412
+ [x: number]: import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions;
5413
+ }) & {
5414
+ clearCache: () => void;
5415
+ resultsCount: () => number;
5416
+ resetResultsCount: () => void;
5417
+ } & {
5418
+ resultFunc: (resultFuncArgs_0: Record<AxisId, import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions>, resultFuncArgs_1: Record<AxisId, import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions>) => {
5419
+ [x: string]: import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions;
5420
+ [x: number]: import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions;
5421
+ };
5422
+ memoizedResultFunc: ((resultFuncArgs_0: Record<AxisId, import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions>, resultFuncArgs_1: Record<AxisId, import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions>) => {
5423
+ [x: string]: import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions;
5424
+ [x: number]: import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions;
5425
+ }) & {
5426
+ clearCache: () => void;
5427
+ resultsCount: () => number;
5428
+ resetResultsCount: () => void;
5429
+ };
5430
+ lastResult: () => {
5431
+ [x: string]: import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions;
5432
+ [x: number]: import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions;
5433
+ };
5434
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types.js").UseChartCartesianAxisState> & {
5435
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
5436
+ }) => Record<AxisId, import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions>) & {
5437
+ clearCache: () => void;
5438
+ resultsCount: () => number;
5439
+ resetResultsCount: () => void;
5440
+ } & {
5441
+ resultFunc: (resultFuncArgs_0: import("../../../index.js").DefaultedXAxis[] | undefined) => Record<AxisId, import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions>;
5442
+ memoizedResultFunc: ((resultFuncArgs_0: import("../../../index.js").DefaultedXAxis[] | undefined) => Record<AxisId, import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions>) & {
5443
+ clearCache: () => void;
5444
+ resultsCount: () => number;
5445
+ resetResultsCount: () => void;
5446
+ };
5447
+ lastResult: () => Record<AxisId, import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions>;
5448
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types.js").UseChartCartesianAxisState> & {
5449
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
5450
+ }) => import("../../../index.js").DefaultedXAxis[] | undefined) & {
5451
+ clearCache: () => void;
5452
+ resultsCount: () => number;
5453
+ resetResultsCount: () => void;
5454
+ } & {
5455
+ resultFunc: (resultFuncArgs_0: {
5456
+ x: import("../../../index.js").DefaultedXAxis[];
5457
+ y: import("../../../index.js").DefaultedYAxis[];
5458
+ } | undefined) => import("../../../index.js").DefaultedXAxis[] | undefined;
5459
+ memoizedResultFunc: ((resultFuncArgs_0: {
5460
+ x: import("../../../index.js").DefaultedXAxis[];
5461
+ y: import("../../../index.js").DefaultedYAxis[];
5462
+ } | undefined) => import("../../../index.js").DefaultedXAxis[] | undefined) & {
5463
+ clearCache: () => void;
5464
+ resultsCount: () => number;
5465
+ resetResultsCount: () => void;
5466
+ };
5467
+ lastResult: () => import("../../../index.js").DefaultedXAxis[] | undefined;
5468
+ dependencies: [(state: ChartState<[], [UseChartCartesianAxisSignature]>) => {
5469
+ x: import("../../../index.js").DefaultedXAxis[];
5470
+ y: import("../../../index.js").DefaultedYAxis[];
5471
+ } | undefined];
5472
+ recomputations: () => number;
5473
+ resetRecomputations: () => void;
5474
+ dependencyRecomputations: () => number;
5475
+ resetDependencyRecomputations: () => void;
5476
+ } & {
5477
+ memoize: typeof import("reselect").weakMapMemoize;
5478
+ argsMemoize: typeof import("reselect").weakMapMemoize;
5479
+ }];
5480
+ recomputations: () => number;
5481
+ resetRecomputations: () => void;
5482
+ dependencyRecomputations: () => number;
5483
+ resetDependencyRecomputations: () => void;
5484
+ } & {
5485
+ memoize: typeof import("reselect").weakMapMemoize;
5486
+ argsMemoize: typeof import("reselect").weakMapMemoize;
5487
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types.js").UseChartCartesianAxisState> & {
5488
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
5489
+ }) => Record<AxisId, import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions>) & {
5490
+ clearCache: () => void;
5491
+ resultsCount: () => number;
5492
+ resetResultsCount: () => void;
5493
+ } & {
5494
+ resultFunc: (resultFuncArgs_0: import("../../../index.js").DefaultedYAxis[] | undefined) => Record<AxisId, import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions>;
5495
+ memoizedResultFunc: ((resultFuncArgs_0: import("../../../index.js").DefaultedYAxis[] | undefined) => Record<AxisId, import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions>) & {
5496
+ clearCache: () => void;
5497
+ resultsCount: () => number;
5498
+ resetResultsCount: () => void;
5499
+ };
5500
+ lastResult: () => Record<AxisId, import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions>;
5501
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types.js").UseChartCartesianAxisState> & {
5502
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
5503
+ }) => import("../../../index.js").DefaultedYAxis[] | undefined) & {
5504
+ clearCache: () => void;
5505
+ resultsCount: () => number;
5506
+ resetResultsCount: () => void;
5507
+ } & {
5508
+ resultFunc: (resultFuncArgs_0: {
5509
+ x: import("../../../index.js").DefaultedXAxis[];
5510
+ y: import("../../../index.js").DefaultedYAxis[];
5511
+ } | undefined) => import("../../../index.js").DefaultedYAxis[] | undefined;
5512
+ memoizedResultFunc: ((resultFuncArgs_0: {
5513
+ x: import("../../../index.js").DefaultedXAxis[];
5514
+ y: import("../../../index.js").DefaultedYAxis[];
5515
+ } | undefined) => import("../../../index.js").DefaultedYAxis[] | undefined) & {
5516
+ clearCache: () => void;
5517
+ resultsCount: () => number;
5518
+ resetResultsCount: () => void;
5519
+ };
5520
+ lastResult: () => import("../../../index.js").DefaultedYAxis[] | undefined;
5521
+ dependencies: [(state: ChartState<[], [UseChartCartesianAxisSignature]>) => {
5522
+ x: import("../../../index.js").DefaultedXAxis[];
5523
+ y: import("../../../index.js").DefaultedYAxis[];
5524
+ } | undefined];
5525
+ recomputations: () => number;
5526
+ resetRecomputations: () => void;
5527
+ dependencyRecomputations: () => number;
5528
+ resetDependencyRecomputations: () => void;
5529
+ } & {
5530
+ memoize: typeof import("reselect").weakMapMemoize;
5531
+ argsMemoize: typeof import("reselect").weakMapMemoize;
5532
+ }];
5533
+ recomputations: () => number;
5534
+ resetRecomputations: () => void;
5535
+ dependencyRecomputations: () => number;
5536
+ resetDependencyRecomputations: () => void;
5537
+ } & {
5538
+ memoize: typeof import("reselect").weakMapMemoize;
5539
+ argsMemoize: typeof import("reselect").weakMapMemoize;
5540
+ }];
5541
+ recomputations: () => number;
5542
+ resetRecomputations: () => void;
5543
+ dependencyRecomputations: () => number;
5544
+ resetDependencyRecomputations: () => void;
5545
+ } & {
5546
+ memoize: typeof import("reselect").weakMapMemoize;
5547
+ argsMemoize: typeof import("reselect").weakMapMemoize;
5548
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types.js").UseChartCartesianAxisState> & {
5549
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
5550
+ } & Partial<{}>) => import("./zoom.types.js").GetZoomAxisFilters | undefined) & {
5551
+ clearCache: () => void;
5552
+ resultsCount: () => number;
5553
+ resetResultsCount: () => void;
5554
+ } & {
5555
+ resultFunc: (resultFuncArgs_0: ((axis: import("../../../index.js").AxisConfig<import("../../../index.js").ScaleName, any, import("../../../index.js").ChartsXAxisProps>, axisIndex: number) => import("./useChartCartesianAxis.types.js").ExtremumFilter | null) | undefined, resultFuncArgs_1: ((axis: import("../../../index.js").AxisConfig<import("../../../index.js").ScaleName, any, import("../../../index.js").ChartsYAxisProps>, axisIndex: number) => import("./useChartCartesianAxis.types.js").ExtremumFilter | null) | undefined, resultFuncArgs_2: import("../../../index.js").DefaultedXAxis[] | undefined, resultFuncArgs_3: import("../../../index.js").DefaultedYAxis[] | undefined) => import("./zoom.types.js").GetZoomAxisFilters | undefined;
5556
+ memoizedResultFunc: ((resultFuncArgs_0: ((axis: import("../../../index.js").AxisConfig<import("../../../index.js").ScaleName, any, import("../../../index.js").ChartsXAxisProps>, axisIndex: number) => import("./useChartCartesianAxis.types.js").ExtremumFilter | null) | undefined, resultFuncArgs_1: ((axis: import("../../../index.js").AxisConfig<import("../../../index.js").ScaleName, any, import("../../../index.js").ChartsYAxisProps>, axisIndex: number) => import("./useChartCartesianAxis.types.js").ExtremumFilter | null) | undefined, resultFuncArgs_2: import("../../../index.js").DefaultedXAxis[] | undefined, resultFuncArgs_3: import("../../../index.js").DefaultedYAxis[] | undefined) => import("./zoom.types.js").GetZoomAxisFilters | undefined) & {
5557
+ clearCache: () => void;
5558
+ resultsCount: () => number;
5559
+ resetResultsCount: () => void;
5560
+ };
5561
+ lastResult: () => import("./zoom.types.js").GetZoomAxisFilters | undefined;
5562
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types.js").UseChartCartesianAxisState> & {
5563
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
5564
+ } & Partial<{}>) => ((axis: import("../../../index.js").AxisConfig<import("../../../index.js").ScaleName, any, import("../../../index.js").ChartsXAxisProps>, axisIndex: number) => import("./useChartCartesianAxis.types.js").ExtremumFilter | null) | undefined) & {
5565
+ clearCache: () => void;
5566
+ resultsCount: () => number;
5567
+ resetResultsCount: () => void;
5568
+ } & {
5569
+ resultFunc: (resultFuncArgs_0: Map<AxisId, ZoomData> | undefined, resultFuncArgs_1: {
5570
+ [x: string]: import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions;
5571
+ [x: number]: import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions;
5572
+ }, resultFuncArgs_2: import("../../models/index.js").ChartSeriesConfig<keyof import("../../../index.js").ChartsSeriesConfig>, resultFuncArgs_3: import("../../../index.js").ProcessedSeries<keyof import("../../../index.js").ChartsSeriesConfig>) => ((axis: import("../../../index.js").AxisConfig<import("../../../index.js").ScaleName, any, import("../../../index.js").ChartsXAxisProps>, axisIndex: number) => import("./useChartCartesianAxis.types.js").ExtremumFilter | null) | undefined;
5573
+ memoizedResultFunc: ((resultFuncArgs_0: Map<AxisId, ZoomData> | undefined, resultFuncArgs_1: {
5574
+ [x: string]: import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions;
5575
+ [x: number]: import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions;
5576
+ }, resultFuncArgs_2: import("../../models/index.js").ChartSeriesConfig<keyof import("../../../index.js").ChartsSeriesConfig>, resultFuncArgs_3: import("../../../index.js").ProcessedSeries<keyof import("../../../index.js").ChartsSeriesConfig>) => ((axis: import("../../../index.js").AxisConfig<import("../../../index.js").ScaleName, any, import("../../../index.js").ChartsXAxisProps>, axisIndex: number) => import("./useChartCartesianAxis.types.js").ExtremumFilter | null) | undefined) & {
5577
+ clearCache: () => void;
5578
+ resultsCount: () => number;
5579
+ resetResultsCount: () => void;
5580
+ };
5581
+ lastResult: () => ((axis: import("../../../index.js").AxisConfig<import("../../../index.js").ScaleName, any, import("../../../index.js").ChartsXAxisProps>, axisIndex: number) => import("./useChartCartesianAxis.types.js").ExtremumFilter | null) | undefined;
5582
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types.js").UseChartCartesianAxisState> & {
5583
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
5584
+ }) => Map<AxisId, ZoomData> | undefined) & {
5585
+ clearCache: () => void;
5586
+ resultsCount: () => number;
5587
+ resetResultsCount: () => void;
5588
+ } & {
5589
+ resultFunc: (resultFuncArgs_0: {
5590
+ isInteracting: boolean;
5591
+ zoomData: readonly ZoomData[];
5592
+ } | undefined) => Map<AxisId, ZoomData> | undefined;
5593
+ memoizedResultFunc: ((resultFuncArgs_0: {
5594
+ isInteracting: boolean;
5595
+ zoomData: readonly ZoomData[];
5596
+ } | undefined) => Map<AxisId, ZoomData> | undefined) & {
5597
+ clearCache: () => void;
5598
+ resultsCount: () => number;
5599
+ resetResultsCount: () => void;
5600
+ };
5601
+ lastResult: () => Map<AxisId, ZoomData> | undefined;
5602
+ dependencies: [(state: ChartState<[], [UseChartCartesianAxisSignature]>) => {
5603
+ isInteracting: boolean;
5604
+ zoomData: readonly ZoomData[];
5605
+ } | undefined];
5606
+ recomputations: () => number;
5607
+ resetRecomputations: () => void;
5608
+ dependencyRecomputations: () => number;
5609
+ resetDependencyRecomputations: () => void;
5610
+ } & {
5611
+ memoize: typeof import("reselect").weakMapMemoize;
5612
+ argsMemoize: typeof import("reselect").weakMapMemoize;
5613
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types.js").UseChartCartesianAxisState> & {
5614
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
5615
+ }) => {
5616
+ [x: string]: import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions;
5617
+ [x: number]: import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions;
5618
+ }) & {
5619
+ clearCache: () => void;
5620
+ resultsCount: () => number;
5621
+ resetResultsCount: () => void;
5622
+ } & {
5623
+ resultFunc: (resultFuncArgs_0: Record<AxisId, import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions>, resultFuncArgs_1: Record<AxisId, import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions>) => {
5624
+ [x: string]: import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions;
5625
+ [x: number]: import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions;
5626
+ };
5627
+ memoizedResultFunc: ((resultFuncArgs_0: Record<AxisId, import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions>, resultFuncArgs_1: Record<AxisId, import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions>) => {
5628
+ [x: string]: import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions;
5629
+ [x: number]: import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions;
5630
+ }) & {
5631
+ clearCache: () => void;
5632
+ resultsCount: () => number;
5633
+ resetResultsCount: () => void;
5634
+ };
5635
+ lastResult: () => {
5636
+ [x: string]: import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions;
5637
+ [x: number]: import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions;
5638
+ };
5639
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types.js").UseChartCartesianAxisState> & {
5640
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
5641
+ }) => Record<AxisId, import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions>) & {
5642
+ clearCache: () => void;
5643
+ resultsCount: () => number;
5644
+ resetResultsCount: () => void;
5645
+ } & {
5646
+ resultFunc: (resultFuncArgs_0: import("../../../index.js").DefaultedXAxis[] | undefined) => Record<AxisId, import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions>;
5647
+ memoizedResultFunc: ((resultFuncArgs_0: import("../../../index.js").DefaultedXAxis[] | undefined) => Record<AxisId, import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions>) & {
5648
+ clearCache: () => void;
5649
+ resultsCount: () => number;
5650
+ resetResultsCount: () => void;
5651
+ };
5652
+ lastResult: () => Record<AxisId, import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions>;
5653
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types.js").UseChartCartesianAxisState> & {
5654
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
5655
+ }) => import("../../../index.js").DefaultedXAxis[] | undefined) & {
5656
+ clearCache: () => void;
5657
+ resultsCount: () => number;
5658
+ resetResultsCount: () => void;
5659
+ } & {
5660
+ resultFunc: (resultFuncArgs_0: {
5661
+ x: import("../../../index.js").DefaultedXAxis[];
5662
+ y: import("../../../index.js").DefaultedYAxis[];
5663
+ } | undefined) => import("../../../index.js").DefaultedXAxis[] | undefined;
5664
+ memoizedResultFunc: ((resultFuncArgs_0: {
5665
+ x: import("../../../index.js").DefaultedXAxis[];
5666
+ y: import("../../../index.js").DefaultedYAxis[];
5667
+ } | undefined) => import("../../../index.js").DefaultedXAxis[] | undefined) & {
5668
+ clearCache: () => void;
5669
+ resultsCount: () => number;
5670
+ resetResultsCount: () => void;
5671
+ };
5672
+ lastResult: () => import("../../../index.js").DefaultedXAxis[] | undefined;
5673
+ dependencies: [(state: ChartState<[], [UseChartCartesianAxisSignature]>) => {
5674
+ x: import("../../../index.js").DefaultedXAxis[];
5675
+ y: import("../../../index.js").DefaultedYAxis[];
5676
+ } | undefined];
5677
+ recomputations: () => number;
5678
+ resetRecomputations: () => void;
5679
+ dependencyRecomputations: () => number;
5680
+ resetDependencyRecomputations: () => void;
5681
+ } & {
5682
+ memoize: typeof import("reselect").weakMapMemoize;
5683
+ argsMemoize: typeof import("reselect").weakMapMemoize;
5684
+ }];
5685
+ recomputations: () => number;
5686
+ resetRecomputations: () => void;
5687
+ dependencyRecomputations: () => number;
5688
+ resetDependencyRecomputations: () => void;
5689
+ } & {
5690
+ memoize: typeof import("reselect").weakMapMemoize;
5691
+ argsMemoize: typeof import("reselect").weakMapMemoize;
5692
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types.js").UseChartCartesianAxisState> & {
5693
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
5694
+ }) => Record<AxisId, import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions>) & {
5695
+ clearCache: () => void;
5696
+ resultsCount: () => number;
5697
+ resetResultsCount: () => void;
5698
+ } & {
5699
+ resultFunc: (resultFuncArgs_0: import("../../../index.js").DefaultedYAxis[] | undefined) => Record<AxisId, import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions>;
5700
+ memoizedResultFunc: ((resultFuncArgs_0: import("../../../index.js").DefaultedYAxis[] | undefined) => Record<AxisId, import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions>) & {
5701
+ clearCache: () => void;
5702
+ resultsCount: () => number;
5703
+ resetResultsCount: () => void;
5704
+ };
5705
+ lastResult: () => Record<AxisId, import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions>;
5706
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types.js").UseChartCartesianAxisState> & {
5707
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
5708
+ }) => import("../../../index.js").DefaultedYAxis[] | undefined) & {
5709
+ clearCache: () => void;
5710
+ resultsCount: () => number;
5711
+ resetResultsCount: () => void;
5712
+ } & {
5713
+ resultFunc: (resultFuncArgs_0: {
5714
+ x: import("../../../index.js").DefaultedXAxis[];
5715
+ y: import("../../../index.js").DefaultedYAxis[];
5716
+ } | undefined) => import("../../../index.js").DefaultedYAxis[] | undefined;
5717
+ memoizedResultFunc: ((resultFuncArgs_0: {
5718
+ x: import("../../../index.js").DefaultedXAxis[];
5719
+ y: import("../../../index.js").DefaultedYAxis[];
5720
+ } | undefined) => import("../../../index.js").DefaultedYAxis[] | undefined) & {
5721
+ clearCache: () => void;
5722
+ resultsCount: () => number;
5723
+ resetResultsCount: () => void;
5724
+ };
5725
+ lastResult: () => import("../../../index.js").DefaultedYAxis[] | undefined;
5726
+ dependencies: [(state: ChartState<[], [UseChartCartesianAxisSignature]>) => {
5727
+ x: import("../../../index.js").DefaultedXAxis[];
5728
+ y: import("../../../index.js").DefaultedYAxis[];
5729
+ } | undefined];
5730
+ recomputations: () => number;
5731
+ resetRecomputations: () => void;
5732
+ dependencyRecomputations: () => number;
5733
+ resetDependencyRecomputations: () => void;
5734
+ } & {
5735
+ memoize: typeof import("reselect").weakMapMemoize;
5736
+ argsMemoize: typeof import("reselect").weakMapMemoize;
5737
+ }];
5738
+ recomputations: () => number;
5739
+ resetRecomputations: () => void;
5740
+ dependencyRecomputations: () => number;
5741
+ resetDependencyRecomputations: () => void;
5742
+ } & {
5743
+ memoize: typeof import("reselect").weakMapMemoize;
5744
+ argsMemoize: typeof import("reselect").weakMapMemoize;
5745
+ }];
5746
+ recomputations: () => number;
5747
+ resetRecomputations: () => void;
5748
+ dependencyRecomputations: () => number;
5749
+ resetDependencyRecomputations: () => void;
5750
+ } & {
5751
+ memoize: typeof import("reselect").weakMapMemoize;
5752
+ argsMemoize: typeof import("reselect").weakMapMemoize;
5753
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<{}> & {
5754
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
5755
+ }) => import("../../models/index.js").ChartSeriesConfig<keyof import("../../../index.js").ChartsSeriesConfig>) & {
5756
+ clearCache: () => void;
5757
+ resultsCount: () => number;
5758
+ resetResultsCount: () => void;
5759
+ } & {
5760
+ resultFunc: (resultFuncArgs_0: {
5761
+ processedSeries: import("../../../index.js").ProcessedSeries<keyof import("../../../index.js").ChartsSeriesConfig>;
5762
+ seriesConfig: import("../../models/index.js").ChartSeriesConfig<keyof import("../../../index.js").ChartsSeriesConfig>;
5763
+ }) => import("../../models/index.js").ChartSeriesConfig<keyof import("../../../index.js").ChartsSeriesConfig>;
5764
+ memoizedResultFunc: ((resultFuncArgs_0: {
5765
+ processedSeries: import("../../../index.js").ProcessedSeries<keyof import("../../../index.js").ChartsSeriesConfig>;
5766
+ seriesConfig: import("../../models/index.js").ChartSeriesConfig<keyof import("../../../index.js").ChartsSeriesConfig>;
5767
+ }) => import("../../models/index.js").ChartSeriesConfig<keyof import("../../../index.js").ChartsSeriesConfig>) & {
5768
+ clearCache: () => void;
5769
+ resultsCount: () => number;
5770
+ resetResultsCount: () => void;
5771
+ };
5772
+ lastResult: () => import("../../models/index.js").ChartSeriesConfig<keyof import("../../../index.js").ChartsSeriesConfig>;
5773
+ dependencies: [import("../../../index.js").ChartRootSelector<import("../../../index.js").UseChartSeriesSignature>];
5774
+ recomputations: () => number;
5775
+ resetRecomputations: () => void;
5776
+ dependencyRecomputations: () => number;
5777
+ resetDependencyRecomputations: () => void;
5778
+ } & {
5779
+ memoize: typeof import("reselect").weakMapMemoize;
5780
+ argsMemoize: typeof import("reselect").weakMapMemoize;
5781
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<{}> & {
5782
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
5783
+ }) => import("../../../index.js").ProcessedSeries<keyof import("../../../index.js").ChartsSeriesConfig>) & {
5784
+ clearCache: () => void;
5785
+ resultsCount: () => number;
5786
+ resetResultsCount: () => void;
5787
+ } & {
5788
+ resultFunc: (resultFuncArgs_0: {
5789
+ processedSeries: import("../../../index.js").ProcessedSeries<keyof import("../../../index.js").ChartsSeriesConfig>;
5790
+ seriesConfig: import("../../models/index.js").ChartSeriesConfig<keyof import("../../../index.js").ChartsSeriesConfig>;
5791
+ }) => import("../../../index.js").ProcessedSeries<keyof import("../../../index.js").ChartsSeriesConfig>;
5792
+ memoizedResultFunc: ((resultFuncArgs_0: {
5793
+ processedSeries: import("../../../index.js").ProcessedSeries<keyof import("../../../index.js").ChartsSeriesConfig>;
5794
+ seriesConfig: import("../../models/index.js").ChartSeriesConfig<keyof import("../../../index.js").ChartsSeriesConfig>;
5795
+ }) => import("../../../index.js").ProcessedSeries<keyof import("../../../index.js").ChartsSeriesConfig>) & {
5796
+ clearCache: () => void;
5797
+ resultsCount: () => number;
5798
+ resetResultsCount: () => void;
5799
+ };
5800
+ lastResult: () => import("../../../index.js").ProcessedSeries<keyof import("../../../index.js").ChartsSeriesConfig>;
5801
+ dependencies: [import("../../../index.js").ChartRootSelector<import("../../../index.js").UseChartSeriesSignature>];
5802
+ recomputations: () => number;
5803
+ resetRecomputations: () => void;
5804
+ dependencyRecomputations: () => number;
5805
+ resetDependencyRecomputations: () => void;
5806
+ } & {
5807
+ memoize: typeof import("reselect").weakMapMemoize;
5808
+ argsMemoize: typeof import("reselect").weakMapMemoize;
5809
+ }];
5810
+ recomputations: () => number;
5811
+ resetRecomputations: () => void;
5812
+ dependencyRecomputations: () => number;
5813
+ resetDependencyRecomputations: () => void;
5814
+ } & {
5815
+ memoize: typeof import("reselect").weakMapMemoize;
5816
+ argsMemoize: typeof import("reselect").weakMapMemoize;
5817
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types.js").UseChartCartesianAxisState> & {
5818
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
5819
+ } & Partial<{}>) => ((axis: import("../../../index.js").AxisConfig<import("../../../index.js").ScaleName, any, import("../../../index.js").ChartsYAxisProps>, axisIndex: number) => import("./useChartCartesianAxis.types.js").ExtremumFilter | null) | undefined) & {
5820
+ clearCache: () => void;
5821
+ resultsCount: () => number;
5822
+ resetResultsCount: () => void;
5823
+ } & {
5824
+ resultFunc: (resultFuncArgs_0: Map<AxisId, ZoomData> | undefined, resultFuncArgs_1: {
5825
+ [x: string]: import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions;
5826
+ [x: number]: import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions;
5827
+ }, resultFuncArgs_2: import("../../models/index.js").ChartSeriesConfig<keyof import("../../../index.js").ChartsSeriesConfig>, resultFuncArgs_3: import("../../../index.js").ProcessedSeries<keyof import("../../../index.js").ChartsSeriesConfig>) => ((axis: import("../../../index.js").AxisConfig<import("../../../index.js").ScaleName, any, import("../../../index.js").ChartsYAxisProps>, axisIndex: number) => import("./useChartCartesianAxis.types.js").ExtremumFilter | null) | undefined;
5828
+ memoizedResultFunc: ((resultFuncArgs_0: Map<AxisId, ZoomData> | undefined, resultFuncArgs_1: {
5829
+ [x: string]: import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions;
5830
+ [x: number]: import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions;
5831
+ }, resultFuncArgs_2: import("../../models/index.js").ChartSeriesConfig<keyof import("../../../index.js").ChartsSeriesConfig>, resultFuncArgs_3: import("../../../index.js").ProcessedSeries<keyof import("../../../index.js").ChartsSeriesConfig>) => ((axis: import("../../../index.js").AxisConfig<import("../../../index.js").ScaleName, any, import("../../../index.js").ChartsYAxisProps>, axisIndex: number) => import("./useChartCartesianAxis.types.js").ExtremumFilter | null) | undefined) & {
5832
+ clearCache: () => void;
5833
+ resultsCount: () => number;
5834
+ resetResultsCount: () => void;
5835
+ };
5836
+ lastResult: () => ((axis: import("../../../index.js").AxisConfig<import("../../../index.js").ScaleName, any, import("../../../index.js").ChartsYAxisProps>, axisIndex: number) => import("./useChartCartesianAxis.types.js").ExtremumFilter | null) | undefined;
5837
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types.js").UseChartCartesianAxisState> & {
5838
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
5839
+ }) => Map<AxisId, ZoomData> | undefined) & {
5840
+ clearCache: () => void;
5841
+ resultsCount: () => number;
5842
+ resetResultsCount: () => void;
5843
+ } & {
5844
+ resultFunc: (resultFuncArgs_0: {
5845
+ isInteracting: boolean;
5846
+ zoomData: readonly ZoomData[];
5847
+ } | undefined) => Map<AxisId, ZoomData> | undefined;
5848
+ memoizedResultFunc: ((resultFuncArgs_0: {
5849
+ isInteracting: boolean;
5850
+ zoomData: readonly ZoomData[];
5851
+ } | undefined) => Map<AxisId, ZoomData> | undefined) & {
5852
+ clearCache: () => void;
5853
+ resultsCount: () => number;
5854
+ resetResultsCount: () => void;
5855
+ };
5856
+ lastResult: () => Map<AxisId, ZoomData> | undefined;
5857
+ dependencies: [(state: ChartState<[], [UseChartCartesianAxisSignature]>) => {
5858
+ isInteracting: boolean;
5859
+ zoomData: readonly ZoomData[];
5860
+ } | undefined];
5861
+ recomputations: () => number;
5862
+ resetRecomputations: () => void;
5863
+ dependencyRecomputations: () => number;
5864
+ resetDependencyRecomputations: () => void;
5865
+ } & {
5866
+ memoize: typeof import("reselect").weakMapMemoize;
5867
+ argsMemoize: typeof import("reselect").weakMapMemoize;
5868
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types.js").UseChartCartesianAxisState> & {
5869
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
5870
+ }) => {
5871
+ [x: string]: import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions;
5872
+ [x: number]: import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions;
5873
+ }) & {
5874
+ clearCache: () => void;
5875
+ resultsCount: () => number;
5876
+ resetResultsCount: () => void;
5877
+ } & {
5878
+ resultFunc: (resultFuncArgs_0: Record<AxisId, import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions>, resultFuncArgs_1: Record<AxisId, import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions>) => {
5879
+ [x: string]: import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions;
5880
+ [x: number]: import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions;
5881
+ };
5882
+ memoizedResultFunc: ((resultFuncArgs_0: Record<AxisId, import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions>, resultFuncArgs_1: Record<AxisId, import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions>) => {
5883
+ [x: string]: import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions;
5884
+ [x: number]: import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions;
5885
+ }) & {
5886
+ clearCache: () => void;
5887
+ resultsCount: () => number;
5888
+ resetResultsCount: () => void;
5889
+ };
5890
+ lastResult: () => {
5891
+ [x: string]: import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions;
5892
+ [x: number]: import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions;
5893
+ };
5894
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types.js").UseChartCartesianAxisState> & {
5895
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
5896
+ }) => Record<AxisId, import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions>) & {
5897
+ clearCache: () => void;
5898
+ resultsCount: () => number;
5899
+ resetResultsCount: () => void;
5900
+ } & {
5901
+ resultFunc: (resultFuncArgs_0: import("../../../index.js").DefaultedXAxis[] | undefined) => Record<AxisId, import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions>;
5902
+ memoizedResultFunc: ((resultFuncArgs_0: import("../../../index.js").DefaultedXAxis[] | undefined) => Record<AxisId, import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions>) & {
5903
+ clearCache: () => void;
5904
+ resultsCount: () => number;
5905
+ resetResultsCount: () => void;
5906
+ };
5907
+ lastResult: () => Record<AxisId, import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions>;
5908
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types.js").UseChartCartesianAxisState> & {
5909
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
5910
+ }) => import("../../../index.js").DefaultedXAxis[] | undefined) & {
5911
+ clearCache: () => void;
5912
+ resultsCount: () => number;
5913
+ resetResultsCount: () => void;
5914
+ } & {
5915
+ resultFunc: (resultFuncArgs_0: {
5916
+ x: import("../../../index.js").DefaultedXAxis[];
5917
+ y: import("../../../index.js").DefaultedYAxis[];
5918
+ } | undefined) => import("../../../index.js").DefaultedXAxis[] | undefined;
5919
+ memoizedResultFunc: ((resultFuncArgs_0: {
5920
+ x: import("../../../index.js").DefaultedXAxis[];
5921
+ y: import("../../../index.js").DefaultedYAxis[];
5922
+ } | undefined) => import("../../../index.js").DefaultedXAxis[] | undefined) & {
5923
+ clearCache: () => void;
5924
+ resultsCount: () => number;
5925
+ resetResultsCount: () => void;
5926
+ };
5927
+ lastResult: () => import("../../../index.js").DefaultedXAxis[] | undefined;
5928
+ dependencies: [(state: ChartState<[], [UseChartCartesianAxisSignature]>) => {
5929
+ x: import("../../../index.js").DefaultedXAxis[];
5930
+ y: import("../../../index.js").DefaultedYAxis[];
5931
+ } | undefined];
5932
+ recomputations: () => number;
5933
+ resetRecomputations: () => void;
5934
+ dependencyRecomputations: () => number;
5935
+ resetDependencyRecomputations: () => void;
5936
+ } & {
5937
+ memoize: typeof import("reselect").weakMapMemoize;
5938
+ argsMemoize: typeof import("reselect").weakMapMemoize;
5939
+ }];
5940
+ recomputations: () => number;
5941
+ resetRecomputations: () => void;
5942
+ dependencyRecomputations: () => number;
5943
+ resetDependencyRecomputations: () => void;
5944
+ } & {
5945
+ memoize: typeof import("reselect").weakMapMemoize;
5946
+ argsMemoize: typeof import("reselect").weakMapMemoize;
5947
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types.js").UseChartCartesianAxisState> & {
5948
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
5949
+ }) => Record<AxisId, import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions>) & {
5950
+ clearCache: () => void;
5951
+ resultsCount: () => number;
5952
+ resetResultsCount: () => void;
5953
+ } & {
5954
+ resultFunc: (resultFuncArgs_0: import("../../../index.js").DefaultedYAxis[] | undefined) => Record<AxisId, import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions>;
5955
+ memoizedResultFunc: ((resultFuncArgs_0: import("../../../index.js").DefaultedYAxis[] | undefined) => Record<AxisId, import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions>) & {
5956
+ clearCache: () => void;
5957
+ resultsCount: () => number;
5958
+ resetResultsCount: () => void;
5959
+ };
5960
+ lastResult: () => Record<AxisId, import("./useChartCartesianAxis.types.js").DefaultizedZoomOptions>;
5961
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types.js").UseChartCartesianAxisState> & {
5962
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
5963
+ }) => import("../../../index.js").DefaultedYAxis[] | undefined) & {
5964
+ clearCache: () => void;
5965
+ resultsCount: () => number;
5966
+ resetResultsCount: () => void;
5967
+ } & {
5968
+ resultFunc: (resultFuncArgs_0: {
5969
+ x: import("../../../index.js").DefaultedXAxis[];
5970
+ y: import("../../../index.js").DefaultedYAxis[];
5971
+ } | undefined) => import("../../../index.js").DefaultedYAxis[] | undefined;
5972
+ memoizedResultFunc: ((resultFuncArgs_0: {
5973
+ x: import("../../../index.js").DefaultedXAxis[];
5974
+ y: import("../../../index.js").DefaultedYAxis[];
5975
+ } | undefined) => import("../../../index.js").DefaultedYAxis[] | undefined) & {
5976
+ clearCache: () => void;
5977
+ resultsCount: () => number;
5978
+ resetResultsCount: () => void;
5979
+ };
5980
+ lastResult: () => import("../../../index.js").DefaultedYAxis[] | undefined;
5981
+ dependencies: [(state: ChartState<[], [UseChartCartesianAxisSignature]>) => {
5982
+ x: import("../../../index.js").DefaultedXAxis[];
5983
+ y: import("../../../index.js").DefaultedYAxis[];
5984
+ } | undefined];
5985
+ recomputations: () => number;
5986
+ resetRecomputations: () => void;
5987
+ dependencyRecomputations: () => number;
5988
+ resetDependencyRecomputations: () => void;
5989
+ } & {
5990
+ memoize: typeof import("reselect").weakMapMemoize;
5991
+ argsMemoize: typeof import("reselect").weakMapMemoize;
5992
+ }];
5993
+ recomputations: () => number;
5994
+ resetRecomputations: () => void;
5995
+ dependencyRecomputations: () => number;
5996
+ resetDependencyRecomputations: () => void;
5997
+ } & {
5998
+ memoize: typeof import("reselect").weakMapMemoize;
5999
+ argsMemoize: typeof import("reselect").weakMapMemoize;
6000
+ }];
6001
+ recomputations: () => number;
6002
+ resetRecomputations: () => void;
6003
+ dependencyRecomputations: () => number;
6004
+ resetDependencyRecomputations: () => void;
6005
+ } & {
6006
+ memoize: typeof import("reselect").weakMapMemoize;
6007
+ argsMemoize: typeof import("reselect").weakMapMemoize;
6008
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<{}> & {
6009
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
6010
+ }) => import("../../models/index.js").ChartSeriesConfig<keyof import("../../../index.js").ChartsSeriesConfig>) & {
6011
+ clearCache: () => void;
6012
+ resultsCount: () => number;
6013
+ resetResultsCount: () => void;
6014
+ } & {
6015
+ resultFunc: (resultFuncArgs_0: {
6016
+ processedSeries: import("../../../index.js").ProcessedSeries<keyof import("../../../index.js").ChartsSeriesConfig>;
6017
+ seriesConfig: import("../../models/index.js").ChartSeriesConfig<keyof import("../../../index.js").ChartsSeriesConfig>;
6018
+ }) => import("../../models/index.js").ChartSeriesConfig<keyof import("../../../index.js").ChartsSeriesConfig>;
6019
+ memoizedResultFunc: ((resultFuncArgs_0: {
6020
+ processedSeries: import("../../../index.js").ProcessedSeries<keyof import("../../../index.js").ChartsSeriesConfig>;
6021
+ seriesConfig: import("../../models/index.js").ChartSeriesConfig<keyof import("../../../index.js").ChartsSeriesConfig>;
6022
+ }) => import("../../models/index.js").ChartSeriesConfig<keyof import("../../../index.js").ChartsSeriesConfig>) & {
6023
+ clearCache: () => void;
6024
+ resultsCount: () => number;
6025
+ resetResultsCount: () => void;
6026
+ };
6027
+ lastResult: () => import("../../models/index.js").ChartSeriesConfig<keyof import("../../../index.js").ChartsSeriesConfig>;
6028
+ dependencies: [import("../../../index.js").ChartRootSelector<import("../../../index.js").UseChartSeriesSignature>];
6029
+ recomputations: () => number;
6030
+ resetRecomputations: () => void;
6031
+ dependencyRecomputations: () => number;
6032
+ resetDependencyRecomputations: () => void;
6033
+ } & {
6034
+ memoize: typeof import("reselect").weakMapMemoize;
6035
+ argsMemoize: typeof import("reselect").weakMapMemoize;
6036
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<{}> & {
6037
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
6038
+ }) => import("../../../index.js").ProcessedSeries<keyof import("../../../index.js").ChartsSeriesConfig>) & {
6039
+ clearCache: () => void;
6040
+ resultsCount: () => number;
6041
+ resetResultsCount: () => void;
6042
+ } & {
6043
+ resultFunc: (resultFuncArgs_0: {
6044
+ processedSeries: import("../../../index.js").ProcessedSeries<keyof import("../../../index.js").ChartsSeriesConfig>;
6045
+ seriesConfig: import("../../models/index.js").ChartSeriesConfig<keyof import("../../../index.js").ChartsSeriesConfig>;
6046
+ }) => import("../../../index.js").ProcessedSeries<keyof import("../../../index.js").ChartsSeriesConfig>;
6047
+ memoizedResultFunc: ((resultFuncArgs_0: {
6048
+ processedSeries: import("../../../index.js").ProcessedSeries<keyof import("../../../index.js").ChartsSeriesConfig>;
6049
+ seriesConfig: import("../../models/index.js").ChartSeriesConfig<keyof import("../../../index.js").ChartsSeriesConfig>;
6050
+ }) => import("../../../index.js").ProcessedSeries<keyof import("../../../index.js").ChartsSeriesConfig>) & {
6051
+ clearCache: () => void;
6052
+ resultsCount: () => number;
6053
+ resetResultsCount: () => void;
6054
+ };
6055
+ lastResult: () => import("../../../index.js").ProcessedSeries<keyof import("../../../index.js").ChartsSeriesConfig>;
6056
+ dependencies: [import("../../../index.js").ChartRootSelector<import("../../../index.js").UseChartSeriesSignature>];
6057
+ recomputations: () => number;
6058
+ resetRecomputations: () => void;
6059
+ dependencyRecomputations: () => number;
6060
+ resetDependencyRecomputations: () => void;
6061
+ } & {
6062
+ memoize: typeof import("reselect").weakMapMemoize;
6063
+ argsMemoize: typeof import("reselect").weakMapMemoize;
6064
+ }];
6065
+ recomputations: () => number;
6066
+ resetRecomputations: () => void;
6067
+ dependencyRecomputations: () => number;
6068
+ resetDependencyRecomputations: () => void;
6069
+ } & {
6070
+ memoize: typeof import("reselect").weakMapMemoize;
6071
+ argsMemoize: typeof import("reselect").weakMapMemoize;
6072
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types.js").UseChartCartesianAxisState> & {
6073
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
6074
+ }) => import("../../../index.js").DefaultedXAxis[] | undefined) & {
6075
+ clearCache: () => void;
6076
+ resultsCount: () => number;
6077
+ resetResultsCount: () => void;
6078
+ } & {
6079
+ resultFunc: (resultFuncArgs_0: {
6080
+ x: import("../../../index.js").DefaultedXAxis[];
6081
+ y: import("../../../index.js").DefaultedYAxis[];
6082
+ } | undefined) => import("../../../index.js").DefaultedXAxis[] | undefined;
6083
+ memoizedResultFunc: ((resultFuncArgs_0: {
6084
+ x: import("../../../index.js").DefaultedXAxis[];
6085
+ y: import("../../../index.js").DefaultedYAxis[];
6086
+ } | undefined) => import("../../../index.js").DefaultedXAxis[] | undefined) & {
6087
+ clearCache: () => void;
6088
+ resultsCount: () => number;
6089
+ resetResultsCount: () => void;
6090
+ };
6091
+ lastResult: () => import("../../../index.js").DefaultedXAxis[] | undefined;
6092
+ dependencies: [(state: ChartState<[], [UseChartCartesianAxisSignature]>) => {
6093
+ x: import("../../../index.js").DefaultedXAxis[];
6094
+ y: import("../../../index.js").DefaultedYAxis[];
6095
+ } | undefined];
6096
+ recomputations: () => number;
6097
+ resetRecomputations: () => void;
6098
+ dependencyRecomputations: () => number;
6099
+ resetDependencyRecomputations: () => void;
6100
+ } & {
6101
+ memoize: typeof import("reselect").weakMapMemoize;
6102
+ argsMemoize: typeof import("reselect").weakMapMemoize;
6103
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types.js").UseChartCartesianAxisState> & {
6104
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
6105
+ }) => import("../../../index.js").DefaultedYAxis[] | undefined) & {
6106
+ clearCache: () => void;
6107
+ resultsCount: () => number;
6108
+ resetResultsCount: () => void;
6109
+ } & {
6110
+ resultFunc: (resultFuncArgs_0: {
6111
+ x: import("../../../index.js").DefaultedXAxis[];
6112
+ y: import("../../../index.js").DefaultedYAxis[];
6113
+ } | undefined) => import("../../../index.js").DefaultedYAxis[] | undefined;
6114
+ memoizedResultFunc: ((resultFuncArgs_0: {
6115
+ x: import("../../../index.js").DefaultedXAxis[];
6116
+ y: import("../../../index.js").DefaultedYAxis[];
6117
+ } | undefined) => import("../../../index.js").DefaultedYAxis[] | undefined) & {
6118
+ clearCache: () => void;
6119
+ resultsCount: () => number;
6120
+ resetResultsCount: () => void;
6121
+ };
6122
+ lastResult: () => import("../../../index.js").DefaultedYAxis[] | undefined;
6123
+ dependencies: [(state: ChartState<[], [UseChartCartesianAxisSignature]>) => {
6124
+ x: import("../../../index.js").DefaultedXAxis[];
6125
+ y: import("../../../index.js").DefaultedYAxis[];
6126
+ } | undefined];
6127
+ recomputations: () => number;
6128
+ resetRecomputations: () => void;
6129
+ dependencyRecomputations: () => number;
6130
+ resetDependencyRecomputations: () => void;
6131
+ } & {
6132
+ memoize: typeof import("reselect").weakMapMemoize;
6133
+ argsMemoize: typeof import("reselect").weakMapMemoize;
6134
+ }];
6135
+ recomputations: () => number;
6136
+ resetRecomputations: () => void;
6137
+ dependencyRecomputations: () => number;
6138
+ resetDependencyRecomputations: () => void;
6139
+ } & {
6140
+ memoize: typeof import("reselect").weakMapMemoize;
6141
+ argsMemoize: typeof import("reselect").weakMapMemoize;
6142
+ }];
6143
+ recomputations: () => number;
6144
+ resetRecomputations: () => void;
6145
+ dependencyRecomputations: () => number;
6146
+ resetDependencyRecomputations: () => void;
6147
+ } & {
6148
+ memoize: typeof import("reselect").weakMapMemoize;
6149
+ argsMemoize: typeof import("reselect").weakMapMemoize;
6150
+ }, (_: any, axisId: AxisId) => AxisId];
6151
+ recomputations: () => number;
6152
+ resetRecomputations: () => void;
6153
+ dependencyRecomputations: () => number;
6154
+ resetDependencyRecomputations: () => void;
6155
+ } & {
6156
+ memoize: typeof import("reselect").weakMapMemoize;
6157
+ argsMemoize: typeof import("reselect").weakMapMemoize;
6158
+ };
6159
+ export declare const selectorChartRawAxis: ((state: any, axisId: AxisId) => import("../../../index.js").DefaultedXAxis | import("../../../index.js").DefaultedYAxis | undefined) & {
6160
+ clearCache: () => void;
6161
+ resultsCount: () => number;
6162
+ resetResultsCount: () => void;
6163
+ } & {
6164
+ resultFunc: (resultFuncArgs_0: import("../../../index.js").DefaultedXAxis[] | undefined, resultFuncArgs_1: import("../../../index.js").DefaultedYAxis[] | undefined, resultFuncArgs_2: AxisId) => import("../../../index.js").DefaultedXAxis | import("../../../index.js").DefaultedYAxis | undefined;
6165
+ memoizedResultFunc: ((resultFuncArgs_0: import("../../../index.js").DefaultedXAxis[] | undefined, resultFuncArgs_1: import("../../../index.js").DefaultedYAxis[] | undefined, resultFuncArgs_2: AxisId) => import("../../../index.js").DefaultedXAxis | import("../../../index.js").DefaultedYAxis | undefined) & {
6166
+ clearCache: () => void;
6167
+ resultsCount: () => number;
6168
+ resetResultsCount: () => void;
6169
+ };
6170
+ lastResult: () => import("../../../index.js").DefaultedXAxis | import("../../../index.js").DefaultedYAxis | undefined;
6171
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types.js").UseChartCartesianAxisState> & {
6172
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
6173
+ }) => import("../../../index.js").DefaultedXAxis[] | undefined) & {
6174
+ clearCache: () => void;
6175
+ resultsCount: () => number;
6176
+ resetResultsCount: () => void;
6177
+ } & {
6178
+ resultFunc: (resultFuncArgs_0: {
6179
+ x: import("../../../index.js").DefaultedXAxis[];
6180
+ y: import("../../../index.js").DefaultedYAxis[];
6181
+ } | undefined) => import("../../../index.js").DefaultedXAxis[] | undefined;
6182
+ memoizedResultFunc: ((resultFuncArgs_0: {
6183
+ x: import("../../../index.js").DefaultedXAxis[];
6184
+ y: import("../../../index.js").DefaultedYAxis[];
6185
+ } | undefined) => import("../../../index.js").DefaultedXAxis[] | undefined) & {
6186
+ clearCache: () => void;
6187
+ resultsCount: () => number;
6188
+ resetResultsCount: () => void;
6189
+ };
6190
+ lastResult: () => import("../../../index.js").DefaultedXAxis[] | undefined;
6191
+ dependencies: [(state: ChartState<[], [UseChartCartesianAxisSignature]>) => {
6192
+ x: import("../../../index.js").DefaultedXAxis[];
6193
+ y: import("../../../index.js").DefaultedYAxis[];
6194
+ } | undefined];
6195
+ recomputations: () => number;
6196
+ resetRecomputations: () => void;
6197
+ dependencyRecomputations: () => number;
6198
+ resetDependencyRecomputations: () => void;
6199
+ } & {
6200
+ memoize: typeof import("reselect").weakMapMemoize;
6201
+ argsMemoize: typeof import("reselect").weakMapMemoize;
6202
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types.js").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types.js").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types.js").UseChartSeriesState<keyof import("../../../index.js").ChartsSeriesConfig> & import("../../corePlugins/useChartAnimation/useChartAnimation.types.js").UseChartAnimationState & Partial<import("./useChartCartesianAxis.types.js").UseChartCartesianAxisState> & {
6203
+ cacheKey: import("../../models/index.js").ChartStateCacheKey;
6204
+ }) => import("../../../index.js").DefaultedYAxis[] | undefined) & {
6205
+ clearCache: () => void;
6206
+ resultsCount: () => number;
6207
+ resetResultsCount: () => void;
6208
+ } & {
6209
+ resultFunc: (resultFuncArgs_0: {
6210
+ x: import("../../../index.js").DefaultedXAxis[];
6211
+ y: import("../../../index.js").DefaultedYAxis[];
6212
+ } | undefined) => import("../../../index.js").DefaultedYAxis[] | undefined;
6213
+ memoizedResultFunc: ((resultFuncArgs_0: {
6214
+ x: import("../../../index.js").DefaultedXAxis[];
6215
+ y: import("../../../index.js").DefaultedYAxis[];
6216
+ } | undefined) => import("../../../index.js").DefaultedYAxis[] | undefined) & {
6217
+ clearCache: () => void;
6218
+ resultsCount: () => number;
6219
+ resetResultsCount: () => void;
6220
+ };
6221
+ lastResult: () => import("../../../index.js").DefaultedYAxis[] | undefined;
6222
+ dependencies: [(state: ChartState<[], [UseChartCartesianAxisSignature]>) => {
6223
+ x: import("../../../index.js").DefaultedXAxis[];
6224
+ y: import("../../../index.js").DefaultedYAxis[];
6225
+ } | undefined];
6226
+ recomputations: () => number;
6227
+ resetRecomputations: () => void;
6228
+ dependencyRecomputations: () => number;
6229
+ resetDependencyRecomputations: () => void;
6230
+ } & {
6231
+ memoize: typeof import("reselect").weakMapMemoize;
6232
+ argsMemoize: typeof import("reselect").weakMapMemoize;
6233
+ }, (state: any, axisId: AxisId) => AxisId];
6234
+ recomputations: () => number;
6235
+ resetRecomputations: () => void;
6236
+ dependencyRecomputations: () => number;
6237
+ resetDependencyRecomputations: () => void;
6238
+ } & {
6239
+ memoize: typeof import("reselect").weakMapMemoize;
6240
+ argsMemoize: typeof import("reselect").weakMapMemoize;
3241
6241
  };