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

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 (138) hide show
  1. package/BarChart/seriesConfig/extremums.js +2 -2
  2. package/BarChart/useBarChartProps.d.ts +2 -1
  3. package/BarChart/useBarChartProps.js +20 -13
  4. package/CHANGELOG.md +171 -0
  5. package/ChartsAxisHighlight/ChartsXAxisHighlight.js +8 -8
  6. package/ChartsAxisHighlight/ChartsYAxisHighlight.js +8 -8
  7. package/ChartsOverlay/ChartsLoadingOverlay.js +1 -1
  8. package/ChartsOverlay/ChartsNoDataOverlay.js +1 -1
  9. package/ChartsTooltip/ChartsTooltipContainer.js +2 -1
  10. package/ChartsTooltip/useAxisTooltip.js +2 -2
  11. package/LineChart/CircleMarkElement.js +2 -2
  12. package/LineChart/LineHighlightPlot.js +2 -2
  13. package/LineChart/MarkElement.js +2 -2
  14. package/LineChart/useLineChartProps.d.ts +2 -1
  15. package/LineChart/useLineChartProps.js +7 -4
  16. package/RadarChart/RadarAxisHighlight/useRadarAxisHighlight.js +9 -5
  17. package/RadarChart/RadarGrid/RadarGrid.d.ts +1 -1
  18. package/RadarChart/RadarGrid/RadarGrid.js +5 -1
  19. package/RadarChart/RadarGrid/useRadarGridData.d.ts +1 -1
  20. package/RadarChart/RadarGrid/useRadarGridData.js +3 -0
  21. package/RadarChart/RadarSeriesPlot/useRadarSeriesData.js +2 -2
  22. package/ScatterChart/useScatterChartProps.d.ts +2 -1
  23. package/ScatterChart/useScatterChartProps.js +6 -3
  24. package/esm/BarChart/seriesConfig/extremums.js +2 -2
  25. package/esm/BarChart/useBarChartProps.d.ts +2 -1
  26. package/esm/BarChart/useBarChartProps.js +19 -13
  27. package/esm/ChartsAxisHighlight/ChartsXAxisHighlight.js +8 -8
  28. package/esm/ChartsAxisHighlight/ChartsYAxisHighlight.js +8 -8
  29. package/esm/ChartsOverlay/ChartsLoadingOverlay.js +1 -1
  30. package/esm/ChartsOverlay/ChartsNoDataOverlay.js +1 -1
  31. package/esm/ChartsTooltip/ChartsTooltipContainer.js +2 -1
  32. package/esm/ChartsTooltip/useAxisTooltip.js +1 -1
  33. package/esm/LineChart/CircleMarkElement.js +1 -1
  34. package/esm/LineChart/LineHighlightPlot.js +1 -1
  35. package/esm/LineChart/MarkElement.js +1 -1
  36. package/esm/LineChart/useLineChartProps.d.ts +2 -1
  37. package/esm/LineChart/useLineChartProps.js +6 -4
  38. package/esm/RadarChart/RadarAxisHighlight/useRadarAxisHighlight.js +9 -5
  39. package/esm/RadarChart/RadarGrid/RadarGrid.d.ts +1 -1
  40. package/esm/RadarChart/RadarGrid/RadarGrid.js +5 -1
  41. package/esm/RadarChart/RadarGrid/useRadarGridData.d.ts +1 -1
  42. package/esm/RadarChart/RadarGrid/useRadarGridData.js +3 -0
  43. package/esm/RadarChart/RadarSeriesPlot/useRadarSeriesData.js +2 -2
  44. package/esm/ScatterChart/useScatterChartProps.d.ts +2 -1
  45. package/esm/ScatterChart/useScatterChartProps.js +5 -3
  46. package/esm/hooks/useAxis.d.ts +5 -5
  47. package/esm/hooks/useInteractionItemProps.js +1 -1
  48. package/esm/hooks/useScale.d.ts +2 -2
  49. package/esm/hooks/useScale.js +2 -2
  50. package/esm/index.js +1 -1
  51. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisValue.d.ts +8 -6
  52. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisValue.js +28 -22
  53. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/index.d.ts +1 -0
  54. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/index.js +1 -0
  55. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxis.js +10 -43
  56. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianInteraction.selectors.d.ts +1 -0
  57. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianInteraction.selectors.js +41 -0
  58. package/esm/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.js +7 -20
  59. package/esm/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.selectors.d.ts +36 -242
  60. package/esm/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.selectors.js +4 -10
  61. package/esm/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.types.d.ts +9 -15
  62. package/esm/internals/plugins/featurePlugins/useChartPolarAxis/coordinateTransformation.d.ts +12 -0
  63. package/esm/internals/plugins/featurePlugins/useChartPolarAxis/coordinateTransformation.js +8 -0
  64. package/esm/internals/plugins/featurePlugins/useChartPolarAxis/getAxisValue.d.ts +6 -4
  65. package/esm/internals/plugins/featurePlugins/useChartPolarAxis/getAxisValue.js +18 -13
  66. package/esm/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarAxis.js +17 -33
  67. package/esm/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarInteraction.selectors.d.ts +3669 -0
  68. package/esm/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarInteraction.selectors.js +22 -0
  69. package/hooks/useAxis.d.ts +5 -5
  70. package/hooks/useInteractionItemProps.js +1 -1
  71. package/hooks/useScale.d.ts +2 -2
  72. package/hooks/useScale.js +2 -2
  73. package/index.js +1 -1
  74. package/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisValue.d.ts +8 -6
  75. package/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisValue.js +29 -22
  76. package/internals/plugins/featurePlugins/useChartCartesianAxis/index.d.ts +1 -0
  77. package/internals/plugins/featurePlugins/useChartCartesianAxis/index.js +12 -0
  78. package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxis.js +8 -41
  79. package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianInteraction.selectors.d.ts +1 -0
  80. package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianInteraction.selectors.js +47 -0
  81. package/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.js +7 -20
  82. package/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.selectors.d.ts +36 -242
  83. package/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.selectors.js +5 -11
  84. package/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.types.d.ts +9 -15
  85. package/internals/plugins/featurePlugins/useChartPolarAxis/coordinateTransformation.d.ts +12 -0
  86. package/internals/plugins/featurePlugins/useChartPolarAxis/coordinateTransformation.js +17 -0
  87. package/internals/plugins/featurePlugins/useChartPolarAxis/getAxisValue.d.ts +6 -4
  88. package/internals/plugins/featurePlugins/useChartPolarAxis/getAxisValue.js +19 -13
  89. package/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarAxis.js +17 -33
  90. package/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarInteraction.selectors.d.ts +3669 -0
  91. package/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarInteraction.selectors.js +28 -0
  92. package/modern/BarChart/seriesConfig/extremums.js +2 -2
  93. package/modern/BarChart/useBarChartProps.d.ts +2 -1
  94. package/modern/BarChart/useBarChartProps.js +19 -13
  95. package/modern/ChartsAxisHighlight/ChartsXAxisHighlight.js +8 -8
  96. package/modern/ChartsAxisHighlight/ChartsYAxisHighlight.js +8 -8
  97. package/modern/ChartsOverlay/ChartsLoadingOverlay.js +1 -1
  98. package/modern/ChartsOverlay/ChartsNoDataOverlay.js +1 -1
  99. package/modern/ChartsTooltip/ChartsTooltipContainer.js +2 -1
  100. package/modern/ChartsTooltip/useAxisTooltip.js +1 -1
  101. package/modern/LineChart/CircleMarkElement.js +1 -1
  102. package/modern/LineChart/LineHighlightPlot.js +1 -1
  103. package/modern/LineChart/MarkElement.js +1 -1
  104. package/modern/LineChart/useLineChartProps.d.ts +2 -1
  105. package/modern/LineChart/useLineChartProps.js +6 -4
  106. package/modern/RadarChart/RadarAxisHighlight/useRadarAxisHighlight.js +9 -5
  107. package/modern/RadarChart/RadarGrid/RadarGrid.d.ts +1 -1
  108. package/modern/RadarChart/RadarGrid/RadarGrid.js +5 -1
  109. package/modern/RadarChart/RadarGrid/useRadarGridData.d.ts +1 -1
  110. package/modern/RadarChart/RadarGrid/useRadarGridData.js +3 -0
  111. package/modern/RadarChart/RadarSeriesPlot/useRadarSeriesData.js +2 -2
  112. package/modern/ScatterChart/useScatterChartProps.d.ts +2 -1
  113. package/modern/ScatterChart/useScatterChartProps.js +5 -3
  114. package/modern/hooks/useAxis.d.ts +5 -5
  115. package/modern/hooks/useInteractionItemProps.js +1 -1
  116. package/modern/hooks/useScale.d.ts +2 -2
  117. package/modern/hooks/useScale.js +2 -2
  118. package/modern/index.js +1 -1
  119. package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisValue.d.ts +8 -6
  120. package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisValue.js +28 -22
  121. package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/index.d.ts +1 -0
  122. package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/index.js +1 -0
  123. package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxis.js +10 -43
  124. package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianInteraction.selectors.d.ts +1 -0
  125. package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianInteraction.selectors.js +41 -0
  126. package/modern/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.js +7 -20
  127. package/modern/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.selectors.d.ts +36 -242
  128. package/modern/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.selectors.js +4 -10
  129. package/modern/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.types.d.ts +9 -15
  130. package/modern/internals/plugins/featurePlugins/useChartPolarAxis/coordinateTransformation.d.ts +12 -0
  131. package/modern/internals/plugins/featurePlugins/useChartPolarAxis/coordinateTransformation.js +8 -0
  132. package/modern/internals/plugins/featurePlugins/useChartPolarAxis/getAxisValue.d.ts +6 -4
  133. package/modern/internals/plugins/featurePlugins/useChartPolarAxis/getAxisValue.js +18 -13
  134. package/modern/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarAxis.js +17 -33
  135. package/modern/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarInteraction.selectors.d.ts +3669 -0
  136. package/modern/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarInteraction.selectors.js +22 -0
  137. package/package.json +3 -3
  138. package/tsconfig.build.tsbuildinfo +1 -1
@@ -0,0 +1,3669 @@
1
+ export declare const selectorChartsInteractionRotationAxisIndex: ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("../useChartInteraction/useChartInteraction.types").UseChartInteractionState> & {
2
+ cacheKey: import("../../models").ChartStateCacheKey;
3
+ } & Partial<{}> & Partial<import("../useChartCartesianAxis").UseChartCartesianAxisState> & import("./useChartPolarAxis.types").UseChartPolarAxisState) => number | null) & {
4
+ clearCache: () => void;
5
+ resultsCount: () => number;
6
+ resetResultsCount: () => void;
7
+ } & {
8
+ resultFunc: (resultFuncArgs_0: number | null, resultFuncArgs_1: number | null, resultFuncArgs_2: {
9
+ cx: number;
10
+ cy: number;
11
+ }, resultFuncArgs_3: {
12
+ axis: import("./computeAxisValue").DefaultizedAxisConfig<import("../../..").ChartsRotationAxisProps>;
13
+ axisIds: string[];
14
+ }) => number | null;
15
+ memoizedResultFunc: ((resultFuncArgs_0: number | null, resultFuncArgs_1: number | null, resultFuncArgs_2: {
16
+ cx: number;
17
+ cy: number;
18
+ }, resultFuncArgs_3: {
19
+ axis: import("./computeAxisValue").DefaultizedAxisConfig<import("../../..").ChartsRotationAxisProps>;
20
+ axisIds: string[];
21
+ }) => number | null) & {
22
+ clearCache: () => void;
23
+ resultsCount: () => number;
24
+ resetResultsCount: () => void;
25
+ };
26
+ lastResult: () => number | null;
27
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("../useChartInteraction/useChartInteraction.types").UseChartInteractionState> & {
28
+ cacheKey: import("../../models").ChartStateCacheKey;
29
+ }) => number | null) & {
30
+ clearCache: () => void;
31
+ resultsCount: () => number;
32
+ resetResultsCount: () => void;
33
+ } & {
34
+ resultFunc: (resultFuncArgs_0: import("../useChartInteraction/useChartInteraction.types").Coordinate | null) => number | null;
35
+ memoizedResultFunc: ((resultFuncArgs_0: import("../useChartInteraction/useChartInteraction.types").Coordinate | null) => number | null) & {
36
+ clearCache: () => void;
37
+ resultsCount: () => number;
38
+ resetResultsCount: () => void;
39
+ };
40
+ lastResult: () => number | null;
41
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("../useChartInteraction/useChartInteraction.types").UseChartInteractionState> & {
42
+ cacheKey: import("../../models").ChartStateCacheKey;
43
+ }) => import("../useChartInteraction/useChartInteraction.types").Coordinate | null) & {
44
+ clearCache: () => void;
45
+ resultsCount: () => number;
46
+ resetResultsCount: () => void;
47
+ } & {
48
+ resultFunc: (resultFuncArgs_0: {
49
+ item: null | import("../../..").ChartItemIdentifier<import("../../..").ChartSeriesType>;
50
+ pointer: import("../useChartInteraction/useChartInteraction.types").Coordinate | null;
51
+ } | undefined) => import("../useChartInteraction/useChartInteraction.types").Coordinate | null;
52
+ memoizedResultFunc: ((resultFuncArgs_0: {
53
+ item: null | import("../../..").ChartItemIdentifier<import("../../..").ChartSeriesType>;
54
+ pointer: import("../useChartInteraction/useChartInteraction.types").Coordinate | null;
55
+ } | undefined) => import("../useChartInteraction/useChartInteraction.types").Coordinate | null) & {
56
+ clearCache: () => void;
57
+ resultsCount: () => number;
58
+ resetResultsCount: () => void;
59
+ };
60
+ lastResult: () => import("../useChartInteraction/useChartInteraction.types").Coordinate | null;
61
+ dependencies: [import("../../..").ChartOptionalRootSelector<import("../useChartInteraction").UseChartInteractionSignature>];
62
+ recomputations: () => number;
63
+ resetRecomputations: () => void;
64
+ dependencyRecomputations: () => number;
65
+ resetDependencyRecomputations: () => void;
66
+ } & {
67
+ memoize: typeof import("reselect").weakMapMemoize;
68
+ argsMemoize: typeof import("reselect").weakMapMemoize;
69
+ }];
70
+ recomputations: () => number;
71
+ resetRecomputations: () => void;
72
+ dependencyRecomputations: () => number;
73
+ resetDependencyRecomputations: () => void;
74
+ } & {
75
+ memoize: typeof import("reselect").weakMapMemoize;
76
+ argsMemoize: typeof import("reselect").weakMapMemoize;
77
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("../useChartInteraction/useChartInteraction.types").UseChartInteractionState> & {
78
+ cacheKey: import("../../models").ChartStateCacheKey;
79
+ }) => number | null) & {
80
+ clearCache: () => void;
81
+ resultsCount: () => number;
82
+ resetResultsCount: () => void;
83
+ } & {
84
+ resultFunc: (resultFuncArgs_0: import("../useChartInteraction/useChartInteraction.types").Coordinate | null) => number | null;
85
+ memoizedResultFunc: ((resultFuncArgs_0: import("../useChartInteraction/useChartInteraction.types").Coordinate | null) => number | null) & {
86
+ clearCache: () => void;
87
+ resultsCount: () => number;
88
+ resetResultsCount: () => void;
89
+ };
90
+ lastResult: () => number | null;
91
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("../useChartInteraction/useChartInteraction.types").UseChartInteractionState> & {
92
+ cacheKey: import("../../models").ChartStateCacheKey;
93
+ }) => import("../useChartInteraction/useChartInteraction.types").Coordinate | null) & {
94
+ clearCache: () => void;
95
+ resultsCount: () => number;
96
+ resetResultsCount: () => void;
97
+ } & {
98
+ resultFunc: (resultFuncArgs_0: {
99
+ item: null | import("../../..").ChartItemIdentifier<import("../../..").ChartSeriesType>;
100
+ pointer: import("../useChartInteraction/useChartInteraction.types").Coordinate | null;
101
+ } | undefined) => import("../useChartInteraction/useChartInteraction.types").Coordinate | null;
102
+ memoizedResultFunc: ((resultFuncArgs_0: {
103
+ item: null | import("../../..").ChartItemIdentifier<import("../../..").ChartSeriesType>;
104
+ pointer: import("../useChartInteraction/useChartInteraction.types").Coordinate | null;
105
+ } | undefined) => import("../useChartInteraction/useChartInteraction.types").Coordinate | null) & {
106
+ clearCache: () => void;
107
+ resultsCount: () => number;
108
+ resetResultsCount: () => void;
109
+ };
110
+ lastResult: () => import("../useChartInteraction/useChartInteraction.types").Coordinate | null;
111
+ dependencies: [import("../../..").ChartOptionalRootSelector<import("../useChartInteraction").UseChartInteractionSignature>];
112
+ recomputations: () => number;
113
+ resetRecomputations: () => void;
114
+ dependencyRecomputations: () => number;
115
+ resetDependencyRecomputations: () => void;
116
+ } & {
117
+ memoize: typeof import("reselect").weakMapMemoize;
118
+ argsMemoize: typeof import("reselect").weakMapMemoize;
119
+ }];
120
+ recomputations: () => number;
121
+ resetRecomputations: () => void;
122
+ dependencyRecomputations: () => number;
123
+ resetDependencyRecomputations: () => void;
124
+ } & {
125
+ memoize: typeof import("reselect").weakMapMemoize;
126
+ argsMemoize: typeof import("reselect").weakMapMemoize;
127
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
128
+ cacheKey: import("../../models").ChartStateCacheKey;
129
+ } & Partial<import("../useChartCartesianAxis").UseChartCartesianAxisState>) => {
130
+ cx: number;
131
+ cy: number;
132
+ }) & {
133
+ clearCache: () => void;
134
+ resultsCount: () => number;
135
+ resetResultsCount: () => void;
136
+ } & {
137
+ resultFunc: (resultFuncArgs_0: {
138
+ width: number;
139
+ left: number;
140
+ right: number;
141
+ height: number;
142
+ top: number;
143
+ bottom: number;
144
+ }) => {
145
+ cx: number;
146
+ cy: number;
147
+ };
148
+ memoizedResultFunc: ((resultFuncArgs_0: {
149
+ width: number;
150
+ left: number;
151
+ right: number;
152
+ height: number;
153
+ top: number;
154
+ bottom: number;
155
+ }) => {
156
+ cx: number;
157
+ cy: number;
158
+ }) & {
159
+ clearCache: () => void;
160
+ resultsCount: () => number;
161
+ resetResultsCount: () => void;
162
+ };
163
+ lastResult: () => {
164
+ cx: number;
165
+ cy: number;
166
+ };
167
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
168
+ cacheKey: import("../../models").ChartStateCacheKey;
169
+ } & Partial<import("../useChartCartesianAxis").UseChartCartesianAxisState>) => {
170
+ width: number;
171
+ left: number;
172
+ right: number;
173
+ height: number;
174
+ top: number;
175
+ bottom: number;
176
+ }) & {
177
+ clearCache: () => void;
178
+ resultsCount: () => number;
179
+ resetResultsCount: () => void;
180
+ } & {
181
+ 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) => {
182
+ width: number;
183
+ left: number;
184
+ right: number;
185
+ height: number;
186
+ top: number;
187
+ bottom: number;
188
+ };
189
+ 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) => {
190
+ width: number;
191
+ left: number;
192
+ right: number;
193
+ height: number;
194
+ top: number;
195
+ bottom: number;
196
+ }) & {
197
+ clearCache: () => void;
198
+ resultsCount: () => number;
199
+ resetResultsCount: () => void;
200
+ };
201
+ lastResult: () => {
202
+ width: number;
203
+ left: number;
204
+ right: number;
205
+ height: number;
206
+ top: number;
207
+ bottom: number;
208
+ };
209
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
210
+ cacheKey: import("../../models").ChartStateCacheKey;
211
+ }) => number) & {
212
+ clearCache: () => void;
213
+ resultsCount: () => number;
214
+ resetResultsCount: () => void;
215
+ } & {
216
+ resultFunc: (resultFuncArgs_0: {
217
+ margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
218
+ width: number;
219
+ height: number;
220
+ propsWidth: number | undefined;
221
+ propsHeight: number | undefined;
222
+ }) => number;
223
+ memoizedResultFunc: ((resultFuncArgs_0: {
224
+ margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
225
+ width: number;
226
+ height: number;
227
+ propsWidth: number | undefined;
228
+ propsHeight: number | undefined;
229
+ }) => number) & {
230
+ clearCache: () => void;
231
+ resultsCount: () => number;
232
+ resetResultsCount: () => void;
233
+ };
234
+ lastResult: () => number;
235
+ dependencies: [import("../../..").ChartRootSelector<import("../../..").UseChartDimensionsSignature>];
236
+ recomputations: () => number;
237
+ resetRecomputations: () => void;
238
+ dependencyRecomputations: () => number;
239
+ resetDependencyRecomputations: () => void;
240
+ } & {
241
+ memoize: typeof import("reselect").weakMapMemoize;
242
+ argsMemoize: typeof import("reselect").weakMapMemoize;
243
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
244
+ cacheKey: import("../../models").ChartStateCacheKey;
245
+ }) => number) & {
246
+ clearCache: () => void;
247
+ resultsCount: () => number;
248
+ resetResultsCount: () => void;
249
+ } & {
250
+ resultFunc: (resultFuncArgs_0: {
251
+ margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
252
+ width: number;
253
+ height: number;
254
+ propsWidth: number | undefined;
255
+ propsHeight: number | undefined;
256
+ }) => number;
257
+ memoizedResultFunc: ((resultFuncArgs_0: {
258
+ margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
259
+ width: number;
260
+ height: number;
261
+ propsWidth: number | undefined;
262
+ propsHeight: number | undefined;
263
+ }) => number) & {
264
+ clearCache: () => void;
265
+ resultsCount: () => number;
266
+ resetResultsCount: () => void;
267
+ };
268
+ lastResult: () => number;
269
+ dependencies: [import("../../..").ChartRootSelector<import("../../..").UseChartDimensionsSignature>];
270
+ recomputations: () => number;
271
+ resetRecomputations: () => void;
272
+ dependencyRecomputations: () => number;
273
+ resetDependencyRecomputations: () => void;
274
+ } & {
275
+ memoize: typeof import("reselect").weakMapMemoize;
276
+ argsMemoize: typeof import("reselect").weakMapMemoize;
277
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
278
+ cacheKey: import("../../models").ChartStateCacheKey;
279
+ }) => number) & {
280
+ clearCache: () => void;
281
+ resultsCount: () => number;
282
+ resetResultsCount: () => void;
283
+ } & {
284
+ resultFunc: (resultFuncArgs_0: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) => number;
285
+ memoizedResultFunc: ((resultFuncArgs_0: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) => number) & {
286
+ clearCache: () => void;
287
+ resultsCount: () => number;
288
+ resetResultsCount: () => void;
289
+ };
290
+ lastResult: () => number;
291
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
292
+ cacheKey: import("../../models").ChartStateCacheKey;
293
+ }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) & {
294
+ clearCache: () => void;
295
+ resultsCount: () => number;
296
+ resetResultsCount: () => void;
297
+ } & {
298
+ resultFunc: (resultFuncArgs_0: {
299
+ margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
300
+ width: number;
301
+ height: number;
302
+ propsWidth: number | undefined;
303
+ propsHeight: number | undefined;
304
+ }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
305
+ memoizedResultFunc: ((resultFuncArgs_0: {
306
+ margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
307
+ width: number;
308
+ height: number;
309
+ propsWidth: number | undefined;
310
+ propsHeight: number | undefined;
311
+ }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) & {
312
+ clearCache: () => void;
313
+ resultsCount: () => number;
314
+ resetResultsCount: () => void;
315
+ };
316
+ lastResult: () => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
317
+ dependencies: [import("../../..").ChartRootSelector<import("../../..").UseChartDimensionsSignature>];
318
+ recomputations: () => number;
319
+ resetRecomputations: () => void;
320
+ dependencyRecomputations: () => number;
321
+ resetDependencyRecomputations: () => void;
322
+ } & {
323
+ memoize: typeof import("reselect").weakMapMemoize;
324
+ argsMemoize: typeof import("reselect").weakMapMemoize;
325
+ }];
326
+ recomputations: () => number;
327
+ resetRecomputations: () => void;
328
+ dependencyRecomputations: () => number;
329
+ resetDependencyRecomputations: () => void;
330
+ } & {
331
+ memoize: typeof import("reselect").weakMapMemoize;
332
+ argsMemoize: typeof import("reselect").weakMapMemoize;
333
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
334
+ cacheKey: import("../../models").ChartStateCacheKey;
335
+ }) => number) & {
336
+ clearCache: () => void;
337
+ resultsCount: () => number;
338
+ resetResultsCount: () => void;
339
+ } & {
340
+ resultFunc: (resultFuncArgs_0: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) => number;
341
+ memoizedResultFunc: ((resultFuncArgs_0: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) => number) & {
342
+ clearCache: () => void;
343
+ resultsCount: () => number;
344
+ resetResultsCount: () => void;
345
+ };
346
+ lastResult: () => number;
347
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
348
+ cacheKey: import("../../models").ChartStateCacheKey;
349
+ }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) & {
350
+ clearCache: () => void;
351
+ resultsCount: () => number;
352
+ resetResultsCount: () => void;
353
+ } & {
354
+ resultFunc: (resultFuncArgs_0: {
355
+ margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
356
+ width: number;
357
+ height: number;
358
+ propsWidth: number | undefined;
359
+ propsHeight: number | undefined;
360
+ }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
361
+ memoizedResultFunc: ((resultFuncArgs_0: {
362
+ margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
363
+ width: number;
364
+ height: number;
365
+ propsWidth: number | undefined;
366
+ propsHeight: number | undefined;
367
+ }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) & {
368
+ clearCache: () => void;
369
+ resultsCount: () => number;
370
+ resetResultsCount: () => void;
371
+ };
372
+ lastResult: () => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
373
+ dependencies: [import("../../..").ChartRootSelector<import("../../..").UseChartDimensionsSignature>];
374
+ recomputations: () => number;
375
+ resetRecomputations: () => void;
376
+ dependencyRecomputations: () => number;
377
+ resetDependencyRecomputations: () => void;
378
+ } & {
379
+ memoize: typeof import("reselect").weakMapMemoize;
380
+ argsMemoize: typeof import("reselect").weakMapMemoize;
381
+ }];
382
+ recomputations: () => number;
383
+ resetRecomputations: () => void;
384
+ dependencyRecomputations: () => number;
385
+ resetDependencyRecomputations: () => void;
386
+ } & {
387
+ memoize: typeof import("reselect").weakMapMemoize;
388
+ argsMemoize: typeof import("reselect").weakMapMemoize;
389
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
390
+ cacheKey: import("../../models").ChartStateCacheKey;
391
+ }) => number) & {
392
+ clearCache: () => void;
393
+ resultsCount: () => number;
394
+ resetResultsCount: () => void;
395
+ } & {
396
+ resultFunc: (resultFuncArgs_0: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) => number;
397
+ memoizedResultFunc: ((resultFuncArgs_0: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) => number) & {
398
+ clearCache: () => void;
399
+ resultsCount: () => number;
400
+ resetResultsCount: () => void;
401
+ };
402
+ lastResult: () => number;
403
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
404
+ cacheKey: import("../../models").ChartStateCacheKey;
405
+ }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) & {
406
+ clearCache: () => void;
407
+ resultsCount: () => number;
408
+ resetResultsCount: () => void;
409
+ } & {
410
+ resultFunc: (resultFuncArgs_0: {
411
+ margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
412
+ width: number;
413
+ height: number;
414
+ propsWidth: number | undefined;
415
+ propsHeight: number | undefined;
416
+ }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
417
+ memoizedResultFunc: ((resultFuncArgs_0: {
418
+ margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
419
+ width: number;
420
+ height: number;
421
+ propsWidth: number | undefined;
422
+ propsHeight: number | undefined;
423
+ }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) & {
424
+ clearCache: () => void;
425
+ resultsCount: () => number;
426
+ resetResultsCount: () => void;
427
+ };
428
+ lastResult: () => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
429
+ dependencies: [import("../../..").ChartRootSelector<import("../../..").UseChartDimensionsSignature>];
430
+ recomputations: () => number;
431
+ resetRecomputations: () => void;
432
+ dependencyRecomputations: () => number;
433
+ resetDependencyRecomputations: () => void;
434
+ } & {
435
+ memoize: typeof import("reselect").weakMapMemoize;
436
+ argsMemoize: typeof import("reselect").weakMapMemoize;
437
+ }];
438
+ recomputations: () => number;
439
+ resetRecomputations: () => void;
440
+ dependencyRecomputations: () => number;
441
+ resetDependencyRecomputations: () => void;
442
+ } & {
443
+ memoize: typeof import("reselect").weakMapMemoize;
444
+ argsMemoize: typeof import("reselect").weakMapMemoize;
445
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
446
+ cacheKey: import("../../models").ChartStateCacheKey;
447
+ }) => number) & {
448
+ clearCache: () => void;
449
+ resultsCount: () => number;
450
+ resetResultsCount: () => void;
451
+ } & {
452
+ resultFunc: (resultFuncArgs_0: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) => number;
453
+ memoizedResultFunc: ((resultFuncArgs_0: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) => number) & {
454
+ clearCache: () => void;
455
+ resultsCount: () => number;
456
+ resetResultsCount: () => void;
457
+ };
458
+ lastResult: () => number;
459
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
460
+ cacheKey: import("../../models").ChartStateCacheKey;
461
+ }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) & {
462
+ clearCache: () => void;
463
+ resultsCount: () => number;
464
+ resetResultsCount: () => void;
465
+ } & {
466
+ resultFunc: (resultFuncArgs_0: {
467
+ margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
468
+ width: number;
469
+ height: number;
470
+ propsWidth: number | undefined;
471
+ propsHeight: number | undefined;
472
+ }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
473
+ memoizedResultFunc: ((resultFuncArgs_0: {
474
+ margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
475
+ width: number;
476
+ height: number;
477
+ propsWidth: number | undefined;
478
+ propsHeight: number | undefined;
479
+ }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) & {
480
+ clearCache: () => void;
481
+ resultsCount: () => number;
482
+ resetResultsCount: () => void;
483
+ };
484
+ lastResult: () => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
485
+ dependencies: [import("../../..").ChartRootSelector<import("../../..").UseChartDimensionsSignature>];
486
+ recomputations: () => number;
487
+ resetRecomputations: () => void;
488
+ dependencyRecomputations: () => number;
489
+ resetDependencyRecomputations: () => void;
490
+ } & {
491
+ memoize: typeof import("reselect").weakMapMemoize;
492
+ argsMemoize: typeof import("reselect").weakMapMemoize;
493
+ }];
494
+ recomputations: () => number;
495
+ resetRecomputations: () => void;
496
+ dependencyRecomputations: () => number;
497
+ resetDependencyRecomputations: () => void;
498
+ } & {
499
+ memoize: typeof import("reselect").weakMapMemoize;
500
+ argsMemoize: typeof import("reselect").weakMapMemoize;
501
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("../useChartCartesianAxis").UseChartCartesianAxisState> & {
502
+ cacheKey: import("../../models").ChartStateCacheKey;
503
+ }) => number) & {
504
+ clearCache: () => void;
505
+ resultsCount: () => number;
506
+ resetResultsCount: () => void;
507
+ } & {
508
+ resultFunc: (resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) => number;
509
+ memoizedResultFunc: ((resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) => number) & {
510
+ clearCache: () => void;
511
+ resultsCount: () => number;
512
+ resetResultsCount: () => void;
513
+ };
514
+ lastResult: () => number;
515
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("../useChartCartesianAxis").UseChartCartesianAxisState> & {
516
+ cacheKey: import("../../models").ChartStateCacheKey;
517
+ }) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) & {
518
+ clearCache: () => void;
519
+ resultsCount: () => number;
520
+ resetResultsCount: () => void;
521
+ } & {
522
+ resultFunc: (resultFuncArgs_0: {
523
+ x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
524
+ y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
525
+ } | undefined) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined;
526
+ memoizedResultFunc: ((resultFuncArgs_0: {
527
+ x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
528
+ y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
529
+ } | undefined) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) & {
530
+ clearCache: () => void;
531
+ resultsCount: () => number;
532
+ resetResultsCount: () => void;
533
+ };
534
+ lastResult: () => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined;
535
+ dependencies: [(state: import("../../models").ChartState<[], [import("../useChartCartesianAxis").UseChartCartesianAxisSignature]>) => {
536
+ x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
537
+ y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
538
+ } | undefined];
539
+ recomputations: () => number;
540
+ resetRecomputations: () => void;
541
+ dependencyRecomputations: () => number;
542
+ resetDependencyRecomputations: () => void;
543
+ } & {
544
+ memoize: typeof import("reselect").weakMapMemoize;
545
+ argsMemoize: typeof import("reselect").weakMapMemoize;
546
+ }];
547
+ recomputations: () => number;
548
+ resetRecomputations: () => void;
549
+ dependencyRecomputations: () => number;
550
+ resetDependencyRecomputations: () => void;
551
+ } & {
552
+ memoize: typeof import("reselect").weakMapMemoize;
553
+ argsMemoize: typeof import("reselect").weakMapMemoize;
554
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("../useChartCartesianAxis").UseChartCartesianAxisState> & {
555
+ cacheKey: import("../../models").ChartStateCacheKey;
556
+ }) => number) & {
557
+ clearCache: () => void;
558
+ resultsCount: () => number;
559
+ resetResultsCount: () => void;
560
+ } & {
561
+ resultFunc: (resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) => number;
562
+ memoizedResultFunc: ((resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) => number) & {
563
+ clearCache: () => void;
564
+ resultsCount: () => number;
565
+ resetResultsCount: () => void;
566
+ };
567
+ lastResult: () => number;
568
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("../useChartCartesianAxis").UseChartCartesianAxisState> & {
569
+ cacheKey: import("../../models").ChartStateCacheKey;
570
+ }) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) & {
571
+ clearCache: () => void;
572
+ resultsCount: () => number;
573
+ resetResultsCount: () => void;
574
+ } & {
575
+ resultFunc: (resultFuncArgs_0: {
576
+ x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
577
+ y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
578
+ } | undefined) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined;
579
+ memoizedResultFunc: ((resultFuncArgs_0: {
580
+ x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
581
+ y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
582
+ } | undefined) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) & {
583
+ clearCache: () => void;
584
+ resultsCount: () => number;
585
+ resetResultsCount: () => void;
586
+ };
587
+ lastResult: () => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined;
588
+ dependencies: [(state: import("../../models").ChartState<[], [import("../useChartCartesianAxis").UseChartCartesianAxisSignature]>) => {
589
+ x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
590
+ y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
591
+ } | undefined];
592
+ recomputations: () => number;
593
+ resetRecomputations: () => void;
594
+ dependencyRecomputations: () => number;
595
+ resetDependencyRecomputations: () => void;
596
+ } & {
597
+ memoize: typeof import("reselect").weakMapMemoize;
598
+ argsMemoize: typeof import("reselect").weakMapMemoize;
599
+ }];
600
+ recomputations: () => number;
601
+ resetRecomputations: () => void;
602
+ dependencyRecomputations: () => number;
603
+ resetDependencyRecomputations: () => void;
604
+ } & {
605
+ memoize: typeof import("reselect").weakMapMemoize;
606
+ argsMemoize: typeof import("reselect").weakMapMemoize;
607
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("../useChartCartesianAxis").UseChartCartesianAxisState> & {
608
+ cacheKey: import("../../models").ChartStateCacheKey;
609
+ }) => number) & {
610
+ clearCache: () => void;
611
+ resultsCount: () => number;
612
+ resetResultsCount: () => void;
613
+ } & {
614
+ resultFunc: (resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) => number;
615
+ memoizedResultFunc: ((resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) => number) & {
616
+ clearCache: () => void;
617
+ resultsCount: () => number;
618
+ resetResultsCount: () => void;
619
+ };
620
+ lastResult: () => number;
621
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("../useChartCartesianAxis").UseChartCartesianAxisState> & {
622
+ cacheKey: import("../../models").ChartStateCacheKey;
623
+ }) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) & {
624
+ clearCache: () => void;
625
+ resultsCount: () => number;
626
+ resetResultsCount: () => void;
627
+ } & {
628
+ resultFunc: (resultFuncArgs_0: {
629
+ x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
630
+ y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
631
+ } | undefined) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined;
632
+ memoizedResultFunc: ((resultFuncArgs_0: {
633
+ x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
634
+ y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
635
+ } | undefined) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) & {
636
+ clearCache: () => void;
637
+ resultsCount: () => number;
638
+ resetResultsCount: () => void;
639
+ };
640
+ lastResult: () => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined;
641
+ dependencies: [(state: import("../../models").ChartState<[], [import("../useChartCartesianAxis").UseChartCartesianAxisSignature]>) => {
642
+ x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
643
+ y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
644
+ } | undefined];
645
+ recomputations: () => number;
646
+ resetRecomputations: () => void;
647
+ dependencyRecomputations: () => number;
648
+ resetDependencyRecomputations: () => void;
649
+ } & {
650
+ memoize: typeof import("reselect").weakMapMemoize;
651
+ argsMemoize: typeof import("reselect").weakMapMemoize;
652
+ }];
653
+ recomputations: () => number;
654
+ resetRecomputations: () => void;
655
+ dependencyRecomputations: () => number;
656
+ resetDependencyRecomputations: () => void;
657
+ } & {
658
+ memoize: typeof import("reselect").weakMapMemoize;
659
+ argsMemoize: typeof import("reselect").weakMapMemoize;
660
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("../useChartCartesianAxis").UseChartCartesianAxisState> & {
661
+ cacheKey: import("../../models").ChartStateCacheKey;
662
+ }) => number) & {
663
+ clearCache: () => void;
664
+ resultsCount: () => number;
665
+ resetResultsCount: () => void;
666
+ } & {
667
+ resultFunc: (resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) => number;
668
+ memoizedResultFunc: ((resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) => number) & {
669
+ clearCache: () => void;
670
+ resultsCount: () => number;
671
+ resetResultsCount: () => void;
672
+ };
673
+ lastResult: () => number;
674
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("../useChartCartesianAxis").UseChartCartesianAxisState> & {
675
+ cacheKey: import("../../models").ChartStateCacheKey;
676
+ }) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) & {
677
+ clearCache: () => void;
678
+ resultsCount: () => number;
679
+ resetResultsCount: () => void;
680
+ } & {
681
+ resultFunc: (resultFuncArgs_0: {
682
+ x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
683
+ y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
684
+ } | undefined) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined;
685
+ memoizedResultFunc: ((resultFuncArgs_0: {
686
+ x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
687
+ y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
688
+ } | undefined) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) & {
689
+ clearCache: () => void;
690
+ resultsCount: () => number;
691
+ resetResultsCount: () => void;
692
+ };
693
+ lastResult: () => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined;
694
+ dependencies: [(state: import("../../models").ChartState<[], [import("../useChartCartesianAxis").UseChartCartesianAxisSignature]>) => {
695
+ x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
696
+ y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
697
+ } | undefined];
698
+ recomputations: () => number;
699
+ resetRecomputations: () => void;
700
+ dependencyRecomputations: () => number;
701
+ resetDependencyRecomputations: () => void;
702
+ } & {
703
+ memoize: typeof import("reselect").weakMapMemoize;
704
+ argsMemoize: typeof import("reselect").weakMapMemoize;
705
+ }];
706
+ recomputations: () => number;
707
+ resetRecomputations: () => void;
708
+ dependencyRecomputations: () => number;
709
+ resetDependencyRecomputations: () => void;
710
+ } & {
711
+ memoize: typeof import("reselect").weakMapMemoize;
712
+ argsMemoize: typeof import("reselect").weakMapMemoize;
713
+ }];
714
+ recomputations: () => number;
715
+ resetRecomputations: () => void;
716
+ dependencyRecomputations: () => number;
717
+ resetDependencyRecomputations: () => void;
718
+ } & {
719
+ memoize: typeof import("reselect").weakMapMemoize;
720
+ argsMemoize: typeof import("reselect").weakMapMemoize;
721
+ }];
722
+ recomputations: () => number;
723
+ resetRecomputations: () => void;
724
+ dependencyRecomputations: () => number;
725
+ resetDependencyRecomputations: () => void;
726
+ } & {
727
+ memoize: typeof import("reselect").weakMapMemoize;
728
+ argsMemoize: typeof import("reselect").weakMapMemoize;
729
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("./useChartPolarAxis.types").UseChartPolarAxisState & Partial<{}> & {
730
+ cacheKey: import("../../models").ChartStateCacheKey;
731
+ } & Partial<import("../useChartCartesianAxis").UseChartCartesianAxisState>) => {
732
+ axis: import("./computeAxisValue").DefaultizedAxisConfig<import("../../..").ChartsRotationAxisProps>;
733
+ axisIds: string[];
734
+ }) & {
735
+ clearCache: () => void;
736
+ resultsCount: () => number;
737
+ resetResultsCount: () => void;
738
+ } & {
739
+ resultFunc: (resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsRotationAxisProps>[], resultFuncArgs_1: {
740
+ width: number;
741
+ left: number;
742
+ right: number;
743
+ height: number;
744
+ top: number;
745
+ bottom: number;
746
+ }, resultFuncArgs_2: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>, resultFuncArgs_3: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>) => {
747
+ axis: import("./computeAxisValue").DefaultizedAxisConfig<import("../../..").ChartsRotationAxisProps>;
748
+ axisIds: string[];
749
+ };
750
+ memoizedResultFunc: ((resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsRotationAxisProps>[], resultFuncArgs_1: {
751
+ width: number;
752
+ left: number;
753
+ right: number;
754
+ height: number;
755
+ top: number;
756
+ bottom: number;
757
+ }, resultFuncArgs_2: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>, resultFuncArgs_3: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>) => {
758
+ axis: import("./computeAxisValue").DefaultizedAxisConfig<import("../../..").ChartsRotationAxisProps>;
759
+ axisIds: string[];
760
+ }) & {
761
+ clearCache: () => void;
762
+ resultsCount: () => number;
763
+ resetResultsCount: () => void;
764
+ };
765
+ lastResult: () => {
766
+ axis: import("./computeAxisValue").DefaultizedAxisConfig<import("../../..").ChartsRotationAxisProps>;
767
+ axisIds: string[];
768
+ };
769
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("./useChartPolarAxis.types").UseChartPolarAxisState & Partial<{}> & {
770
+ cacheKey: import("../../models").ChartStateCacheKey;
771
+ }) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsRotationAxisProps>[]) & {
772
+ clearCache: () => void;
773
+ resultsCount: () => number;
774
+ resetResultsCount: () => void;
775
+ } & {
776
+ resultFunc: (resultFuncArgs_0: {
777
+ rotation: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsRotationAxisProps>[];
778
+ radius: import("../../..").AxisConfig<"linear", any, import("../../..").ChartsRadiusAxisProps>[];
779
+ }) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsRotationAxisProps>[];
780
+ memoizedResultFunc: ((resultFuncArgs_0: {
781
+ rotation: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsRotationAxisProps>[];
782
+ radius: import("../../..").AxisConfig<"linear", any, import("../../..").ChartsRadiusAxisProps>[];
783
+ }) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsRotationAxisProps>[]) & {
784
+ clearCache: () => void;
785
+ resultsCount: () => number;
786
+ resetResultsCount: () => void;
787
+ };
788
+ lastResult: () => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsRotationAxisProps>[];
789
+ dependencies: [(state: import("../../models").ChartState<[import("./useChartPolarAxis.types").UseChartPolarAxisSignature]>) => {
790
+ rotation: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsRotationAxisProps>[];
791
+ radius: import("../../..").AxisConfig<"linear", any, import("../../..").ChartsRadiusAxisProps>[];
792
+ }];
793
+ recomputations: () => number;
794
+ resetRecomputations: () => void;
795
+ dependencyRecomputations: () => number;
796
+ resetDependencyRecomputations: () => void;
797
+ } & {
798
+ memoize: typeof import("reselect").weakMapMemoize;
799
+ argsMemoize: typeof import("reselect").weakMapMemoize;
800
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
801
+ cacheKey: import("../../models").ChartStateCacheKey;
802
+ } & Partial<import("../useChartCartesianAxis").UseChartCartesianAxisState>) => {
803
+ width: number;
804
+ left: number;
805
+ right: number;
806
+ height: number;
807
+ top: number;
808
+ bottom: number;
809
+ }) & {
810
+ clearCache: () => void;
811
+ resultsCount: () => number;
812
+ resetResultsCount: () => void;
813
+ } & {
814
+ 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) => {
815
+ width: number;
816
+ left: number;
817
+ right: number;
818
+ height: number;
819
+ top: number;
820
+ bottom: number;
821
+ };
822
+ 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) => {
823
+ width: number;
824
+ left: number;
825
+ right: number;
826
+ height: number;
827
+ top: number;
828
+ bottom: number;
829
+ }) & {
830
+ clearCache: () => void;
831
+ resultsCount: () => number;
832
+ resetResultsCount: () => void;
833
+ };
834
+ lastResult: () => {
835
+ width: number;
836
+ left: number;
837
+ right: number;
838
+ height: number;
839
+ top: number;
840
+ bottom: number;
841
+ };
842
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
843
+ cacheKey: import("../../models").ChartStateCacheKey;
844
+ }) => number) & {
845
+ clearCache: () => void;
846
+ resultsCount: () => number;
847
+ resetResultsCount: () => void;
848
+ } & {
849
+ resultFunc: (resultFuncArgs_0: {
850
+ margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
851
+ width: number;
852
+ height: number;
853
+ propsWidth: number | undefined;
854
+ propsHeight: number | undefined;
855
+ }) => number;
856
+ memoizedResultFunc: ((resultFuncArgs_0: {
857
+ margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
858
+ width: number;
859
+ height: number;
860
+ propsWidth: number | undefined;
861
+ propsHeight: number | undefined;
862
+ }) => number) & {
863
+ clearCache: () => void;
864
+ resultsCount: () => number;
865
+ resetResultsCount: () => void;
866
+ };
867
+ lastResult: () => number;
868
+ dependencies: [import("../../..").ChartRootSelector<import("../../..").UseChartDimensionsSignature>];
869
+ recomputations: () => number;
870
+ resetRecomputations: () => void;
871
+ dependencyRecomputations: () => number;
872
+ resetDependencyRecomputations: () => void;
873
+ } & {
874
+ memoize: typeof import("reselect").weakMapMemoize;
875
+ argsMemoize: typeof import("reselect").weakMapMemoize;
876
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
877
+ cacheKey: import("../../models").ChartStateCacheKey;
878
+ }) => number) & {
879
+ clearCache: () => void;
880
+ resultsCount: () => number;
881
+ resetResultsCount: () => void;
882
+ } & {
883
+ resultFunc: (resultFuncArgs_0: {
884
+ margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
885
+ width: number;
886
+ height: number;
887
+ propsWidth: number | undefined;
888
+ propsHeight: number | undefined;
889
+ }) => number;
890
+ memoizedResultFunc: ((resultFuncArgs_0: {
891
+ margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
892
+ width: number;
893
+ height: number;
894
+ propsWidth: number | undefined;
895
+ propsHeight: number | undefined;
896
+ }) => number) & {
897
+ clearCache: () => void;
898
+ resultsCount: () => number;
899
+ resetResultsCount: () => void;
900
+ };
901
+ lastResult: () => number;
902
+ dependencies: [import("../../..").ChartRootSelector<import("../../..").UseChartDimensionsSignature>];
903
+ recomputations: () => number;
904
+ resetRecomputations: () => void;
905
+ dependencyRecomputations: () => number;
906
+ resetDependencyRecomputations: () => void;
907
+ } & {
908
+ memoize: typeof import("reselect").weakMapMemoize;
909
+ argsMemoize: typeof import("reselect").weakMapMemoize;
910
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
911
+ cacheKey: import("../../models").ChartStateCacheKey;
912
+ }) => number) & {
913
+ clearCache: () => void;
914
+ resultsCount: () => number;
915
+ resetResultsCount: () => void;
916
+ } & {
917
+ resultFunc: (resultFuncArgs_0: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) => number;
918
+ memoizedResultFunc: ((resultFuncArgs_0: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) => number) & {
919
+ clearCache: () => void;
920
+ resultsCount: () => number;
921
+ resetResultsCount: () => void;
922
+ };
923
+ lastResult: () => number;
924
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
925
+ cacheKey: import("../../models").ChartStateCacheKey;
926
+ }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) & {
927
+ clearCache: () => void;
928
+ resultsCount: () => number;
929
+ resetResultsCount: () => void;
930
+ } & {
931
+ resultFunc: (resultFuncArgs_0: {
932
+ margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
933
+ width: number;
934
+ height: number;
935
+ propsWidth: number | undefined;
936
+ propsHeight: number | undefined;
937
+ }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
938
+ memoizedResultFunc: ((resultFuncArgs_0: {
939
+ margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
940
+ width: number;
941
+ height: number;
942
+ propsWidth: number | undefined;
943
+ propsHeight: number | undefined;
944
+ }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) & {
945
+ clearCache: () => void;
946
+ resultsCount: () => number;
947
+ resetResultsCount: () => void;
948
+ };
949
+ lastResult: () => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
950
+ dependencies: [import("../../..").ChartRootSelector<import("../../..").UseChartDimensionsSignature>];
951
+ recomputations: () => number;
952
+ resetRecomputations: () => void;
953
+ dependencyRecomputations: () => number;
954
+ resetDependencyRecomputations: () => void;
955
+ } & {
956
+ memoize: typeof import("reselect").weakMapMemoize;
957
+ argsMemoize: typeof import("reselect").weakMapMemoize;
958
+ }];
959
+ recomputations: () => number;
960
+ resetRecomputations: () => void;
961
+ dependencyRecomputations: () => number;
962
+ resetDependencyRecomputations: () => void;
963
+ } & {
964
+ memoize: typeof import("reselect").weakMapMemoize;
965
+ argsMemoize: typeof import("reselect").weakMapMemoize;
966
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
967
+ cacheKey: import("../../models").ChartStateCacheKey;
968
+ }) => number) & {
969
+ clearCache: () => void;
970
+ resultsCount: () => number;
971
+ resetResultsCount: () => void;
972
+ } & {
973
+ resultFunc: (resultFuncArgs_0: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) => number;
974
+ memoizedResultFunc: ((resultFuncArgs_0: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) => number) & {
975
+ clearCache: () => void;
976
+ resultsCount: () => number;
977
+ resetResultsCount: () => void;
978
+ };
979
+ lastResult: () => number;
980
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
981
+ cacheKey: import("../../models").ChartStateCacheKey;
982
+ }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) & {
983
+ clearCache: () => void;
984
+ resultsCount: () => number;
985
+ resetResultsCount: () => void;
986
+ } & {
987
+ resultFunc: (resultFuncArgs_0: {
988
+ margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
989
+ width: number;
990
+ height: number;
991
+ propsWidth: number | undefined;
992
+ propsHeight: number | undefined;
993
+ }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
994
+ memoizedResultFunc: ((resultFuncArgs_0: {
995
+ margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
996
+ width: number;
997
+ height: number;
998
+ propsWidth: number | undefined;
999
+ propsHeight: number | undefined;
1000
+ }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) & {
1001
+ clearCache: () => void;
1002
+ resultsCount: () => number;
1003
+ resetResultsCount: () => void;
1004
+ };
1005
+ lastResult: () => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
1006
+ dependencies: [import("../../..").ChartRootSelector<import("../../..").UseChartDimensionsSignature>];
1007
+ recomputations: () => number;
1008
+ resetRecomputations: () => void;
1009
+ dependencyRecomputations: () => number;
1010
+ resetDependencyRecomputations: () => void;
1011
+ } & {
1012
+ memoize: typeof import("reselect").weakMapMemoize;
1013
+ argsMemoize: typeof import("reselect").weakMapMemoize;
1014
+ }];
1015
+ recomputations: () => number;
1016
+ resetRecomputations: () => void;
1017
+ dependencyRecomputations: () => number;
1018
+ resetDependencyRecomputations: () => void;
1019
+ } & {
1020
+ memoize: typeof import("reselect").weakMapMemoize;
1021
+ argsMemoize: typeof import("reselect").weakMapMemoize;
1022
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
1023
+ cacheKey: import("../../models").ChartStateCacheKey;
1024
+ }) => number) & {
1025
+ clearCache: () => void;
1026
+ resultsCount: () => number;
1027
+ resetResultsCount: () => void;
1028
+ } & {
1029
+ resultFunc: (resultFuncArgs_0: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) => number;
1030
+ memoizedResultFunc: ((resultFuncArgs_0: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) => number) & {
1031
+ clearCache: () => void;
1032
+ resultsCount: () => number;
1033
+ resetResultsCount: () => void;
1034
+ };
1035
+ lastResult: () => number;
1036
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
1037
+ cacheKey: import("../../models").ChartStateCacheKey;
1038
+ }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) & {
1039
+ clearCache: () => void;
1040
+ resultsCount: () => number;
1041
+ resetResultsCount: () => void;
1042
+ } & {
1043
+ resultFunc: (resultFuncArgs_0: {
1044
+ margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
1045
+ width: number;
1046
+ height: number;
1047
+ propsWidth: number | undefined;
1048
+ propsHeight: number | undefined;
1049
+ }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
1050
+ memoizedResultFunc: ((resultFuncArgs_0: {
1051
+ margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
1052
+ width: number;
1053
+ height: number;
1054
+ propsWidth: number | undefined;
1055
+ propsHeight: number | undefined;
1056
+ }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) & {
1057
+ clearCache: () => void;
1058
+ resultsCount: () => number;
1059
+ resetResultsCount: () => void;
1060
+ };
1061
+ lastResult: () => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
1062
+ dependencies: [import("../../..").ChartRootSelector<import("../../..").UseChartDimensionsSignature>];
1063
+ recomputations: () => number;
1064
+ resetRecomputations: () => void;
1065
+ dependencyRecomputations: () => number;
1066
+ resetDependencyRecomputations: () => void;
1067
+ } & {
1068
+ memoize: typeof import("reselect").weakMapMemoize;
1069
+ argsMemoize: typeof import("reselect").weakMapMemoize;
1070
+ }];
1071
+ recomputations: () => number;
1072
+ resetRecomputations: () => void;
1073
+ dependencyRecomputations: () => number;
1074
+ resetDependencyRecomputations: () => void;
1075
+ } & {
1076
+ memoize: typeof import("reselect").weakMapMemoize;
1077
+ argsMemoize: typeof import("reselect").weakMapMemoize;
1078
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
1079
+ cacheKey: import("../../models").ChartStateCacheKey;
1080
+ }) => number) & {
1081
+ clearCache: () => void;
1082
+ resultsCount: () => number;
1083
+ resetResultsCount: () => void;
1084
+ } & {
1085
+ resultFunc: (resultFuncArgs_0: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) => number;
1086
+ memoizedResultFunc: ((resultFuncArgs_0: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) => number) & {
1087
+ clearCache: () => void;
1088
+ resultsCount: () => number;
1089
+ resetResultsCount: () => void;
1090
+ };
1091
+ lastResult: () => number;
1092
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
1093
+ cacheKey: import("../../models").ChartStateCacheKey;
1094
+ }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) & {
1095
+ clearCache: () => void;
1096
+ resultsCount: () => number;
1097
+ resetResultsCount: () => void;
1098
+ } & {
1099
+ resultFunc: (resultFuncArgs_0: {
1100
+ margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
1101
+ width: number;
1102
+ height: number;
1103
+ propsWidth: number | undefined;
1104
+ propsHeight: number | undefined;
1105
+ }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
1106
+ memoizedResultFunc: ((resultFuncArgs_0: {
1107
+ margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
1108
+ width: number;
1109
+ height: number;
1110
+ propsWidth: number | undefined;
1111
+ propsHeight: number | undefined;
1112
+ }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) & {
1113
+ clearCache: () => void;
1114
+ resultsCount: () => number;
1115
+ resetResultsCount: () => void;
1116
+ };
1117
+ lastResult: () => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
1118
+ dependencies: [import("../../..").ChartRootSelector<import("../../..").UseChartDimensionsSignature>];
1119
+ recomputations: () => number;
1120
+ resetRecomputations: () => void;
1121
+ dependencyRecomputations: () => number;
1122
+ resetDependencyRecomputations: () => void;
1123
+ } & {
1124
+ memoize: typeof import("reselect").weakMapMemoize;
1125
+ argsMemoize: typeof import("reselect").weakMapMemoize;
1126
+ }];
1127
+ recomputations: () => number;
1128
+ resetRecomputations: () => void;
1129
+ dependencyRecomputations: () => number;
1130
+ resetDependencyRecomputations: () => void;
1131
+ } & {
1132
+ memoize: typeof import("reselect").weakMapMemoize;
1133
+ argsMemoize: typeof import("reselect").weakMapMemoize;
1134
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("../useChartCartesianAxis").UseChartCartesianAxisState> & {
1135
+ cacheKey: import("../../models").ChartStateCacheKey;
1136
+ }) => number) & {
1137
+ clearCache: () => void;
1138
+ resultsCount: () => number;
1139
+ resetResultsCount: () => void;
1140
+ } & {
1141
+ resultFunc: (resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) => number;
1142
+ memoizedResultFunc: ((resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) => number) & {
1143
+ clearCache: () => void;
1144
+ resultsCount: () => number;
1145
+ resetResultsCount: () => void;
1146
+ };
1147
+ lastResult: () => number;
1148
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("../useChartCartesianAxis").UseChartCartesianAxisState> & {
1149
+ cacheKey: import("../../models").ChartStateCacheKey;
1150
+ }) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) & {
1151
+ clearCache: () => void;
1152
+ resultsCount: () => number;
1153
+ resetResultsCount: () => void;
1154
+ } & {
1155
+ resultFunc: (resultFuncArgs_0: {
1156
+ x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
1157
+ y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
1158
+ } | undefined) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined;
1159
+ memoizedResultFunc: ((resultFuncArgs_0: {
1160
+ x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
1161
+ y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
1162
+ } | undefined) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) & {
1163
+ clearCache: () => void;
1164
+ resultsCount: () => number;
1165
+ resetResultsCount: () => void;
1166
+ };
1167
+ lastResult: () => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined;
1168
+ dependencies: [(state: import("../../models").ChartState<[], [import("../useChartCartesianAxis").UseChartCartesianAxisSignature]>) => {
1169
+ x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
1170
+ y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
1171
+ } | undefined];
1172
+ recomputations: () => number;
1173
+ resetRecomputations: () => void;
1174
+ dependencyRecomputations: () => number;
1175
+ resetDependencyRecomputations: () => void;
1176
+ } & {
1177
+ memoize: typeof import("reselect").weakMapMemoize;
1178
+ argsMemoize: typeof import("reselect").weakMapMemoize;
1179
+ }];
1180
+ recomputations: () => number;
1181
+ resetRecomputations: () => void;
1182
+ dependencyRecomputations: () => number;
1183
+ resetDependencyRecomputations: () => void;
1184
+ } & {
1185
+ memoize: typeof import("reselect").weakMapMemoize;
1186
+ argsMemoize: typeof import("reselect").weakMapMemoize;
1187
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("../useChartCartesianAxis").UseChartCartesianAxisState> & {
1188
+ cacheKey: import("../../models").ChartStateCacheKey;
1189
+ }) => number) & {
1190
+ clearCache: () => void;
1191
+ resultsCount: () => number;
1192
+ resetResultsCount: () => void;
1193
+ } & {
1194
+ resultFunc: (resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) => number;
1195
+ memoizedResultFunc: ((resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) => number) & {
1196
+ clearCache: () => void;
1197
+ resultsCount: () => number;
1198
+ resetResultsCount: () => void;
1199
+ };
1200
+ lastResult: () => number;
1201
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("../useChartCartesianAxis").UseChartCartesianAxisState> & {
1202
+ cacheKey: import("../../models").ChartStateCacheKey;
1203
+ }) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) & {
1204
+ clearCache: () => void;
1205
+ resultsCount: () => number;
1206
+ resetResultsCount: () => void;
1207
+ } & {
1208
+ resultFunc: (resultFuncArgs_0: {
1209
+ x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
1210
+ y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
1211
+ } | undefined) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined;
1212
+ memoizedResultFunc: ((resultFuncArgs_0: {
1213
+ x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
1214
+ y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
1215
+ } | undefined) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) & {
1216
+ clearCache: () => void;
1217
+ resultsCount: () => number;
1218
+ resetResultsCount: () => void;
1219
+ };
1220
+ lastResult: () => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined;
1221
+ dependencies: [(state: import("../../models").ChartState<[], [import("../useChartCartesianAxis").UseChartCartesianAxisSignature]>) => {
1222
+ x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
1223
+ y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
1224
+ } | undefined];
1225
+ recomputations: () => number;
1226
+ resetRecomputations: () => void;
1227
+ dependencyRecomputations: () => number;
1228
+ resetDependencyRecomputations: () => void;
1229
+ } & {
1230
+ memoize: typeof import("reselect").weakMapMemoize;
1231
+ argsMemoize: typeof import("reselect").weakMapMemoize;
1232
+ }];
1233
+ recomputations: () => number;
1234
+ resetRecomputations: () => void;
1235
+ dependencyRecomputations: () => number;
1236
+ resetDependencyRecomputations: () => void;
1237
+ } & {
1238
+ memoize: typeof import("reselect").weakMapMemoize;
1239
+ argsMemoize: typeof import("reselect").weakMapMemoize;
1240
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("../useChartCartesianAxis").UseChartCartesianAxisState> & {
1241
+ cacheKey: import("../../models").ChartStateCacheKey;
1242
+ }) => number) & {
1243
+ clearCache: () => void;
1244
+ resultsCount: () => number;
1245
+ resetResultsCount: () => void;
1246
+ } & {
1247
+ resultFunc: (resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) => number;
1248
+ memoizedResultFunc: ((resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) => number) & {
1249
+ clearCache: () => void;
1250
+ resultsCount: () => number;
1251
+ resetResultsCount: () => void;
1252
+ };
1253
+ lastResult: () => number;
1254
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("../useChartCartesianAxis").UseChartCartesianAxisState> & {
1255
+ cacheKey: import("../../models").ChartStateCacheKey;
1256
+ }) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) & {
1257
+ clearCache: () => void;
1258
+ resultsCount: () => number;
1259
+ resetResultsCount: () => void;
1260
+ } & {
1261
+ resultFunc: (resultFuncArgs_0: {
1262
+ x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
1263
+ y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
1264
+ } | undefined) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined;
1265
+ memoizedResultFunc: ((resultFuncArgs_0: {
1266
+ x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
1267
+ y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
1268
+ } | undefined) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) & {
1269
+ clearCache: () => void;
1270
+ resultsCount: () => number;
1271
+ resetResultsCount: () => void;
1272
+ };
1273
+ lastResult: () => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined;
1274
+ dependencies: [(state: import("../../models").ChartState<[], [import("../useChartCartesianAxis").UseChartCartesianAxisSignature]>) => {
1275
+ x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
1276
+ y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
1277
+ } | undefined];
1278
+ recomputations: () => number;
1279
+ resetRecomputations: () => void;
1280
+ dependencyRecomputations: () => number;
1281
+ resetDependencyRecomputations: () => void;
1282
+ } & {
1283
+ memoize: typeof import("reselect").weakMapMemoize;
1284
+ argsMemoize: typeof import("reselect").weakMapMemoize;
1285
+ }];
1286
+ recomputations: () => number;
1287
+ resetRecomputations: () => void;
1288
+ dependencyRecomputations: () => number;
1289
+ resetDependencyRecomputations: () => void;
1290
+ } & {
1291
+ memoize: typeof import("reselect").weakMapMemoize;
1292
+ argsMemoize: typeof import("reselect").weakMapMemoize;
1293
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("../useChartCartesianAxis").UseChartCartesianAxisState> & {
1294
+ cacheKey: import("../../models").ChartStateCacheKey;
1295
+ }) => number) & {
1296
+ clearCache: () => void;
1297
+ resultsCount: () => number;
1298
+ resetResultsCount: () => void;
1299
+ } & {
1300
+ resultFunc: (resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) => number;
1301
+ memoizedResultFunc: ((resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) => number) & {
1302
+ clearCache: () => void;
1303
+ resultsCount: () => number;
1304
+ resetResultsCount: () => void;
1305
+ };
1306
+ lastResult: () => number;
1307
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("../useChartCartesianAxis").UseChartCartesianAxisState> & {
1308
+ cacheKey: import("../../models").ChartStateCacheKey;
1309
+ }) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) & {
1310
+ clearCache: () => void;
1311
+ resultsCount: () => number;
1312
+ resetResultsCount: () => void;
1313
+ } & {
1314
+ resultFunc: (resultFuncArgs_0: {
1315
+ x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
1316
+ y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
1317
+ } | undefined) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined;
1318
+ memoizedResultFunc: ((resultFuncArgs_0: {
1319
+ x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
1320
+ y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
1321
+ } | undefined) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) & {
1322
+ clearCache: () => void;
1323
+ resultsCount: () => number;
1324
+ resetResultsCount: () => void;
1325
+ };
1326
+ lastResult: () => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined;
1327
+ dependencies: [(state: import("../../models").ChartState<[], [import("../useChartCartesianAxis").UseChartCartesianAxisSignature]>) => {
1328
+ x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
1329
+ y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
1330
+ } | undefined];
1331
+ recomputations: () => number;
1332
+ resetRecomputations: () => void;
1333
+ dependencyRecomputations: () => number;
1334
+ resetDependencyRecomputations: () => void;
1335
+ } & {
1336
+ memoize: typeof import("reselect").weakMapMemoize;
1337
+ argsMemoize: typeof import("reselect").weakMapMemoize;
1338
+ }];
1339
+ recomputations: () => number;
1340
+ resetRecomputations: () => void;
1341
+ dependencyRecomputations: () => number;
1342
+ resetDependencyRecomputations: () => void;
1343
+ } & {
1344
+ memoize: typeof import("reselect").weakMapMemoize;
1345
+ argsMemoize: typeof import("reselect").weakMapMemoize;
1346
+ }];
1347
+ recomputations: () => number;
1348
+ resetRecomputations: () => void;
1349
+ dependencyRecomputations: () => number;
1350
+ resetDependencyRecomputations: () => void;
1351
+ } & {
1352
+ memoize: typeof import("reselect").weakMapMemoize;
1353
+ argsMemoize: typeof import("reselect").weakMapMemoize;
1354
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
1355
+ cacheKey: import("../../models").ChartStateCacheKey;
1356
+ }) => import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>) & {
1357
+ clearCache: () => void;
1358
+ resultsCount: () => number;
1359
+ resetResultsCount: () => void;
1360
+ } & {
1361
+ resultFunc: (resultFuncArgs_0: {
1362
+ processedSeries: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>;
1363
+ seriesConfig: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>;
1364
+ }) => import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>;
1365
+ memoizedResultFunc: ((resultFuncArgs_0: {
1366
+ processedSeries: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>;
1367
+ seriesConfig: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>;
1368
+ }) => import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>) & {
1369
+ clearCache: () => void;
1370
+ resultsCount: () => number;
1371
+ resetResultsCount: () => void;
1372
+ };
1373
+ lastResult: () => import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>;
1374
+ dependencies: [import("../../..").ChartRootSelector<import("../../..").UseChartSeriesSignature>];
1375
+ recomputations: () => number;
1376
+ resetRecomputations: () => void;
1377
+ dependencyRecomputations: () => number;
1378
+ resetDependencyRecomputations: () => void;
1379
+ } & {
1380
+ memoize: typeof import("reselect").weakMapMemoize;
1381
+ argsMemoize: typeof import("reselect").weakMapMemoize;
1382
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
1383
+ cacheKey: import("../../models").ChartStateCacheKey;
1384
+ }) => import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>) & {
1385
+ clearCache: () => void;
1386
+ resultsCount: () => number;
1387
+ resetResultsCount: () => void;
1388
+ } & {
1389
+ resultFunc: (resultFuncArgs_0: {
1390
+ processedSeries: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>;
1391
+ seriesConfig: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>;
1392
+ }) => import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>;
1393
+ memoizedResultFunc: ((resultFuncArgs_0: {
1394
+ processedSeries: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>;
1395
+ seriesConfig: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>;
1396
+ }) => import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>) & {
1397
+ clearCache: () => void;
1398
+ resultsCount: () => number;
1399
+ resetResultsCount: () => void;
1400
+ };
1401
+ lastResult: () => import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>;
1402
+ dependencies: [import("../../..").ChartRootSelector<import("../../..").UseChartSeriesSignature>];
1403
+ recomputations: () => number;
1404
+ resetRecomputations: () => void;
1405
+ dependencyRecomputations: () => number;
1406
+ resetDependencyRecomputations: () => void;
1407
+ } & {
1408
+ memoize: typeof import("reselect").weakMapMemoize;
1409
+ argsMemoize: typeof import("reselect").weakMapMemoize;
1410
+ }];
1411
+ recomputations: () => number;
1412
+ resetRecomputations: () => void;
1413
+ dependencyRecomputations: () => number;
1414
+ resetDependencyRecomputations: () => void;
1415
+ } & {
1416
+ memoize: typeof import("reselect").weakMapMemoize;
1417
+ argsMemoize: typeof import("reselect").weakMapMemoize;
1418
+ }];
1419
+ recomputations: () => number;
1420
+ resetRecomputations: () => void;
1421
+ dependencyRecomputations: () => number;
1422
+ resetDependencyRecomputations: () => void;
1423
+ } & {
1424
+ memoize: typeof import("reselect").weakMapMemoize;
1425
+ argsMemoize: typeof import("reselect").weakMapMemoize;
1426
+ };
1427
+ export declare const selectorChartsInteractionRotationAxisValue: ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("../useChartInteraction/useChartInteraction.types").UseChartInteractionState> & {
1428
+ cacheKey: import("../../models").ChartStateCacheKey;
1429
+ } & import("./useChartPolarAxis.types").UseChartPolarAxisState & Partial<{}> & Partial<import("../useChartCartesianAxis").UseChartCartesianAxisState>) => any) & {
1430
+ clearCache: () => void;
1431
+ resultsCount: () => number;
1432
+ resetResultsCount: () => void;
1433
+ } & {
1434
+ resultFunc: (resultFuncArgs_0: number | null, resultFuncArgs_1: number | null, resultFuncArgs_2: {
1435
+ axis: import("./computeAxisValue").DefaultizedAxisConfig<import("../../..").ChartsRotationAxisProps>;
1436
+ axisIds: string[];
1437
+ }, resultFuncArgs_3: number | null) => any;
1438
+ memoizedResultFunc: ((resultFuncArgs_0: number | null, resultFuncArgs_1: number | null, resultFuncArgs_2: {
1439
+ axis: import("./computeAxisValue").DefaultizedAxisConfig<import("../../..").ChartsRotationAxisProps>;
1440
+ axisIds: string[];
1441
+ }, resultFuncArgs_3: number | null) => any) & {
1442
+ clearCache: () => void;
1443
+ resultsCount: () => number;
1444
+ resetResultsCount: () => void;
1445
+ };
1446
+ lastResult: () => any;
1447
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("../useChartInteraction/useChartInteraction.types").UseChartInteractionState> & {
1448
+ cacheKey: import("../../models").ChartStateCacheKey;
1449
+ }) => number | null) & {
1450
+ clearCache: () => void;
1451
+ resultsCount: () => number;
1452
+ resetResultsCount: () => void;
1453
+ } & {
1454
+ resultFunc: (resultFuncArgs_0: import("../useChartInteraction/useChartInteraction.types").Coordinate | null) => number | null;
1455
+ memoizedResultFunc: ((resultFuncArgs_0: import("../useChartInteraction/useChartInteraction.types").Coordinate | null) => number | null) & {
1456
+ clearCache: () => void;
1457
+ resultsCount: () => number;
1458
+ resetResultsCount: () => void;
1459
+ };
1460
+ lastResult: () => number | null;
1461
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("../useChartInteraction/useChartInteraction.types").UseChartInteractionState> & {
1462
+ cacheKey: import("../../models").ChartStateCacheKey;
1463
+ }) => import("../useChartInteraction/useChartInteraction.types").Coordinate | null) & {
1464
+ clearCache: () => void;
1465
+ resultsCount: () => number;
1466
+ resetResultsCount: () => void;
1467
+ } & {
1468
+ resultFunc: (resultFuncArgs_0: {
1469
+ item: null | import("../../..").ChartItemIdentifier<import("../../..").ChartSeriesType>;
1470
+ pointer: import("../useChartInteraction/useChartInteraction.types").Coordinate | null;
1471
+ } | undefined) => import("../useChartInteraction/useChartInteraction.types").Coordinate | null;
1472
+ memoizedResultFunc: ((resultFuncArgs_0: {
1473
+ item: null | import("../../..").ChartItemIdentifier<import("../../..").ChartSeriesType>;
1474
+ pointer: import("../useChartInteraction/useChartInteraction.types").Coordinate | null;
1475
+ } | undefined) => import("../useChartInteraction/useChartInteraction.types").Coordinate | null) & {
1476
+ clearCache: () => void;
1477
+ resultsCount: () => number;
1478
+ resetResultsCount: () => void;
1479
+ };
1480
+ lastResult: () => import("../useChartInteraction/useChartInteraction.types").Coordinate | null;
1481
+ dependencies: [import("../../..").ChartOptionalRootSelector<import("../useChartInteraction").UseChartInteractionSignature>];
1482
+ recomputations: () => number;
1483
+ resetRecomputations: () => void;
1484
+ dependencyRecomputations: () => number;
1485
+ resetDependencyRecomputations: () => void;
1486
+ } & {
1487
+ memoize: typeof import("reselect").weakMapMemoize;
1488
+ argsMemoize: typeof import("reselect").weakMapMemoize;
1489
+ }];
1490
+ recomputations: () => number;
1491
+ resetRecomputations: () => void;
1492
+ dependencyRecomputations: () => number;
1493
+ resetDependencyRecomputations: () => void;
1494
+ } & {
1495
+ memoize: typeof import("reselect").weakMapMemoize;
1496
+ argsMemoize: typeof import("reselect").weakMapMemoize;
1497
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("../useChartInteraction/useChartInteraction.types").UseChartInteractionState> & {
1498
+ cacheKey: import("../../models").ChartStateCacheKey;
1499
+ }) => number | null) & {
1500
+ clearCache: () => void;
1501
+ resultsCount: () => number;
1502
+ resetResultsCount: () => void;
1503
+ } & {
1504
+ resultFunc: (resultFuncArgs_0: import("../useChartInteraction/useChartInteraction.types").Coordinate | null) => number | null;
1505
+ memoizedResultFunc: ((resultFuncArgs_0: import("../useChartInteraction/useChartInteraction.types").Coordinate | null) => number | null) & {
1506
+ clearCache: () => void;
1507
+ resultsCount: () => number;
1508
+ resetResultsCount: () => void;
1509
+ };
1510
+ lastResult: () => number | null;
1511
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("../useChartInteraction/useChartInteraction.types").UseChartInteractionState> & {
1512
+ cacheKey: import("../../models").ChartStateCacheKey;
1513
+ }) => import("../useChartInteraction/useChartInteraction.types").Coordinate | null) & {
1514
+ clearCache: () => void;
1515
+ resultsCount: () => number;
1516
+ resetResultsCount: () => void;
1517
+ } & {
1518
+ resultFunc: (resultFuncArgs_0: {
1519
+ item: null | import("../../..").ChartItemIdentifier<import("../../..").ChartSeriesType>;
1520
+ pointer: import("../useChartInteraction/useChartInteraction.types").Coordinate | null;
1521
+ } | undefined) => import("../useChartInteraction/useChartInteraction.types").Coordinate | null;
1522
+ memoizedResultFunc: ((resultFuncArgs_0: {
1523
+ item: null | import("../../..").ChartItemIdentifier<import("../../..").ChartSeriesType>;
1524
+ pointer: import("../useChartInteraction/useChartInteraction.types").Coordinate | null;
1525
+ } | undefined) => import("../useChartInteraction/useChartInteraction.types").Coordinate | null) & {
1526
+ clearCache: () => void;
1527
+ resultsCount: () => number;
1528
+ resetResultsCount: () => void;
1529
+ };
1530
+ lastResult: () => import("../useChartInteraction/useChartInteraction.types").Coordinate | null;
1531
+ dependencies: [import("../../..").ChartOptionalRootSelector<import("../useChartInteraction").UseChartInteractionSignature>];
1532
+ recomputations: () => number;
1533
+ resetRecomputations: () => void;
1534
+ dependencyRecomputations: () => number;
1535
+ resetDependencyRecomputations: () => void;
1536
+ } & {
1537
+ memoize: typeof import("reselect").weakMapMemoize;
1538
+ argsMemoize: typeof import("reselect").weakMapMemoize;
1539
+ }];
1540
+ recomputations: () => number;
1541
+ resetRecomputations: () => void;
1542
+ dependencyRecomputations: () => number;
1543
+ resetDependencyRecomputations: () => void;
1544
+ } & {
1545
+ memoize: typeof import("reselect").weakMapMemoize;
1546
+ argsMemoize: typeof import("reselect").weakMapMemoize;
1547
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("./useChartPolarAxis.types").UseChartPolarAxisState & Partial<{}> & {
1548
+ cacheKey: import("../../models").ChartStateCacheKey;
1549
+ } & Partial<import("../useChartCartesianAxis").UseChartCartesianAxisState>) => {
1550
+ axis: import("./computeAxisValue").DefaultizedAxisConfig<import("../../..").ChartsRotationAxisProps>;
1551
+ axisIds: string[];
1552
+ }) & {
1553
+ clearCache: () => void;
1554
+ resultsCount: () => number;
1555
+ resetResultsCount: () => void;
1556
+ } & {
1557
+ resultFunc: (resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsRotationAxisProps>[], resultFuncArgs_1: {
1558
+ width: number;
1559
+ left: number;
1560
+ right: number;
1561
+ height: number;
1562
+ top: number;
1563
+ bottom: number;
1564
+ }, resultFuncArgs_2: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>, resultFuncArgs_3: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>) => {
1565
+ axis: import("./computeAxisValue").DefaultizedAxisConfig<import("../../..").ChartsRotationAxisProps>;
1566
+ axisIds: string[];
1567
+ };
1568
+ memoizedResultFunc: ((resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsRotationAxisProps>[], resultFuncArgs_1: {
1569
+ width: number;
1570
+ left: number;
1571
+ right: number;
1572
+ height: number;
1573
+ top: number;
1574
+ bottom: number;
1575
+ }, resultFuncArgs_2: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>, resultFuncArgs_3: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>) => {
1576
+ axis: import("./computeAxisValue").DefaultizedAxisConfig<import("../../..").ChartsRotationAxisProps>;
1577
+ axisIds: string[];
1578
+ }) & {
1579
+ clearCache: () => void;
1580
+ resultsCount: () => number;
1581
+ resetResultsCount: () => void;
1582
+ };
1583
+ lastResult: () => {
1584
+ axis: import("./computeAxisValue").DefaultizedAxisConfig<import("../../..").ChartsRotationAxisProps>;
1585
+ axisIds: string[];
1586
+ };
1587
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("./useChartPolarAxis.types").UseChartPolarAxisState & Partial<{}> & {
1588
+ cacheKey: import("../../models").ChartStateCacheKey;
1589
+ }) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsRotationAxisProps>[]) & {
1590
+ clearCache: () => void;
1591
+ resultsCount: () => number;
1592
+ resetResultsCount: () => void;
1593
+ } & {
1594
+ resultFunc: (resultFuncArgs_0: {
1595
+ rotation: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsRotationAxisProps>[];
1596
+ radius: import("../../..").AxisConfig<"linear", any, import("../../..").ChartsRadiusAxisProps>[];
1597
+ }) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsRotationAxisProps>[];
1598
+ memoizedResultFunc: ((resultFuncArgs_0: {
1599
+ rotation: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsRotationAxisProps>[];
1600
+ radius: import("../../..").AxisConfig<"linear", any, import("../../..").ChartsRadiusAxisProps>[];
1601
+ }) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsRotationAxisProps>[]) & {
1602
+ clearCache: () => void;
1603
+ resultsCount: () => number;
1604
+ resetResultsCount: () => void;
1605
+ };
1606
+ lastResult: () => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsRotationAxisProps>[];
1607
+ dependencies: [(state: import("../../models").ChartState<[import("./useChartPolarAxis.types").UseChartPolarAxisSignature]>) => {
1608
+ rotation: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsRotationAxisProps>[];
1609
+ radius: import("../../..").AxisConfig<"linear", any, import("../../..").ChartsRadiusAxisProps>[];
1610
+ }];
1611
+ recomputations: () => number;
1612
+ resetRecomputations: () => void;
1613
+ dependencyRecomputations: () => number;
1614
+ resetDependencyRecomputations: () => void;
1615
+ } & {
1616
+ memoize: typeof import("reselect").weakMapMemoize;
1617
+ argsMemoize: typeof import("reselect").weakMapMemoize;
1618
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
1619
+ cacheKey: import("../../models").ChartStateCacheKey;
1620
+ } & Partial<import("../useChartCartesianAxis").UseChartCartesianAxisState>) => {
1621
+ width: number;
1622
+ left: number;
1623
+ right: number;
1624
+ height: number;
1625
+ top: number;
1626
+ bottom: number;
1627
+ }) & {
1628
+ clearCache: () => void;
1629
+ resultsCount: () => number;
1630
+ resetResultsCount: () => void;
1631
+ } & {
1632
+ 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) => {
1633
+ width: number;
1634
+ left: number;
1635
+ right: number;
1636
+ height: number;
1637
+ top: number;
1638
+ bottom: number;
1639
+ };
1640
+ 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) => {
1641
+ width: number;
1642
+ left: number;
1643
+ right: number;
1644
+ height: number;
1645
+ top: number;
1646
+ bottom: number;
1647
+ }) & {
1648
+ clearCache: () => void;
1649
+ resultsCount: () => number;
1650
+ resetResultsCount: () => void;
1651
+ };
1652
+ lastResult: () => {
1653
+ width: number;
1654
+ left: number;
1655
+ right: number;
1656
+ height: number;
1657
+ top: number;
1658
+ bottom: number;
1659
+ };
1660
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
1661
+ cacheKey: import("../../models").ChartStateCacheKey;
1662
+ }) => number) & {
1663
+ clearCache: () => void;
1664
+ resultsCount: () => number;
1665
+ resetResultsCount: () => void;
1666
+ } & {
1667
+ resultFunc: (resultFuncArgs_0: {
1668
+ margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
1669
+ width: number;
1670
+ height: number;
1671
+ propsWidth: number | undefined;
1672
+ propsHeight: number | undefined;
1673
+ }) => number;
1674
+ memoizedResultFunc: ((resultFuncArgs_0: {
1675
+ margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
1676
+ width: number;
1677
+ height: number;
1678
+ propsWidth: number | undefined;
1679
+ propsHeight: number | undefined;
1680
+ }) => number) & {
1681
+ clearCache: () => void;
1682
+ resultsCount: () => number;
1683
+ resetResultsCount: () => void;
1684
+ };
1685
+ lastResult: () => number;
1686
+ dependencies: [import("../../..").ChartRootSelector<import("../../..").UseChartDimensionsSignature>];
1687
+ recomputations: () => number;
1688
+ resetRecomputations: () => void;
1689
+ dependencyRecomputations: () => number;
1690
+ resetDependencyRecomputations: () => void;
1691
+ } & {
1692
+ memoize: typeof import("reselect").weakMapMemoize;
1693
+ argsMemoize: typeof import("reselect").weakMapMemoize;
1694
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
1695
+ cacheKey: import("../../models").ChartStateCacheKey;
1696
+ }) => number) & {
1697
+ clearCache: () => void;
1698
+ resultsCount: () => number;
1699
+ resetResultsCount: () => void;
1700
+ } & {
1701
+ resultFunc: (resultFuncArgs_0: {
1702
+ margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
1703
+ width: number;
1704
+ height: number;
1705
+ propsWidth: number | undefined;
1706
+ propsHeight: number | undefined;
1707
+ }) => number;
1708
+ memoizedResultFunc: ((resultFuncArgs_0: {
1709
+ margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
1710
+ width: number;
1711
+ height: number;
1712
+ propsWidth: number | undefined;
1713
+ propsHeight: number | undefined;
1714
+ }) => number) & {
1715
+ clearCache: () => void;
1716
+ resultsCount: () => number;
1717
+ resetResultsCount: () => void;
1718
+ };
1719
+ lastResult: () => number;
1720
+ dependencies: [import("../../..").ChartRootSelector<import("../../..").UseChartDimensionsSignature>];
1721
+ recomputations: () => number;
1722
+ resetRecomputations: () => void;
1723
+ dependencyRecomputations: () => number;
1724
+ resetDependencyRecomputations: () => void;
1725
+ } & {
1726
+ memoize: typeof import("reselect").weakMapMemoize;
1727
+ argsMemoize: typeof import("reselect").weakMapMemoize;
1728
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
1729
+ cacheKey: import("../../models").ChartStateCacheKey;
1730
+ }) => number) & {
1731
+ clearCache: () => void;
1732
+ resultsCount: () => number;
1733
+ resetResultsCount: () => void;
1734
+ } & {
1735
+ resultFunc: (resultFuncArgs_0: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) => number;
1736
+ memoizedResultFunc: ((resultFuncArgs_0: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) => number) & {
1737
+ clearCache: () => void;
1738
+ resultsCount: () => number;
1739
+ resetResultsCount: () => void;
1740
+ };
1741
+ lastResult: () => number;
1742
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
1743
+ cacheKey: import("../../models").ChartStateCacheKey;
1744
+ }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) & {
1745
+ clearCache: () => void;
1746
+ resultsCount: () => number;
1747
+ resetResultsCount: () => void;
1748
+ } & {
1749
+ resultFunc: (resultFuncArgs_0: {
1750
+ margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
1751
+ width: number;
1752
+ height: number;
1753
+ propsWidth: number | undefined;
1754
+ propsHeight: number | undefined;
1755
+ }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
1756
+ memoizedResultFunc: ((resultFuncArgs_0: {
1757
+ margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
1758
+ width: number;
1759
+ height: number;
1760
+ propsWidth: number | undefined;
1761
+ propsHeight: number | undefined;
1762
+ }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) & {
1763
+ clearCache: () => void;
1764
+ resultsCount: () => number;
1765
+ resetResultsCount: () => void;
1766
+ };
1767
+ lastResult: () => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
1768
+ dependencies: [import("../../..").ChartRootSelector<import("../../..").UseChartDimensionsSignature>];
1769
+ recomputations: () => number;
1770
+ resetRecomputations: () => void;
1771
+ dependencyRecomputations: () => number;
1772
+ resetDependencyRecomputations: () => void;
1773
+ } & {
1774
+ memoize: typeof import("reselect").weakMapMemoize;
1775
+ argsMemoize: typeof import("reselect").weakMapMemoize;
1776
+ }];
1777
+ recomputations: () => number;
1778
+ resetRecomputations: () => void;
1779
+ dependencyRecomputations: () => number;
1780
+ resetDependencyRecomputations: () => void;
1781
+ } & {
1782
+ memoize: typeof import("reselect").weakMapMemoize;
1783
+ argsMemoize: typeof import("reselect").weakMapMemoize;
1784
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
1785
+ cacheKey: import("../../models").ChartStateCacheKey;
1786
+ }) => number) & {
1787
+ clearCache: () => void;
1788
+ resultsCount: () => number;
1789
+ resetResultsCount: () => void;
1790
+ } & {
1791
+ resultFunc: (resultFuncArgs_0: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) => number;
1792
+ memoizedResultFunc: ((resultFuncArgs_0: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) => number) & {
1793
+ clearCache: () => void;
1794
+ resultsCount: () => number;
1795
+ resetResultsCount: () => void;
1796
+ };
1797
+ lastResult: () => number;
1798
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
1799
+ cacheKey: import("../../models").ChartStateCacheKey;
1800
+ }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) & {
1801
+ clearCache: () => void;
1802
+ resultsCount: () => number;
1803
+ resetResultsCount: () => void;
1804
+ } & {
1805
+ resultFunc: (resultFuncArgs_0: {
1806
+ margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
1807
+ width: number;
1808
+ height: number;
1809
+ propsWidth: number | undefined;
1810
+ propsHeight: number | undefined;
1811
+ }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
1812
+ memoizedResultFunc: ((resultFuncArgs_0: {
1813
+ margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
1814
+ width: number;
1815
+ height: number;
1816
+ propsWidth: number | undefined;
1817
+ propsHeight: number | undefined;
1818
+ }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) & {
1819
+ clearCache: () => void;
1820
+ resultsCount: () => number;
1821
+ resetResultsCount: () => void;
1822
+ };
1823
+ lastResult: () => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
1824
+ dependencies: [import("../../..").ChartRootSelector<import("../../..").UseChartDimensionsSignature>];
1825
+ recomputations: () => number;
1826
+ resetRecomputations: () => void;
1827
+ dependencyRecomputations: () => number;
1828
+ resetDependencyRecomputations: () => void;
1829
+ } & {
1830
+ memoize: typeof import("reselect").weakMapMemoize;
1831
+ argsMemoize: typeof import("reselect").weakMapMemoize;
1832
+ }];
1833
+ recomputations: () => number;
1834
+ resetRecomputations: () => void;
1835
+ dependencyRecomputations: () => number;
1836
+ resetDependencyRecomputations: () => void;
1837
+ } & {
1838
+ memoize: typeof import("reselect").weakMapMemoize;
1839
+ argsMemoize: typeof import("reselect").weakMapMemoize;
1840
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
1841
+ cacheKey: import("../../models").ChartStateCacheKey;
1842
+ }) => number) & {
1843
+ clearCache: () => void;
1844
+ resultsCount: () => number;
1845
+ resetResultsCount: () => void;
1846
+ } & {
1847
+ resultFunc: (resultFuncArgs_0: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) => number;
1848
+ memoizedResultFunc: ((resultFuncArgs_0: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) => number) & {
1849
+ clearCache: () => void;
1850
+ resultsCount: () => number;
1851
+ resetResultsCount: () => void;
1852
+ };
1853
+ lastResult: () => number;
1854
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
1855
+ cacheKey: import("../../models").ChartStateCacheKey;
1856
+ }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) & {
1857
+ clearCache: () => void;
1858
+ resultsCount: () => number;
1859
+ resetResultsCount: () => void;
1860
+ } & {
1861
+ resultFunc: (resultFuncArgs_0: {
1862
+ margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
1863
+ width: number;
1864
+ height: number;
1865
+ propsWidth: number | undefined;
1866
+ propsHeight: number | undefined;
1867
+ }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
1868
+ memoizedResultFunc: ((resultFuncArgs_0: {
1869
+ margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
1870
+ width: number;
1871
+ height: number;
1872
+ propsWidth: number | undefined;
1873
+ propsHeight: number | undefined;
1874
+ }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) & {
1875
+ clearCache: () => void;
1876
+ resultsCount: () => number;
1877
+ resetResultsCount: () => void;
1878
+ };
1879
+ lastResult: () => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
1880
+ dependencies: [import("../../..").ChartRootSelector<import("../../..").UseChartDimensionsSignature>];
1881
+ recomputations: () => number;
1882
+ resetRecomputations: () => void;
1883
+ dependencyRecomputations: () => number;
1884
+ resetDependencyRecomputations: () => void;
1885
+ } & {
1886
+ memoize: typeof import("reselect").weakMapMemoize;
1887
+ argsMemoize: typeof import("reselect").weakMapMemoize;
1888
+ }];
1889
+ recomputations: () => number;
1890
+ resetRecomputations: () => void;
1891
+ dependencyRecomputations: () => number;
1892
+ resetDependencyRecomputations: () => void;
1893
+ } & {
1894
+ memoize: typeof import("reselect").weakMapMemoize;
1895
+ argsMemoize: typeof import("reselect").weakMapMemoize;
1896
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
1897
+ cacheKey: import("../../models").ChartStateCacheKey;
1898
+ }) => number) & {
1899
+ clearCache: () => void;
1900
+ resultsCount: () => number;
1901
+ resetResultsCount: () => void;
1902
+ } & {
1903
+ resultFunc: (resultFuncArgs_0: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) => number;
1904
+ memoizedResultFunc: ((resultFuncArgs_0: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) => number) & {
1905
+ clearCache: () => void;
1906
+ resultsCount: () => number;
1907
+ resetResultsCount: () => void;
1908
+ };
1909
+ lastResult: () => number;
1910
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
1911
+ cacheKey: import("../../models").ChartStateCacheKey;
1912
+ }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) & {
1913
+ clearCache: () => void;
1914
+ resultsCount: () => number;
1915
+ resetResultsCount: () => void;
1916
+ } & {
1917
+ resultFunc: (resultFuncArgs_0: {
1918
+ margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
1919
+ width: number;
1920
+ height: number;
1921
+ propsWidth: number | undefined;
1922
+ propsHeight: number | undefined;
1923
+ }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
1924
+ memoizedResultFunc: ((resultFuncArgs_0: {
1925
+ margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
1926
+ width: number;
1927
+ height: number;
1928
+ propsWidth: number | undefined;
1929
+ propsHeight: number | undefined;
1930
+ }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) & {
1931
+ clearCache: () => void;
1932
+ resultsCount: () => number;
1933
+ resetResultsCount: () => void;
1934
+ };
1935
+ lastResult: () => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
1936
+ dependencies: [import("../../..").ChartRootSelector<import("../../..").UseChartDimensionsSignature>];
1937
+ recomputations: () => number;
1938
+ resetRecomputations: () => void;
1939
+ dependencyRecomputations: () => number;
1940
+ resetDependencyRecomputations: () => void;
1941
+ } & {
1942
+ memoize: typeof import("reselect").weakMapMemoize;
1943
+ argsMemoize: typeof import("reselect").weakMapMemoize;
1944
+ }];
1945
+ recomputations: () => number;
1946
+ resetRecomputations: () => void;
1947
+ dependencyRecomputations: () => number;
1948
+ resetDependencyRecomputations: () => void;
1949
+ } & {
1950
+ memoize: typeof import("reselect").weakMapMemoize;
1951
+ argsMemoize: typeof import("reselect").weakMapMemoize;
1952
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("../useChartCartesianAxis").UseChartCartesianAxisState> & {
1953
+ cacheKey: import("../../models").ChartStateCacheKey;
1954
+ }) => number) & {
1955
+ clearCache: () => void;
1956
+ resultsCount: () => number;
1957
+ resetResultsCount: () => void;
1958
+ } & {
1959
+ resultFunc: (resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) => number;
1960
+ memoizedResultFunc: ((resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) => number) & {
1961
+ clearCache: () => void;
1962
+ resultsCount: () => number;
1963
+ resetResultsCount: () => void;
1964
+ };
1965
+ lastResult: () => number;
1966
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("../useChartCartesianAxis").UseChartCartesianAxisState> & {
1967
+ cacheKey: import("../../models").ChartStateCacheKey;
1968
+ }) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) & {
1969
+ clearCache: () => void;
1970
+ resultsCount: () => number;
1971
+ resetResultsCount: () => void;
1972
+ } & {
1973
+ resultFunc: (resultFuncArgs_0: {
1974
+ x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
1975
+ y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
1976
+ } | undefined) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined;
1977
+ memoizedResultFunc: ((resultFuncArgs_0: {
1978
+ x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
1979
+ y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
1980
+ } | undefined) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) & {
1981
+ clearCache: () => void;
1982
+ resultsCount: () => number;
1983
+ resetResultsCount: () => void;
1984
+ };
1985
+ lastResult: () => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined;
1986
+ dependencies: [(state: import("../../models").ChartState<[], [import("../useChartCartesianAxis").UseChartCartesianAxisSignature]>) => {
1987
+ x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
1988
+ y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
1989
+ } | undefined];
1990
+ recomputations: () => number;
1991
+ resetRecomputations: () => void;
1992
+ dependencyRecomputations: () => number;
1993
+ resetDependencyRecomputations: () => void;
1994
+ } & {
1995
+ memoize: typeof import("reselect").weakMapMemoize;
1996
+ argsMemoize: typeof import("reselect").weakMapMemoize;
1997
+ }];
1998
+ recomputations: () => number;
1999
+ resetRecomputations: () => void;
2000
+ dependencyRecomputations: () => number;
2001
+ resetDependencyRecomputations: () => void;
2002
+ } & {
2003
+ memoize: typeof import("reselect").weakMapMemoize;
2004
+ argsMemoize: typeof import("reselect").weakMapMemoize;
2005
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("../useChartCartesianAxis").UseChartCartesianAxisState> & {
2006
+ cacheKey: import("../../models").ChartStateCacheKey;
2007
+ }) => number) & {
2008
+ clearCache: () => void;
2009
+ resultsCount: () => number;
2010
+ resetResultsCount: () => void;
2011
+ } & {
2012
+ resultFunc: (resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) => number;
2013
+ memoizedResultFunc: ((resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) => number) & {
2014
+ clearCache: () => void;
2015
+ resultsCount: () => number;
2016
+ resetResultsCount: () => void;
2017
+ };
2018
+ lastResult: () => number;
2019
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("../useChartCartesianAxis").UseChartCartesianAxisState> & {
2020
+ cacheKey: import("../../models").ChartStateCacheKey;
2021
+ }) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) & {
2022
+ clearCache: () => void;
2023
+ resultsCount: () => number;
2024
+ resetResultsCount: () => void;
2025
+ } & {
2026
+ resultFunc: (resultFuncArgs_0: {
2027
+ x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
2028
+ y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
2029
+ } | undefined) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined;
2030
+ memoizedResultFunc: ((resultFuncArgs_0: {
2031
+ x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
2032
+ y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
2033
+ } | undefined) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) & {
2034
+ clearCache: () => void;
2035
+ resultsCount: () => number;
2036
+ resetResultsCount: () => void;
2037
+ };
2038
+ lastResult: () => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined;
2039
+ dependencies: [(state: import("../../models").ChartState<[], [import("../useChartCartesianAxis").UseChartCartesianAxisSignature]>) => {
2040
+ x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
2041
+ y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
2042
+ } | undefined];
2043
+ recomputations: () => number;
2044
+ resetRecomputations: () => void;
2045
+ dependencyRecomputations: () => number;
2046
+ resetDependencyRecomputations: () => void;
2047
+ } & {
2048
+ memoize: typeof import("reselect").weakMapMemoize;
2049
+ argsMemoize: typeof import("reselect").weakMapMemoize;
2050
+ }];
2051
+ recomputations: () => number;
2052
+ resetRecomputations: () => void;
2053
+ dependencyRecomputations: () => number;
2054
+ resetDependencyRecomputations: () => void;
2055
+ } & {
2056
+ memoize: typeof import("reselect").weakMapMemoize;
2057
+ argsMemoize: typeof import("reselect").weakMapMemoize;
2058
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("../useChartCartesianAxis").UseChartCartesianAxisState> & {
2059
+ cacheKey: import("../../models").ChartStateCacheKey;
2060
+ }) => number) & {
2061
+ clearCache: () => void;
2062
+ resultsCount: () => number;
2063
+ resetResultsCount: () => void;
2064
+ } & {
2065
+ resultFunc: (resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) => number;
2066
+ memoizedResultFunc: ((resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) => number) & {
2067
+ clearCache: () => void;
2068
+ resultsCount: () => number;
2069
+ resetResultsCount: () => void;
2070
+ };
2071
+ lastResult: () => number;
2072
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("../useChartCartesianAxis").UseChartCartesianAxisState> & {
2073
+ cacheKey: import("../../models").ChartStateCacheKey;
2074
+ }) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) & {
2075
+ clearCache: () => void;
2076
+ resultsCount: () => number;
2077
+ resetResultsCount: () => void;
2078
+ } & {
2079
+ resultFunc: (resultFuncArgs_0: {
2080
+ x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
2081
+ y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
2082
+ } | undefined) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined;
2083
+ memoizedResultFunc: ((resultFuncArgs_0: {
2084
+ x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
2085
+ y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
2086
+ } | undefined) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) & {
2087
+ clearCache: () => void;
2088
+ resultsCount: () => number;
2089
+ resetResultsCount: () => void;
2090
+ };
2091
+ lastResult: () => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined;
2092
+ dependencies: [(state: import("../../models").ChartState<[], [import("../useChartCartesianAxis").UseChartCartesianAxisSignature]>) => {
2093
+ x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
2094
+ y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
2095
+ } | undefined];
2096
+ recomputations: () => number;
2097
+ resetRecomputations: () => void;
2098
+ dependencyRecomputations: () => number;
2099
+ resetDependencyRecomputations: () => void;
2100
+ } & {
2101
+ memoize: typeof import("reselect").weakMapMemoize;
2102
+ argsMemoize: typeof import("reselect").weakMapMemoize;
2103
+ }];
2104
+ recomputations: () => number;
2105
+ resetRecomputations: () => void;
2106
+ dependencyRecomputations: () => number;
2107
+ resetDependencyRecomputations: () => void;
2108
+ } & {
2109
+ memoize: typeof import("reselect").weakMapMemoize;
2110
+ argsMemoize: typeof import("reselect").weakMapMemoize;
2111
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("../useChartCartesianAxis").UseChartCartesianAxisState> & {
2112
+ cacheKey: import("../../models").ChartStateCacheKey;
2113
+ }) => number) & {
2114
+ clearCache: () => void;
2115
+ resultsCount: () => number;
2116
+ resetResultsCount: () => void;
2117
+ } & {
2118
+ resultFunc: (resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) => number;
2119
+ memoizedResultFunc: ((resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) => number) & {
2120
+ clearCache: () => void;
2121
+ resultsCount: () => number;
2122
+ resetResultsCount: () => void;
2123
+ };
2124
+ lastResult: () => number;
2125
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("../useChartCartesianAxis").UseChartCartesianAxisState> & {
2126
+ cacheKey: import("../../models").ChartStateCacheKey;
2127
+ }) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) & {
2128
+ clearCache: () => void;
2129
+ resultsCount: () => number;
2130
+ resetResultsCount: () => void;
2131
+ } & {
2132
+ resultFunc: (resultFuncArgs_0: {
2133
+ x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
2134
+ y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
2135
+ } | undefined) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined;
2136
+ memoizedResultFunc: ((resultFuncArgs_0: {
2137
+ x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
2138
+ y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
2139
+ } | undefined) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) & {
2140
+ clearCache: () => void;
2141
+ resultsCount: () => number;
2142
+ resetResultsCount: () => void;
2143
+ };
2144
+ lastResult: () => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined;
2145
+ dependencies: [(state: import("../../models").ChartState<[], [import("../useChartCartesianAxis").UseChartCartesianAxisSignature]>) => {
2146
+ x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
2147
+ y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
2148
+ } | undefined];
2149
+ recomputations: () => number;
2150
+ resetRecomputations: () => void;
2151
+ dependencyRecomputations: () => number;
2152
+ resetDependencyRecomputations: () => void;
2153
+ } & {
2154
+ memoize: typeof import("reselect").weakMapMemoize;
2155
+ argsMemoize: typeof import("reselect").weakMapMemoize;
2156
+ }];
2157
+ recomputations: () => number;
2158
+ resetRecomputations: () => void;
2159
+ dependencyRecomputations: () => number;
2160
+ resetDependencyRecomputations: () => void;
2161
+ } & {
2162
+ memoize: typeof import("reselect").weakMapMemoize;
2163
+ argsMemoize: typeof import("reselect").weakMapMemoize;
2164
+ }];
2165
+ recomputations: () => number;
2166
+ resetRecomputations: () => void;
2167
+ dependencyRecomputations: () => number;
2168
+ resetDependencyRecomputations: () => void;
2169
+ } & {
2170
+ memoize: typeof import("reselect").weakMapMemoize;
2171
+ argsMemoize: typeof import("reselect").weakMapMemoize;
2172
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
2173
+ cacheKey: import("../../models").ChartStateCacheKey;
2174
+ }) => import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>) & {
2175
+ clearCache: () => void;
2176
+ resultsCount: () => number;
2177
+ resetResultsCount: () => void;
2178
+ } & {
2179
+ resultFunc: (resultFuncArgs_0: {
2180
+ processedSeries: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>;
2181
+ seriesConfig: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>;
2182
+ }) => import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>;
2183
+ memoizedResultFunc: ((resultFuncArgs_0: {
2184
+ processedSeries: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>;
2185
+ seriesConfig: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>;
2186
+ }) => import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>) & {
2187
+ clearCache: () => void;
2188
+ resultsCount: () => number;
2189
+ resetResultsCount: () => void;
2190
+ };
2191
+ lastResult: () => import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>;
2192
+ dependencies: [import("../../..").ChartRootSelector<import("../../..").UseChartSeriesSignature>];
2193
+ recomputations: () => number;
2194
+ resetRecomputations: () => void;
2195
+ dependencyRecomputations: () => number;
2196
+ resetDependencyRecomputations: () => void;
2197
+ } & {
2198
+ memoize: typeof import("reselect").weakMapMemoize;
2199
+ argsMemoize: typeof import("reselect").weakMapMemoize;
2200
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
2201
+ cacheKey: import("../../models").ChartStateCacheKey;
2202
+ }) => import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>) & {
2203
+ clearCache: () => void;
2204
+ resultsCount: () => number;
2205
+ resetResultsCount: () => void;
2206
+ } & {
2207
+ resultFunc: (resultFuncArgs_0: {
2208
+ processedSeries: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>;
2209
+ seriesConfig: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>;
2210
+ }) => import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>;
2211
+ memoizedResultFunc: ((resultFuncArgs_0: {
2212
+ processedSeries: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>;
2213
+ seriesConfig: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>;
2214
+ }) => import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>) & {
2215
+ clearCache: () => void;
2216
+ resultsCount: () => number;
2217
+ resetResultsCount: () => void;
2218
+ };
2219
+ lastResult: () => import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>;
2220
+ dependencies: [import("../../..").ChartRootSelector<import("../../..").UseChartSeriesSignature>];
2221
+ recomputations: () => number;
2222
+ resetRecomputations: () => void;
2223
+ dependencyRecomputations: () => number;
2224
+ resetDependencyRecomputations: () => void;
2225
+ } & {
2226
+ memoize: typeof import("reselect").weakMapMemoize;
2227
+ argsMemoize: typeof import("reselect").weakMapMemoize;
2228
+ }];
2229
+ recomputations: () => number;
2230
+ resetRecomputations: () => void;
2231
+ dependencyRecomputations: () => number;
2232
+ resetDependencyRecomputations: () => void;
2233
+ } & {
2234
+ memoize: typeof import("reselect").weakMapMemoize;
2235
+ argsMemoize: typeof import("reselect").weakMapMemoize;
2236
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("../useChartInteraction/useChartInteraction.types").UseChartInteractionState> & {
2237
+ cacheKey: import("../../models").ChartStateCacheKey;
2238
+ } & Partial<{}> & Partial<import("../useChartCartesianAxis").UseChartCartesianAxisState> & import("./useChartPolarAxis.types").UseChartPolarAxisState) => number | null) & {
2239
+ clearCache: () => void;
2240
+ resultsCount: () => number;
2241
+ resetResultsCount: () => void;
2242
+ } & {
2243
+ resultFunc: (resultFuncArgs_0: number | null, resultFuncArgs_1: number | null, resultFuncArgs_2: {
2244
+ cx: number;
2245
+ cy: number;
2246
+ }, resultFuncArgs_3: {
2247
+ axis: import("./computeAxisValue").DefaultizedAxisConfig<import("../../..").ChartsRotationAxisProps>;
2248
+ axisIds: string[];
2249
+ }) => number | null;
2250
+ memoizedResultFunc: ((resultFuncArgs_0: number | null, resultFuncArgs_1: number | null, resultFuncArgs_2: {
2251
+ cx: number;
2252
+ cy: number;
2253
+ }, resultFuncArgs_3: {
2254
+ axis: import("./computeAxisValue").DefaultizedAxisConfig<import("../../..").ChartsRotationAxisProps>;
2255
+ axisIds: string[];
2256
+ }) => number | null) & {
2257
+ clearCache: () => void;
2258
+ resultsCount: () => number;
2259
+ resetResultsCount: () => void;
2260
+ };
2261
+ lastResult: () => number | null;
2262
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("../useChartInteraction/useChartInteraction.types").UseChartInteractionState> & {
2263
+ cacheKey: import("../../models").ChartStateCacheKey;
2264
+ }) => number | null) & {
2265
+ clearCache: () => void;
2266
+ resultsCount: () => number;
2267
+ resetResultsCount: () => void;
2268
+ } & {
2269
+ resultFunc: (resultFuncArgs_0: import("../useChartInteraction/useChartInteraction.types").Coordinate | null) => number | null;
2270
+ memoizedResultFunc: ((resultFuncArgs_0: import("../useChartInteraction/useChartInteraction.types").Coordinate | null) => number | null) & {
2271
+ clearCache: () => void;
2272
+ resultsCount: () => number;
2273
+ resetResultsCount: () => void;
2274
+ };
2275
+ lastResult: () => number | null;
2276
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("../useChartInteraction/useChartInteraction.types").UseChartInteractionState> & {
2277
+ cacheKey: import("../../models").ChartStateCacheKey;
2278
+ }) => import("../useChartInteraction/useChartInteraction.types").Coordinate | null) & {
2279
+ clearCache: () => void;
2280
+ resultsCount: () => number;
2281
+ resetResultsCount: () => void;
2282
+ } & {
2283
+ resultFunc: (resultFuncArgs_0: {
2284
+ item: null | import("../../..").ChartItemIdentifier<import("../../..").ChartSeriesType>;
2285
+ pointer: import("../useChartInteraction/useChartInteraction.types").Coordinate | null;
2286
+ } | undefined) => import("../useChartInteraction/useChartInteraction.types").Coordinate | null;
2287
+ memoizedResultFunc: ((resultFuncArgs_0: {
2288
+ item: null | import("../../..").ChartItemIdentifier<import("../../..").ChartSeriesType>;
2289
+ pointer: import("../useChartInteraction/useChartInteraction.types").Coordinate | null;
2290
+ } | undefined) => import("../useChartInteraction/useChartInteraction.types").Coordinate | null) & {
2291
+ clearCache: () => void;
2292
+ resultsCount: () => number;
2293
+ resetResultsCount: () => void;
2294
+ };
2295
+ lastResult: () => import("../useChartInteraction/useChartInteraction.types").Coordinate | null;
2296
+ dependencies: [import("../../..").ChartOptionalRootSelector<import("../useChartInteraction").UseChartInteractionSignature>];
2297
+ recomputations: () => number;
2298
+ resetRecomputations: () => void;
2299
+ dependencyRecomputations: () => number;
2300
+ resetDependencyRecomputations: () => void;
2301
+ } & {
2302
+ memoize: typeof import("reselect").weakMapMemoize;
2303
+ argsMemoize: typeof import("reselect").weakMapMemoize;
2304
+ }];
2305
+ recomputations: () => number;
2306
+ resetRecomputations: () => void;
2307
+ dependencyRecomputations: () => number;
2308
+ resetDependencyRecomputations: () => void;
2309
+ } & {
2310
+ memoize: typeof import("reselect").weakMapMemoize;
2311
+ argsMemoize: typeof import("reselect").weakMapMemoize;
2312
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("../useChartInteraction/useChartInteraction.types").UseChartInteractionState> & {
2313
+ cacheKey: import("../../models").ChartStateCacheKey;
2314
+ }) => number | null) & {
2315
+ clearCache: () => void;
2316
+ resultsCount: () => number;
2317
+ resetResultsCount: () => void;
2318
+ } & {
2319
+ resultFunc: (resultFuncArgs_0: import("../useChartInteraction/useChartInteraction.types").Coordinate | null) => number | null;
2320
+ memoizedResultFunc: ((resultFuncArgs_0: import("../useChartInteraction/useChartInteraction.types").Coordinate | null) => number | null) & {
2321
+ clearCache: () => void;
2322
+ resultsCount: () => number;
2323
+ resetResultsCount: () => void;
2324
+ };
2325
+ lastResult: () => number | null;
2326
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("../useChartInteraction/useChartInteraction.types").UseChartInteractionState> & {
2327
+ cacheKey: import("../../models").ChartStateCacheKey;
2328
+ }) => import("../useChartInteraction/useChartInteraction.types").Coordinate | null) & {
2329
+ clearCache: () => void;
2330
+ resultsCount: () => number;
2331
+ resetResultsCount: () => void;
2332
+ } & {
2333
+ resultFunc: (resultFuncArgs_0: {
2334
+ item: null | import("../../..").ChartItemIdentifier<import("../../..").ChartSeriesType>;
2335
+ pointer: import("../useChartInteraction/useChartInteraction.types").Coordinate | null;
2336
+ } | undefined) => import("../useChartInteraction/useChartInteraction.types").Coordinate | null;
2337
+ memoizedResultFunc: ((resultFuncArgs_0: {
2338
+ item: null | import("../../..").ChartItemIdentifier<import("../../..").ChartSeriesType>;
2339
+ pointer: import("../useChartInteraction/useChartInteraction.types").Coordinate | null;
2340
+ } | undefined) => import("../useChartInteraction/useChartInteraction.types").Coordinate | null) & {
2341
+ clearCache: () => void;
2342
+ resultsCount: () => number;
2343
+ resetResultsCount: () => void;
2344
+ };
2345
+ lastResult: () => import("../useChartInteraction/useChartInteraction.types").Coordinate | null;
2346
+ dependencies: [import("../../..").ChartOptionalRootSelector<import("../useChartInteraction").UseChartInteractionSignature>];
2347
+ recomputations: () => number;
2348
+ resetRecomputations: () => void;
2349
+ dependencyRecomputations: () => number;
2350
+ resetDependencyRecomputations: () => void;
2351
+ } & {
2352
+ memoize: typeof import("reselect").weakMapMemoize;
2353
+ argsMemoize: typeof import("reselect").weakMapMemoize;
2354
+ }];
2355
+ recomputations: () => number;
2356
+ resetRecomputations: () => void;
2357
+ dependencyRecomputations: () => number;
2358
+ resetDependencyRecomputations: () => void;
2359
+ } & {
2360
+ memoize: typeof import("reselect").weakMapMemoize;
2361
+ argsMemoize: typeof import("reselect").weakMapMemoize;
2362
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
2363
+ cacheKey: import("../../models").ChartStateCacheKey;
2364
+ } & Partial<import("../useChartCartesianAxis").UseChartCartesianAxisState>) => {
2365
+ cx: number;
2366
+ cy: number;
2367
+ }) & {
2368
+ clearCache: () => void;
2369
+ resultsCount: () => number;
2370
+ resetResultsCount: () => void;
2371
+ } & {
2372
+ resultFunc: (resultFuncArgs_0: {
2373
+ width: number;
2374
+ left: number;
2375
+ right: number;
2376
+ height: number;
2377
+ top: number;
2378
+ bottom: number;
2379
+ }) => {
2380
+ cx: number;
2381
+ cy: number;
2382
+ };
2383
+ memoizedResultFunc: ((resultFuncArgs_0: {
2384
+ width: number;
2385
+ left: number;
2386
+ right: number;
2387
+ height: number;
2388
+ top: number;
2389
+ bottom: number;
2390
+ }) => {
2391
+ cx: number;
2392
+ cy: number;
2393
+ }) & {
2394
+ clearCache: () => void;
2395
+ resultsCount: () => number;
2396
+ resetResultsCount: () => void;
2397
+ };
2398
+ lastResult: () => {
2399
+ cx: number;
2400
+ cy: number;
2401
+ };
2402
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
2403
+ cacheKey: import("../../models").ChartStateCacheKey;
2404
+ } & Partial<import("../useChartCartesianAxis").UseChartCartesianAxisState>) => {
2405
+ width: number;
2406
+ left: number;
2407
+ right: number;
2408
+ height: number;
2409
+ top: number;
2410
+ bottom: number;
2411
+ }) & {
2412
+ clearCache: () => void;
2413
+ resultsCount: () => number;
2414
+ resetResultsCount: () => void;
2415
+ } & {
2416
+ 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) => {
2417
+ width: number;
2418
+ left: number;
2419
+ right: number;
2420
+ height: number;
2421
+ top: number;
2422
+ bottom: number;
2423
+ };
2424
+ 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) => {
2425
+ width: number;
2426
+ left: number;
2427
+ right: number;
2428
+ height: number;
2429
+ top: number;
2430
+ bottom: number;
2431
+ }) & {
2432
+ clearCache: () => void;
2433
+ resultsCount: () => number;
2434
+ resetResultsCount: () => void;
2435
+ };
2436
+ lastResult: () => {
2437
+ width: number;
2438
+ left: number;
2439
+ right: number;
2440
+ height: number;
2441
+ top: number;
2442
+ bottom: number;
2443
+ };
2444
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
2445
+ cacheKey: import("../../models").ChartStateCacheKey;
2446
+ }) => number) & {
2447
+ clearCache: () => void;
2448
+ resultsCount: () => number;
2449
+ resetResultsCount: () => void;
2450
+ } & {
2451
+ resultFunc: (resultFuncArgs_0: {
2452
+ margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
2453
+ width: number;
2454
+ height: number;
2455
+ propsWidth: number | undefined;
2456
+ propsHeight: number | undefined;
2457
+ }) => number;
2458
+ memoizedResultFunc: ((resultFuncArgs_0: {
2459
+ margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
2460
+ width: number;
2461
+ height: number;
2462
+ propsWidth: number | undefined;
2463
+ propsHeight: number | undefined;
2464
+ }) => number) & {
2465
+ clearCache: () => void;
2466
+ resultsCount: () => number;
2467
+ resetResultsCount: () => void;
2468
+ };
2469
+ lastResult: () => number;
2470
+ dependencies: [import("../../..").ChartRootSelector<import("../../..").UseChartDimensionsSignature>];
2471
+ recomputations: () => number;
2472
+ resetRecomputations: () => void;
2473
+ dependencyRecomputations: () => number;
2474
+ resetDependencyRecomputations: () => void;
2475
+ } & {
2476
+ memoize: typeof import("reselect").weakMapMemoize;
2477
+ argsMemoize: typeof import("reselect").weakMapMemoize;
2478
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
2479
+ cacheKey: import("../../models").ChartStateCacheKey;
2480
+ }) => number) & {
2481
+ clearCache: () => void;
2482
+ resultsCount: () => number;
2483
+ resetResultsCount: () => void;
2484
+ } & {
2485
+ resultFunc: (resultFuncArgs_0: {
2486
+ margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
2487
+ width: number;
2488
+ height: number;
2489
+ propsWidth: number | undefined;
2490
+ propsHeight: number | undefined;
2491
+ }) => number;
2492
+ memoizedResultFunc: ((resultFuncArgs_0: {
2493
+ margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
2494
+ width: number;
2495
+ height: number;
2496
+ propsWidth: number | undefined;
2497
+ propsHeight: number | undefined;
2498
+ }) => number) & {
2499
+ clearCache: () => void;
2500
+ resultsCount: () => number;
2501
+ resetResultsCount: () => void;
2502
+ };
2503
+ lastResult: () => number;
2504
+ dependencies: [import("../../..").ChartRootSelector<import("../../..").UseChartDimensionsSignature>];
2505
+ recomputations: () => number;
2506
+ resetRecomputations: () => void;
2507
+ dependencyRecomputations: () => number;
2508
+ resetDependencyRecomputations: () => void;
2509
+ } & {
2510
+ memoize: typeof import("reselect").weakMapMemoize;
2511
+ argsMemoize: typeof import("reselect").weakMapMemoize;
2512
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
2513
+ cacheKey: import("../../models").ChartStateCacheKey;
2514
+ }) => number) & {
2515
+ clearCache: () => void;
2516
+ resultsCount: () => number;
2517
+ resetResultsCount: () => void;
2518
+ } & {
2519
+ resultFunc: (resultFuncArgs_0: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) => number;
2520
+ memoizedResultFunc: ((resultFuncArgs_0: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) => number) & {
2521
+ clearCache: () => void;
2522
+ resultsCount: () => number;
2523
+ resetResultsCount: () => void;
2524
+ };
2525
+ lastResult: () => number;
2526
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
2527
+ cacheKey: import("../../models").ChartStateCacheKey;
2528
+ }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) & {
2529
+ clearCache: () => void;
2530
+ resultsCount: () => number;
2531
+ resetResultsCount: () => void;
2532
+ } & {
2533
+ resultFunc: (resultFuncArgs_0: {
2534
+ margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
2535
+ width: number;
2536
+ height: number;
2537
+ propsWidth: number | undefined;
2538
+ propsHeight: number | undefined;
2539
+ }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
2540
+ memoizedResultFunc: ((resultFuncArgs_0: {
2541
+ margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
2542
+ width: number;
2543
+ height: number;
2544
+ propsWidth: number | undefined;
2545
+ propsHeight: number | undefined;
2546
+ }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) & {
2547
+ clearCache: () => void;
2548
+ resultsCount: () => number;
2549
+ resetResultsCount: () => void;
2550
+ };
2551
+ lastResult: () => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
2552
+ dependencies: [import("../../..").ChartRootSelector<import("../../..").UseChartDimensionsSignature>];
2553
+ recomputations: () => number;
2554
+ resetRecomputations: () => void;
2555
+ dependencyRecomputations: () => number;
2556
+ resetDependencyRecomputations: () => void;
2557
+ } & {
2558
+ memoize: typeof import("reselect").weakMapMemoize;
2559
+ argsMemoize: typeof import("reselect").weakMapMemoize;
2560
+ }];
2561
+ recomputations: () => number;
2562
+ resetRecomputations: () => void;
2563
+ dependencyRecomputations: () => number;
2564
+ resetDependencyRecomputations: () => void;
2565
+ } & {
2566
+ memoize: typeof import("reselect").weakMapMemoize;
2567
+ argsMemoize: typeof import("reselect").weakMapMemoize;
2568
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
2569
+ cacheKey: import("../../models").ChartStateCacheKey;
2570
+ }) => number) & {
2571
+ clearCache: () => void;
2572
+ resultsCount: () => number;
2573
+ resetResultsCount: () => void;
2574
+ } & {
2575
+ resultFunc: (resultFuncArgs_0: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) => number;
2576
+ memoizedResultFunc: ((resultFuncArgs_0: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) => number) & {
2577
+ clearCache: () => void;
2578
+ resultsCount: () => number;
2579
+ resetResultsCount: () => void;
2580
+ };
2581
+ lastResult: () => number;
2582
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
2583
+ cacheKey: import("../../models").ChartStateCacheKey;
2584
+ }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) & {
2585
+ clearCache: () => void;
2586
+ resultsCount: () => number;
2587
+ resetResultsCount: () => void;
2588
+ } & {
2589
+ resultFunc: (resultFuncArgs_0: {
2590
+ margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
2591
+ width: number;
2592
+ height: number;
2593
+ propsWidth: number | undefined;
2594
+ propsHeight: number | undefined;
2595
+ }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
2596
+ memoizedResultFunc: ((resultFuncArgs_0: {
2597
+ margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
2598
+ width: number;
2599
+ height: number;
2600
+ propsWidth: number | undefined;
2601
+ propsHeight: number | undefined;
2602
+ }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) & {
2603
+ clearCache: () => void;
2604
+ resultsCount: () => number;
2605
+ resetResultsCount: () => void;
2606
+ };
2607
+ lastResult: () => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
2608
+ dependencies: [import("../../..").ChartRootSelector<import("../../..").UseChartDimensionsSignature>];
2609
+ recomputations: () => number;
2610
+ resetRecomputations: () => void;
2611
+ dependencyRecomputations: () => number;
2612
+ resetDependencyRecomputations: () => void;
2613
+ } & {
2614
+ memoize: typeof import("reselect").weakMapMemoize;
2615
+ argsMemoize: typeof import("reselect").weakMapMemoize;
2616
+ }];
2617
+ recomputations: () => number;
2618
+ resetRecomputations: () => void;
2619
+ dependencyRecomputations: () => number;
2620
+ resetDependencyRecomputations: () => void;
2621
+ } & {
2622
+ memoize: typeof import("reselect").weakMapMemoize;
2623
+ argsMemoize: typeof import("reselect").weakMapMemoize;
2624
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
2625
+ cacheKey: import("../../models").ChartStateCacheKey;
2626
+ }) => number) & {
2627
+ clearCache: () => void;
2628
+ resultsCount: () => number;
2629
+ resetResultsCount: () => void;
2630
+ } & {
2631
+ resultFunc: (resultFuncArgs_0: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) => number;
2632
+ memoizedResultFunc: ((resultFuncArgs_0: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) => number) & {
2633
+ clearCache: () => void;
2634
+ resultsCount: () => number;
2635
+ resetResultsCount: () => void;
2636
+ };
2637
+ lastResult: () => number;
2638
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
2639
+ cacheKey: import("../../models").ChartStateCacheKey;
2640
+ }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) & {
2641
+ clearCache: () => void;
2642
+ resultsCount: () => number;
2643
+ resetResultsCount: () => void;
2644
+ } & {
2645
+ resultFunc: (resultFuncArgs_0: {
2646
+ margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
2647
+ width: number;
2648
+ height: number;
2649
+ propsWidth: number | undefined;
2650
+ propsHeight: number | undefined;
2651
+ }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
2652
+ memoizedResultFunc: ((resultFuncArgs_0: {
2653
+ margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
2654
+ width: number;
2655
+ height: number;
2656
+ propsWidth: number | undefined;
2657
+ propsHeight: number | undefined;
2658
+ }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) & {
2659
+ clearCache: () => void;
2660
+ resultsCount: () => number;
2661
+ resetResultsCount: () => void;
2662
+ };
2663
+ lastResult: () => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
2664
+ dependencies: [import("../../..").ChartRootSelector<import("../../..").UseChartDimensionsSignature>];
2665
+ recomputations: () => number;
2666
+ resetRecomputations: () => void;
2667
+ dependencyRecomputations: () => number;
2668
+ resetDependencyRecomputations: () => void;
2669
+ } & {
2670
+ memoize: typeof import("reselect").weakMapMemoize;
2671
+ argsMemoize: typeof import("reselect").weakMapMemoize;
2672
+ }];
2673
+ recomputations: () => number;
2674
+ resetRecomputations: () => void;
2675
+ dependencyRecomputations: () => number;
2676
+ resetDependencyRecomputations: () => void;
2677
+ } & {
2678
+ memoize: typeof import("reselect").weakMapMemoize;
2679
+ argsMemoize: typeof import("reselect").weakMapMemoize;
2680
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
2681
+ cacheKey: import("../../models").ChartStateCacheKey;
2682
+ }) => number) & {
2683
+ clearCache: () => void;
2684
+ resultsCount: () => number;
2685
+ resetResultsCount: () => void;
2686
+ } & {
2687
+ resultFunc: (resultFuncArgs_0: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) => number;
2688
+ memoizedResultFunc: ((resultFuncArgs_0: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) => number) & {
2689
+ clearCache: () => void;
2690
+ resultsCount: () => number;
2691
+ resetResultsCount: () => void;
2692
+ };
2693
+ lastResult: () => number;
2694
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
2695
+ cacheKey: import("../../models").ChartStateCacheKey;
2696
+ }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) & {
2697
+ clearCache: () => void;
2698
+ resultsCount: () => number;
2699
+ resetResultsCount: () => void;
2700
+ } & {
2701
+ resultFunc: (resultFuncArgs_0: {
2702
+ margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
2703
+ width: number;
2704
+ height: number;
2705
+ propsWidth: number | undefined;
2706
+ propsHeight: number | undefined;
2707
+ }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
2708
+ memoizedResultFunc: ((resultFuncArgs_0: {
2709
+ margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
2710
+ width: number;
2711
+ height: number;
2712
+ propsWidth: number | undefined;
2713
+ propsHeight: number | undefined;
2714
+ }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) & {
2715
+ clearCache: () => void;
2716
+ resultsCount: () => number;
2717
+ resetResultsCount: () => void;
2718
+ };
2719
+ lastResult: () => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
2720
+ dependencies: [import("../../..").ChartRootSelector<import("../../..").UseChartDimensionsSignature>];
2721
+ recomputations: () => number;
2722
+ resetRecomputations: () => void;
2723
+ dependencyRecomputations: () => number;
2724
+ resetDependencyRecomputations: () => void;
2725
+ } & {
2726
+ memoize: typeof import("reselect").weakMapMemoize;
2727
+ argsMemoize: typeof import("reselect").weakMapMemoize;
2728
+ }];
2729
+ recomputations: () => number;
2730
+ resetRecomputations: () => void;
2731
+ dependencyRecomputations: () => number;
2732
+ resetDependencyRecomputations: () => void;
2733
+ } & {
2734
+ memoize: typeof import("reselect").weakMapMemoize;
2735
+ argsMemoize: typeof import("reselect").weakMapMemoize;
2736
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("../useChartCartesianAxis").UseChartCartesianAxisState> & {
2737
+ cacheKey: import("../../models").ChartStateCacheKey;
2738
+ }) => number) & {
2739
+ clearCache: () => void;
2740
+ resultsCount: () => number;
2741
+ resetResultsCount: () => void;
2742
+ } & {
2743
+ resultFunc: (resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) => number;
2744
+ memoizedResultFunc: ((resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) => number) & {
2745
+ clearCache: () => void;
2746
+ resultsCount: () => number;
2747
+ resetResultsCount: () => void;
2748
+ };
2749
+ lastResult: () => number;
2750
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("../useChartCartesianAxis").UseChartCartesianAxisState> & {
2751
+ cacheKey: import("../../models").ChartStateCacheKey;
2752
+ }) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) & {
2753
+ clearCache: () => void;
2754
+ resultsCount: () => number;
2755
+ resetResultsCount: () => void;
2756
+ } & {
2757
+ resultFunc: (resultFuncArgs_0: {
2758
+ x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
2759
+ y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
2760
+ } | undefined) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined;
2761
+ memoizedResultFunc: ((resultFuncArgs_0: {
2762
+ x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
2763
+ y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
2764
+ } | undefined) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) & {
2765
+ clearCache: () => void;
2766
+ resultsCount: () => number;
2767
+ resetResultsCount: () => void;
2768
+ };
2769
+ lastResult: () => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined;
2770
+ dependencies: [(state: import("../../models").ChartState<[], [import("../useChartCartesianAxis").UseChartCartesianAxisSignature]>) => {
2771
+ x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
2772
+ y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
2773
+ } | undefined];
2774
+ recomputations: () => number;
2775
+ resetRecomputations: () => void;
2776
+ dependencyRecomputations: () => number;
2777
+ resetDependencyRecomputations: () => void;
2778
+ } & {
2779
+ memoize: typeof import("reselect").weakMapMemoize;
2780
+ argsMemoize: typeof import("reselect").weakMapMemoize;
2781
+ }];
2782
+ recomputations: () => number;
2783
+ resetRecomputations: () => void;
2784
+ dependencyRecomputations: () => number;
2785
+ resetDependencyRecomputations: () => void;
2786
+ } & {
2787
+ memoize: typeof import("reselect").weakMapMemoize;
2788
+ argsMemoize: typeof import("reselect").weakMapMemoize;
2789
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("../useChartCartesianAxis").UseChartCartesianAxisState> & {
2790
+ cacheKey: import("../../models").ChartStateCacheKey;
2791
+ }) => number) & {
2792
+ clearCache: () => void;
2793
+ resultsCount: () => number;
2794
+ resetResultsCount: () => void;
2795
+ } & {
2796
+ resultFunc: (resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) => number;
2797
+ memoizedResultFunc: ((resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) => number) & {
2798
+ clearCache: () => void;
2799
+ resultsCount: () => number;
2800
+ resetResultsCount: () => void;
2801
+ };
2802
+ lastResult: () => number;
2803
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("../useChartCartesianAxis").UseChartCartesianAxisState> & {
2804
+ cacheKey: import("../../models").ChartStateCacheKey;
2805
+ }) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) & {
2806
+ clearCache: () => void;
2807
+ resultsCount: () => number;
2808
+ resetResultsCount: () => void;
2809
+ } & {
2810
+ resultFunc: (resultFuncArgs_0: {
2811
+ x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
2812
+ y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
2813
+ } | undefined) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined;
2814
+ memoizedResultFunc: ((resultFuncArgs_0: {
2815
+ x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
2816
+ y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
2817
+ } | undefined) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) & {
2818
+ clearCache: () => void;
2819
+ resultsCount: () => number;
2820
+ resetResultsCount: () => void;
2821
+ };
2822
+ lastResult: () => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined;
2823
+ dependencies: [(state: import("../../models").ChartState<[], [import("../useChartCartesianAxis").UseChartCartesianAxisSignature]>) => {
2824
+ x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
2825
+ y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
2826
+ } | undefined];
2827
+ recomputations: () => number;
2828
+ resetRecomputations: () => void;
2829
+ dependencyRecomputations: () => number;
2830
+ resetDependencyRecomputations: () => void;
2831
+ } & {
2832
+ memoize: typeof import("reselect").weakMapMemoize;
2833
+ argsMemoize: typeof import("reselect").weakMapMemoize;
2834
+ }];
2835
+ recomputations: () => number;
2836
+ resetRecomputations: () => void;
2837
+ dependencyRecomputations: () => number;
2838
+ resetDependencyRecomputations: () => void;
2839
+ } & {
2840
+ memoize: typeof import("reselect").weakMapMemoize;
2841
+ argsMemoize: typeof import("reselect").weakMapMemoize;
2842
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("../useChartCartesianAxis").UseChartCartesianAxisState> & {
2843
+ cacheKey: import("../../models").ChartStateCacheKey;
2844
+ }) => number) & {
2845
+ clearCache: () => void;
2846
+ resultsCount: () => number;
2847
+ resetResultsCount: () => void;
2848
+ } & {
2849
+ resultFunc: (resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) => number;
2850
+ memoizedResultFunc: ((resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) => number) & {
2851
+ clearCache: () => void;
2852
+ resultsCount: () => number;
2853
+ resetResultsCount: () => void;
2854
+ };
2855
+ lastResult: () => number;
2856
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("../useChartCartesianAxis").UseChartCartesianAxisState> & {
2857
+ cacheKey: import("../../models").ChartStateCacheKey;
2858
+ }) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) & {
2859
+ clearCache: () => void;
2860
+ resultsCount: () => number;
2861
+ resetResultsCount: () => void;
2862
+ } & {
2863
+ resultFunc: (resultFuncArgs_0: {
2864
+ x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
2865
+ y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
2866
+ } | undefined) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined;
2867
+ memoizedResultFunc: ((resultFuncArgs_0: {
2868
+ x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
2869
+ y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
2870
+ } | undefined) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) & {
2871
+ clearCache: () => void;
2872
+ resultsCount: () => number;
2873
+ resetResultsCount: () => void;
2874
+ };
2875
+ lastResult: () => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined;
2876
+ dependencies: [(state: import("../../models").ChartState<[], [import("../useChartCartesianAxis").UseChartCartesianAxisSignature]>) => {
2877
+ x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
2878
+ y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
2879
+ } | undefined];
2880
+ recomputations: () => number;
2881
+ resetRecomputations: () => void;
2882
+ dependencyRecomputations: () => number;
2883
+ resetDependencyRecomputations: () => void;
2884
+ } & {
2885
+ memoize: typeof import("reselect").weakMapMemoize;
2886
+ argsMemoize: typeof import("reselect").weakMapMemoize;
2887
+ }];
2888
+ recomputations: () => number;
2889
+ resetRecomputations: () => void;
2890
+ dependencyRecomputations: () => number;
2891
+ resetDependencyRecomputations: () => void;
2892
+ } & {
2893
+ memoize: typeof import("reselect").weakMapMemoize;
2894
+ argsMemoize: typeof import("reselect").weakMapMemoize;
2895
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("../useChartCartesianAxis").UseChartCartesianAxisState> & {
2896
+ cacheKey: import("../../models").ChartStateCacheKey;
2897
+ }) => number) & {
2898
+ clearCache: () => void;
2899
+ resultsCount: () => number;
2900
+ resetResultsCount: () => void;
2901
+ } & {
2902
+ resultFunc: (resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) => number;
2903
+ memoizedResultFunc: ((resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) => number) & {
2904
+ clearCache: () => void;
2905
+ resultsCount: () => number;
2906
+ resetResultsCount: () => void;
2907
+ };
2908
+ lastResult: () => number;
2909
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("../useChartCartesianAxis").UseChartCartesianAxisState> & {
2910
+ cacheKey: import("../../models").ChartStateCacheKey;
2911
+ }) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) & {
2912
+ clearCache: () => void;
2913
+ resultsCount: () => number;
2914
+ resetResultsCount: () => void;
2915
+ } & {
2916
+ resultFunc: (resultFuncArgs_0: {
2917
+ x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
2918
+ y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
2919
+ } | undefined) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined;
2920
+ memoizedResultFunc: ((resultFuncArgs_0: {
2921
+ x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
2922
+ y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
2923
+ } | undefined) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) & {
2924
+ clearCache: () => void;
2925
+ resultsCount: () => number;
2926
+ resetResultsCount: () => void;
2927
+ };
2928
+ lastResult: () => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined;
2929
+ dependencies: [(state: import("../../models").ChartState<[], [import("../useChartCartesianAxis").UseChartCartesianAxisSignature]>) => {
2930
+ x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
2931
+ y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
2932
+ } | undefined];
2933
+ recomputations: () => number;
2934
+ resetRecomputations: () => void;
2935
+ dependencyRecomputations: () => number;
2936
+ resetDependencyRecomputations: () => void;
2937
+ } & {
2938
+ memoize: typeof import("reselect").weakMapMemoize;
2939
+ argsMemoize: typeof import("reselect").weakMapMemoize;
2940
+ }];
2941
+ recomputations: () => number;
2942
+ resetRecomputations: () => void;
2943
+ dependencyRecomputations: () => number;
2944
+ resetDependencyRecomputations: () => void;
2945
+ } & {
2946
+ memoize: typeof import("reselect").weakMapMemoize;
2947
+ argsMemoize: typeof import("reselect").weakMapMemoize;
2948
+ }];
2949
+ recomputations: () => number;
2950
+ resetRecomputations: () => void;
2951
+ dependencyRecomputations: () => number;
2952
+ resetDependencyRecomputations: () => void;
2953
+ } & {
2954
+ memoize: typeof import("reselect").weakMapMemoize;
2955
+ argsMemoize: typeof import("reselect").weakMapMemoize;
2956
+ }];
2957
+ recomputations: () => number;
2958
+ resetRecomputations: () => void;
2959
+ dependencyRecomputations: () => number;
2960
+ resetDependencyRecomputations: () => void;
2961
+ } & {
2962
+ memoize: typeof import("reselect").weakMapMemoize;
2963
+ argsMemoize: typeof import("reselect").weakMapMemoize;
2964
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("./useChartPolarAxis.types").UseChartPolarAxisState & Partial<{}> & {
2965
+ cacheKey: import("../../models").ChartStateCacheKey;
2966
+ } & Partial<import("../useChartCartesianAxis").UseChartCartesianAxisState>) => {
2967
+ axis: import("./computeAxisValue").DefaultizedAxisConfig<import("../../..").ChartsRotationAxisProps>;
2968
+ axisIds: string[];
2969
+ }) & {
2970
+ clearCache: () => void;
2971
+ resultsCount: () => number;
2972
+ resetResultsCount: () => void;
2973
+ } & {
2974
+ resultFunc: (resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsRotationAxisProps>[], resultFuncArgs_1: {
2975
+ width: number;
2976
+ left: number;
2977
+ right: number;
2978
+ height: number;
2979
+ top: number;
2980
+ bottom: number;
2981
+ }, resultFuncArgs_2: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>, resultFuncArgs_3: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>) => {
2982
+ axis: import("./computeAxisValue").DefaultizedAxisConfig<import("../../..").ChartsRotationAxisProps>;
2983
+ axisIds: string[];
2984
+ };
2985
+ memoizedResultFunc: ((resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsRotationAxisProps>[], resultFuncArgs_1: {
2986
+ width: number;
2987
+ left: number;
2988
+ right: number;
2989
+ height: number;
2990
+ top: number;
2991
+ bottom: number;
2992
+ }, resultFuncArgs_2: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>, resultFuncArgs_3: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>) => {
2993
+ axis: import("./computeAxisValue").DefaultizedAxisConfig<import("../../..").ChartsRotationAxisProps>;
2994
+ axisIds: string[];
2995
+ }) & {
2996
+ clearCache: () => void;
2997
+ resultsCount: () => number;
2998
+ resetResultsCount: () => void;
2999
+ };
3000
+ lastResult: () => {
3001
+ axis: import("./computeAxisValue").DefaultizedAxisConfig<import("../../..").ChartsRotationAxisProps>;
3002
+ axisIds: string[];
3003
+ };
3004
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("./useChartPolarAxis.types").UseChartPolarAxisState & Partial<{}> & {
3005
+ cacheKey: import("../../models").ChartStateCacheKey;
3006
+ }) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsRotationAxisProps>[]) & {
3007
+ clearCache: () => void;
3008
+ resultsCount: () => number;
3009
+ resetResultsCount: () => void;
3010
+ } & {
3011
+ resultFunc: (resultFuncArgs_0: {
3012
+ rotation: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsRotationAxisProps>[];
3013
+ radius: import("../../..").AxisConfig<"linear", any, import("../../..").ChartsRadiusAxisProps>[];
3014
+ }) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsRotationAxisProps>[];
3015
+ memoizedResultFunc: ((resultFuncArgs_0: {
3016
+ rotation: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsRotationAxisProps>[];
3017
+ radius: import("../../..").AxisConfig<"linear", any, import("../../..").ChartsRadiusAxisProps>[];
3018
+ }) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsRotationAxisProps>[]) & {
3019
+ clearCache: () => void;
3020
+ resultsCount: () => number;
3021
+ resetResultsCount: () => void;
3022
+ };
3023
+ lastResult: () => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsRotationAxisProps>[];
3024
+ dependencies: [(state: import("../../models").ChartState<[import("./useChartPolarAxis.types").UseChartPolarAxisSignature]>) => {
3025
+ rotation: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsRotationAxisProps>[];
3026
+ radius: import("../../..").AxisConfig<"linear", any, import("../../..").ChartsRadiusAxisProps>[];
3027
+ }];
3028
+ recomputations: () => number;
3029
+ resetRecomputations: () => void;
3030
+ dependencyRecomputations: () => number;
3031
+ resetDependencyRecomputations: () => void;
3032
+ } & {
3033
+ memoize: typeof import("reselect").weakMapMemoize;
3034
+ argsMemoize: typeof import("reselect").weakMapMemoize;
3035
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
3036
+ cacheKey: import("../../models").ChartStateCacheKey;
3037
+ } & Partial<import("../useChartCartesianAxis").UseChartCartesianAxisState>) => {
3038
+ width: number;
3039
+ left: number;
3040
+ right: number;
3041
+ height: number;
3042
+ top: number;
3043
+ bottom: number;
3044
+ }) & {
3045
+ clearCache: () => void;
3046
+ resultsCount: () => number;
3047
+ resetResultsCount: () => void;
3048
+ } & {
3049
+ 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) => {
3050
+ width: number;
3051
+ left: number;
3052
+ right: number;
3053
+ height: number;
3054
+ top: number;
3055
+ bottom: number;
3056
+ };
3057
+ 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) => {
3058
+ width: number;
3059
+ left: number;
3060
+ right: number;
3061
+ height: number;
3062
+ top: number;
3063
+ bottom: number;
3064
+ }) & {
3065
+ clearCache: () => void;
3066
+ resultsCount: () => number;
3067
+ resetResultsCount: () => void;
3068
+ };
3069
+ lastResult: () => {
3070
+ width: number;
3071
+ left: number;
3072
+ right: number;
3073
+ height: number;
3074
+ top: number;
3075
+ bottom: number;
3076
+ };
3077
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
3078
+ cacheKey: import("../../models").ChartStateCacheKey;
3079
+ }) => number) & {
3080
+ clearCache: () => void;
3081
+ resultsCount: () => number;
3082
+ resetResultsCount: () => void;
3083
+ } & {
3084
+ resultFunc: (resultFuncArgs_0: {
3085
+ margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
3086
+ width: number;
3087
+ height: number;
3088
+ propsWidth: number | undefined;
3089
+ propsHeight: number | undefined;
3090
+ }) => number;
3091
+ memoizedResultFunc: ((resultFuncArgs_0: {
3092
+ margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
3093
+ width: number;
3094
+ height: number;
3095
+ propsWidth: number | undefined;
3096
+ propsHeight: number | undefined;
3097
+ }) => number) & {
3098
+ clearCache: () => void;
3099
+ resultsCount: () => number;
3100
+ resetResultsCount: () => void;
3101
+ };
3102
+ lastResult: () => number;
3103
+ dependencies: [import("../../..").ChartRootSelector<import("../../..").UseChartDimensionsSignature>];
3104
+ recomputations: () => number;
3105
+ resetRecomputations: () => void;
3106
+ dependencyRecomputations: () => number;
3107
+ resetDependencyRecomputations: () => void;
3108
+ } & {
3109
+ memoize: typeof import("reselect").weakMapMemoize;
3110
+ argsMemoize: typeof import("reselect").weakMapMemoize;
3111
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
3112
+ cacheKey: import("../../models").ChartStateCacheKey;
3113
+ }) => number) & {
3114
+ clearCache: () => void;
3115
+ resultsCount: () => number;
3116
+ resetResultsCount: () => void;
3117
+ } & {
3118
+ resultFunc: (resultFuncArgs_0: {
3119
+ margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
3120
+ width: number;
3121
+ height: number;
3122
+ propsWidth: number | undefined;
3123
+ propsHeight: number | undefined;
3124
+ }) => number;
3125
+ memoizedResultFunc: ((resultFuncArgs_0: {
3126
+ margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
3127
+ width: number;
3128
+ height: number;
3129
+ propsWidth: number | undefined;
3130
+ propsHeight: number | undefined;
3131
+ }) => number) & {
3132
+ clearCache: () => void;
3133
+ resultsCount: () => number;
3134
+ resetResultsCount: () => void;
3135
+ };
3136
+ lastResult: () => number;
3137
+ dependencies: [import("../../..").ChartRootSelector<import("../../..").UseChartDimensionsSignature>];
3138
+ recomputations: () => number;
3139
+ resetRecomputations: () => void;
3140
+ dependencyRecomputations: () => number;
3141
+ resetDependencyRecomputations: () => void;
3142
+ } & {
3143
+ memoize: typeof import("reselect").weakMapMemoize;
3144
+ argsMemoize: typeof import("reselect").weakMapMemoize;
3145
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
3146
+ cacheKey: import("../../models").ChartStateCacheKey;
3147
+ }) => number) & {
3148
+ clearCache: () => void;
3149
+ resultsCount: () => number;
3150
+ resetResultsCount: () => void;
3151
+ } & {
3152
+ resultFunc: (resultFuncArgs_0: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) => number;
3153
+ memoizedResultFunc: ((resultFuncArgs_0: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) => number) & {
3154
+ clearCache: () => void;
3155
+ resultsCount: () => number;
3156
+ resetResultsCount: () => void;
3157
+ };
3158
+ lastResult: () => number;
3159
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
3160
+ cacheKey: import("../../models").ChartStateCacheKey;
3161
+ }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) & {
3162
+ clearCache: () => void;
3163
+ resultsCount: () => number;
3164
+ resetResultsCount: () => void;
3165
+ } & {
3166
+ resultFunc: (resultFuncArgs_0: {
3167
+ margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
3168
+ width: number;
3169
+ height: number;
3170
+ propsWidth: number | undefined;
3171
+ propsHeight: number | undefined;
3172
+ }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
3173
+ memoizedResultFunc: ((resultFuncArgs_0: {
3174
+ margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
3175
+ width: number;
3176
+ height: number;
3177
+ propsWidth: number | undefined;
3178
+ propsHeight: number | undefined;
3179
+ }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) & {
3180
+ clearCache: () => void;
3181
+ resultsCount: () => number;
3182
+ resetResultsCount: () => void;
3183
+ };
3184
+ lastResult: () => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
3185
+ dependencies: [import("../../..").ChartRootSelector<import("../../..").UseChartDimensionsSignature>];
3186
+ recomputations: () => number;
3187
+ resetRecomputations: () => void;
3188
+ dependencyRecomputations: () => number;
3189
+ resetDependencyRecomputations: () => void;
3190
+ } & {
3191
+ memoize: typeof import("reselect").weakMapMemoize;
3192
+ argsMemoize: typeof import("reselect").weakMapMemoize;
3193
+ }];
3194
+ recomputations: () => number;
3195
+ resetRecomputations: () => void;
3196
+ dependencyRecomputations: () => number;
3197
+ resetDependencyRecomputations: () => void;
3198
+ } & {
3199
+ memoize: typeof import("reselect").weakMapMemoize;
3200
+ argsMemoize: typeof import("reselect").weakMapMemoize;
3201
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
3202
+ cacheKey: import("../../models").ChartStateCacheKey;
3203
+ }) => number) & {
3204
+ clearCache: () => void;
3205
+ resultsCount: () => number;
3206
+ resetResultsCount: () => void;
3207
+ } & {
3208
+ resultFunc: (resultFuncArgs_0: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) => number;
3209
+ memoizedResultFunc: ((resultFuncArgs_0: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) => number) & {
3210
+ clearCache: () => void;
3211
+ resultsCount: () => number;
3212
+ resetResultsCount: () => void;
3213
+ };
3214
+ lastResult: () => number;
3215
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
3216
+ cacheKey: import("../../models").ChartStateCacheKey;
3217
+ }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) & {
3218
+ clearCache: () => void;
3219
+ resultsCount: () => number;
3220
+ resetResultsCount: () => void;
3221
+ } & {
3222
+ resultFunc: (resultFuncArgs_0: {
3223
+ margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
3224
+ width: number;
3225
+ height: number;
3226
+ propsWidth: number | undefined;
3227
+ propsHeight: number | undefined;
3228
+ }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
3229
+ memoizedResultFunc: ((resultFuncArgs_0: {
3230
+ margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
3231
+ width: number;
3232
+ height: number;
3233
+ propsWidth: number | undefined;
3234
+ propsHeight: number | undefined;
3235
+ }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) & {
3236
+ clearCache: () => void;
3237
+ resultsCount: () => number;
3238
+ resetResultsCount: () => void;
3239
+ };
3240
+ lastResult: () => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
3241
+ dependencies: [import("../../..").ChartRootSelector<import("../../..").UseChartDimensionsSignature>];
3242
+ recomputations: () => number;
3243
+ resetRecomputations: () => void;
3244
+ dependencyRecomputations: () => number;
3245
+ resetDependencyRecomputations: () => void;
3246
+ } & {
3247
+ memoize: typeof import("reselect").weakMapMemoize;
3248
+ argsMemoize: typeof import("reselect").weakMapMemoize;
3249
+ }];
3250
+ recomputations: () => number;
3251
+ resetRecomputations: () => void;
3252
+ dependencyRecomputations: () => number;
3253
+ resetDependencyRecomputations: () => void;
3254
+ } & {
3255
+ memoize: typeof import("reselect").weakMapMemoize;
3256
+ argsMemoize: typeof import("reselect").weakMapMemoize;
3257
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
3258
+ cacheKey: import("../../models").ChartStateCacheKey;
3259
+ }) => number) & {
3260
+ clearCache: () => void;
3261
+ resultsCount: () => number;
3262
+ resetResultsCount: () => void;
3263
+ } & {
3264
+ resultFunc: (resultFuncArgs_0: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) => number;
3265
+ memoizedResultFunc: ((resultFuncArgs_0: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) => number) & {
3266
+ clearCache: () => void;
3267
+ resultsCount: () => number;
3268
+ resetResultsCount: () => void;
3269
+ };
3270
+ lastResult: () => number;
3271
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
3272
+ cacheKey: import("../../models").ChartStateCacheKey;
3273
+ }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) & {
3274
+ clearCache: () => void;
3275
+ resultsCount: () => number;
3276
+ resetResultsCount: () => void;
3277
+ } & {
3278
+ resultFunc: (resultFuncArgs_0: {
3279
+ margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
3280
+ width: number;
3281
+ height: number;
3282
+ propsWidth: number | undefined;
3283
+ propsHeight: number | undefined;
3284
+ }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
3285
+ memoizedResultFunc: ((resultFuncArgs_0: {
3286
+ margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
3287
+ width: number;
3288
+ height: number;
3289
+ propsWidth: number | undefined;
3290
+ propsHeight: number | undefined;
3291
+ }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) & {
3292
+ clearCache: () => void;
3293
+ resultsCount: () => number;
3294
+ resetResultsCount: () => void;
3295
+ };
3296
+ lastResult: () => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
3297
+ dependencies: [import("../../..").ChartRootSelector<import("../../..").UseChartDimensionsSignature>];
3298
+ recomputations: () => number;
3299
+ resetRecomputations: () => void;
3300
+ dependencyRecomputations: () => number;
3301
+ resetDependencyRecomputations: () => void;
3302
+ } & {
3303
+ memoize: typeof import("reselect").weakMapMemoize;
3304
+ argsMemoize: typeof import("reselect").weakMapMemoize;
3305
+ }];
3306
+ recomputations: () => number;
3307
+ resetRecomputations: () => void;
3308
+ dependencyRecomputations: () => number;
3309
+ resetDependencyRecomputations: () => void;
3310
+ } & {
3311
+ memoize: typeof import("reselect").weakMapMemoize;
3312
+ argsMemoize: typeof import("reselect").weakMapMemoize;
3313
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
3314
+ cacheKey: import("../../models").ChartStateCacheKey;
3315
+ }) => number) & {
3316
+ clearCache: () => void;
3317
+ resultsCount: () => number;
3318
+ resetResultsCount: () => void;
3319
+ } & {
3320
+ resultFunc: (resultFuncArgs_0: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) => number;
3321
+ memoizedResultFunc: ((resultFuncArgs_0: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) => number) & {
3322
+ clearCache: () => void;
3323
+ resultsCount: () => number;
3324
+ resetResultsCount: () => void;
3325
+ };
3326
+ lastResult: () => number;
3327
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
3328
+ cacheKey: import("../../models").ChartStateCacheKey;
3329
+ }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) & {
3330
+ clearCache: () => void;
3331
+ resultsCount: () => number;
3332
+ resetResultsCount: () => void;
3333
+ } & {
3334
+ resultFunc: (resultFuncArgs_0: {
3335
+ margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
3336
+ width: number;
3337
+ height: number;
3338
+ propsWidth: number | undefined;
3339
+ propsHeight: number | undefined;
3340
+ }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
3341
+ memoizedResultFunc: ((resultFuncArgs_0: {
3342
+ margin: import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
3343
+ width: number;
3344
+ height: number;
3345
+ propsWidth: number | undefined;
3346
+ propsHeight: number | undefined;
3347
+ }) => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin) & {
3348
+ clearCache: () => void;
3349
+ resultsCount: () => number;
3350
+ resetResultsCount: () => void;
3351
+ };
3352
+ lastResult: () => import("../../corePlugins/useChartDimensions/useChartDimensions.types").ChartMargin;
3353
+ dependencies: [import("../../..").ChartRootSelector<import("../../..").UseChartDimensionsSignature>];
3354
+ recomputations: () => number;
3355
+ resetRecomputations: () => void;
3356
+ dependencyRecomputations: () => number;
3357
+ resetDependencyRecomputations: () => void;
3358
+ } & {
3359
+ memoize: typeof import("reselect").weakMapMemoize;
3360
+ argsMemoize: typeof import("reselect").weakMapMemoize;
3361
+ }];
3362
+ recomputations: () => number;
3363
+ resetRecomputations: () => void;
3364
+ dependencyRecomputations: () => number;
3365
+ resetDependencyRecomputations: () => void;
3366
+ } & {
3367
+ memoize: typeof import("reselect").weakMapMemoize;
3368
+ argsMemoize: typeof import("reselect").weakMapMemoize;
3369
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("../useChartCartesianAxis").UseChartCartesianAxisState> & {
3370
+ cacheKey: import("../../models").ChartStateCacheKey;
3371
+ }) => number) & {
3372
+ clearCache: () => void;
3373
+ resultsCount: () => number;
3374
+ resetResultsCount: () => void;
3375
+ } & {
3376
+ resultFunc: (resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) => number;
3377
+ memoizedResultFunc: ((resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) => number) & {
3378
+ clearCache: () => void;
3379
+ resultsCount: () => number;
3380
+ resetResultsCount: () => void;
3381
+ };
3382
+ lastResult: () => number;
3383
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("../useChartCartesianAxis").UseChartCartesianAxisState> & {
3384
+ cacheKey: import("../../models").ChartStateCacheKey;
3385
+ }) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) & {
3386
+ clearCache: () => void;
3387
+ resultsCount: () => number;
3388
+ resetResultsCount: () => void;
3389
+ } & {
3390
+ resultFunc: (resultFuncArgs_0: {
3391
+ x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
3392
+ y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
3393
+ } | undefined) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined;
3394
+ memoizedResultFunc: ((resultFuncArgs_0: {
3395
+ x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
3396
+ y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
3397
+ } | undefined) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) & {
3398
+ clearCache: () => void;
3399
+ resultsCount: () => number;
3400
+ resetResultsCount: () => void;
3401
+ };
3402
+ lastResult: () => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined;
3403
+ dependencies: [(state: import("../../models").ChartState<[], [import("../useChartCartesianAxis").UseChartCartesianAxisSignature]>) => {
3404
+ x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
3405
+ y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
3406
+ } | undefined];
3407
+ recomputations: () => number;
3408
+ resetRecomputations: () => void;
3409
+ dependencyRecomputations: () => number;
3410
+ resetDependencyRecomputations: () => void;
3411
+ } & {
3412
+ memoize: typeof import("reselect").weakMapMemoize;
3413
+ argsMemoize: typeof import("reselect").weakMapMemoize;
3414
+ }];
3415
+ recomputations: () => number;
3416
+ resetRecomputations: () => void;
3417
+ dependencyRecomputations: () => number;
3418
+ resetDependencyRecomputations: () => void;
3419
+ } & {
3420
+ memoize: typeof import("reselect").weakMapMemoize;
3421
+ argsMemoize: typeof import("reselect").weakMapMemoize;
3422
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("../useChartCartesianAxis").UseChartCartesianAxisState> & {
3423
+ cacheKey: import("../../models").ChartStateCacheKey;
3424
+ }) => number) & {
3425
+ clearCache: () => void;
3426
+ resultsCount: () => number;
3427
+ resetResultsCount: () => void;
3428
+ } & {
3429
+ resultFunc: (resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) => number;
3430
+ memoizedResultFunc: ((resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) => number) & {
3431
+ clearCache: () => void;
3432
+ resultsCount: () => number;
3433
+ resetResultsCount: () => void;
3434
+ };
3435
+ lastResult: () => number;
3436
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("../useChartCartesianAxis").UseChartCartesianAxisState> & {
3437
+ cacheKey: import("../../models").ChartStateCacheKey;
3438
+ }) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) & {
3439
+ clearCache: () => void;
3440
+ resultsCount: () => number;
3441
+ resetResultsCount: () => void;
3442
+ } & {
3443
+ resultFunc: (resultFuncArgs_0: {
3444
+ x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
3445
+ y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
3446
+ } | undefined) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined;
3447
+ memoizedResultFunc: ((resultFuncArgs_0: {
3448
+ x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
3449
+ y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
3450
+ } | undefined) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) & {
3451
+ clearCache: () => void;
3452
+ resultsCount: () => number;
3453
+ resetResultsCount: () => void;
3454
+ };
3455
+ lastResult: () => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined;
3456
+ dependencies: [(state: import("../../models").ChartState<[], [import("../useChartCartesianAxis").UseChartCartesianAxisSignature]>) => {
3457
+ x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
3458
+ y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
3459
+ } | undefined];
3460
+ recomputations: () => number;
3461
+ resetRecomputations: () => void;
3462
+ dependencyRecomputations: () => number;
3463
+ resetDependencyRecomputations: () => void;
3464
+ } & {
3465
+ memoize: typeof import("reselect").weakMapMemoize;
3466
+ argsMemoize: typeof import("reselect").weakMapMemoize;
3467
+ }];
3468
+ recomputations: () => number;
3469
+ resetRecomputations: () => void;
3470
+ dependencyRecomputations: () => number;
3471
+ resetDependencyRecomputations: () => void;
3472
+ } & {
3473
+ memoize: typeof import("reselect").weakMapMemoize;
3474
+ argsMemoize: typeof import("reselect").weakMapMemoize;
3475
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("../useChartCartesianAxis").UseChartCartesianAxisState> & {
3476
+ cacheKey: import("../../models").ChartStateCacheKey;
3477
+ }) => number) & {
3478
+ clearCache: () => void;
3479
+ resultsCount: () => number;
3480
+ resetResultsCount: () => void;
3481
+ } & {
3482
+ resultFunc: (resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) => number;
3483
+ memoizedResultFunc: ((resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) => number) & {
3484
+ clearCache: () => void;
3485
+ resultsCount: () => number;
3486
+ resetResultsCount: () => void;
3487
+ };
3488
+ lastResult: () => number;
3489
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("../useChartCartesianAxis").UseChartCartesianAxisState> & {
3490
+ cacheKey: import("../../models").ChartStateCacheKey;
3491
+ }) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) & {
3492
+ clearCache: () => void;
3493
+ resultsCount: () => number;
3494
+ resetResultsCount: () => void;
3495
+ } & {
3496
+ resultFunc: (resultFuncArgs_0: {
3497
+ x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
3498
+ y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
3499
+ } | undefined) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined;
3500
+ memoizedResultFunc: ((resultFuncArgs_0: {
3501
+ x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
3502
+ y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
3503
+ } | undefined) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined) & {
3504
+ clearCache: () => void;
3505
+ resultsCount: () => number;
3506
+ resetResultsCount: () => void;
3507
+ };
3508
+ lastResult: () => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[] | undefined;
3509
+ dependencies: [(state: import("../../models").ChartState<[], [import("../useChartCartesianAxis").UseChartCartesianAxisSignature]>) => {
3510
+ x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
3511
+ y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
3512
+ } | undefined];
3513
+ recomputations: () => number;
3514
+ resetRecomputations: () => void;
3515
+ dependencyRecomputations: () => number;
3516
+ resetDependencyRecomputations: () => void;
3517
+ } & {
3518
+ memoize: typeof import("reselect").weakMapMemoize;
3519
+ argsMemoize: typeof import("reselect").weakMapMemoize;
3520
+ }];
3521
+ recomputations: () => number;
3522
+ resetRecomputations: () => void;
3523
+ dependencyRecomputations: () => number;
3524
+ resetDependencyRecomputations: () => void;
3525
+ } & {
3526
+ memoize: typeof import("reselect").weakMapMemoize;
3527
+ argsMemoize: typeof import("reselect").weakMapMemoize;
3528
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("../useChartCartesianAxis").UseChartCartesianAxisState> & {
3529
+ cacheKey: import("../../models").ChartStateCacheKey;
3530
+ }) => number) & {
3531
+ clearCache: () => void;
3532
+ resultsCount: () => number;
3533
+ resetResultsCount: () => void;
3534
+ } & {
3535
+ resultFunc: (resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) => number;
3536
+ memoizedResultFunc: ((resultFuncArgs_0: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) => number) & {
3537
+ clearCache: () => void;
3538
+ resultsCount: () => number;
3539
+ resetResultsCount: () => void;
3540
+ };
3541
+ lastResult: () => number;
3542
+ dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<import("../useChartCartesianAxis").UseChartCartesianAxisState> & {
3543
+ cacheKey: import("../../models").ChartStateCacheKey;
3544
+ }) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) & {
3545
+ clearCache: () => void;
3546
+ resultsCount: () => number;
3547
+ resetResultsCount: () => void;
3548
+ } & {
3549
+ resultFunc: (resultFuncArgs_0: {
3550
+ x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
3551
+ y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
3552
+ } | undefined) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined;
3553
+ memoizedResultFunc: ((resultFuncArgs_0: {
3554
+ x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
3555
+ y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
3556
+ } | undefined) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined) & {
3557
+ clearCache: () => void;
3558
+ resultsCount: () => number;
3559
+ resetResultsCount: () => void;
3560
+ };
3561
+ lastResult: () => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[] | undefined;
3562
+ dependencies: [(state: import("../../models").ChartState<[], [import("../useChartCartesianAxis").UseChartCartesianAxisSignature]>) => {
3563
+ x: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsXAxisProps>[];
3564
+ y: import("../../..").AxisConfig<import("../../..").ScaleName, any, import("../../..").ChartsYAxisProps>[];
3565
+ } | undefined];
3566
+ recomputations: () => number;
3567
+ resetRecomputations: () => void;
3568
+ dependencyRecomputations: () => number;
3569
+ resetDependencyRecomputations: () => void;
3570
+ } & {
3571
+ memoize: typeof import("reselect").weakMapMemoize;
3572
+ argsMemoize: typeof import("reselect").weakMapMemoize;
3573
+ }];
3574
+ recomputations: () => number;
3575
+ resetRecomputations: () => void;
3576
+ dependencyRecomputations: () => number;
3577
+ resetDependencyRecomputations: () => void;
3578
+ } & {
3579
+ memoize: typeof import("reselect").weakMapMemoize;
3580
+ argsMemoize: typeof import("reselect").weakMapMemoize;
3581
+ }];
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
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
3590
+ cacheKey: import("../../models").ChartStateCacheKey;
3591
+ }) => import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>) & {
3592
+ clearCache: () => void;
3593
+ resultsCount: () => number;
3594
+ resetResultsCount: () => void;
3595
+ } & {
3596
+ resultFunc: (resultFuncArgs_0: {
3597
+ processedSeries: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>;
3598
+ seriesConfig: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>;
3599
+ }) => import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>;
3600
+ memoizedResultFunc: ((resultFuncArgs_0: {
3601
+ processedSeries: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>;
3602
+ seriesConfig: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>;
3603
+ }) => import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>) & {
3604
+ clearCache: () => void;
3605
+ resultsCount: () => number;
3606
+ resetResultsCount: () => void;
3607
+ };
3608
+ lastResult: () => import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>;
3609
+ dependencies: [import("../../..").ChartRootSelector<import("../../..").UseChartSeriesSignature>];
3610
+ recomputations: () => number;
3611
+ resetRecomputations: () => void;
3612
+ dependencyRecomputations: () => number;
3613
+ resetDependencyRecomputations: () => void;
3614
+ } & {
3615
+ memoize: typeof import("reselect").weakMapMemoize;
3616
+ argsMemoize: typeof import("reselect").weakMapMemoize;
3617
+ }, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
3618
+ cacheKey: import("../../models").ChartStateCacheKey;
3619
+ }) => import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>) & {
3620
+ clearCache: () => void;
3621
+ resultsCount: () => number;
3622
+ resetResultsCount: () => void;
3623
+ } & {
3624
+ resultFunc: (resultFuncArgs_0: {
3625
+ processedSeries: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>;
3626
+ seriesConfig: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>;
3627
+ }) => import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>;
3628
+ memoizedResultFunc: ((resultFuncArgs_0: {
3629
+ processedSeries: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>;
3630
+ seriesConfig: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>;
3631
+ }) => import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>) & {
3632
+ clearCache: () => void;
3633
+ resultsCount: () => number;
3634
+ resetResultsCount: () => void;
3635
+ };
3636
+ lastResult: () => import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>;
3637
+ dependencies: [import("../../..").ChartRootSelector<import("../../..").UseChartSeriesSignature>];
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
+ }];
3654
+ recomputations: () => number;
3655
+ resetRecomputations: () => void;
3656
+ dependencyRecomputations: () => number;
3657
+ resetDependencyRecomputations: () => void;
3658
+ } & {
3659
+ memoize: typeof import("reselect").weakMapMemoize;
3660
+ argsMemoize: typeof import("reselect").weakMapMemoize;
3661
+ }];
3662
+ recomputations: () => number;
3663
+ resetRecomputations: () => void;
3664
+ dependencyRecomputations: () => number;
3665
+ resetDependencyRecomputations: () => void;
3666
+ } & {
3667
+ memoize: typeof import("reselect").weakMapMemoize;
3668
+ argsMemoize: typeof import("reselect").weakMapMemoize;
3669
+ };