@yamada-ui/charts 1.5.6 → 1.5.7-dev-20241110150258

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,3 +1,7 @@
1
+ import * as recharts_types_util_types from 'recharts/types/util/types';
2
+ import * as recharts_types_chart_types from 'recharts/types/chart/types';
3
+ import * as lodash from 'lodash';
4
+ import * as recharts_types_chart_AccessibilityManager from 'recharts/types/chart/AccessibilityManager';
1
5
  import * as recharts_types_chart_generateCategoricalChart from 'recharts/types/chart/generateCategoricalChart';
2
6
  import * as react from 'react';
3
7
  import * as _yamada_ui_utils from '@yamada-ui/utils';
@@ -90,7 +94,327 @@ declare const useRadarChart: ({ data, dataKey, fillOpacity, polarAngleAxisTickFo
90
94
  setHighlightedArea: react.Dispatch<react.SetStateAction<string | null>>;
91
95
  getPolarAngleAxisProps: PropGetter<Recharts.PolarAngleAxisProps, Omit<Recharts.PolarAngleAxisProps, "ref">>;
92
96
  getPolarRadiusAxisProps: PropGetter<Recharts.PolarRadiusAxisProps, Omit<Recharts.PolarRadiusAxisProps, "ref">>;
93
- getRadarChartProps: PropGetter<recharts_types_chart_generateCategoricalChart.CategoricalChartProps, recharts_types_chart_generateCategoricalChart.CategoricalChartProps>;
97
+ getRadarChartProps: PropGetter<Omit<recharts_types_chart_generateCategoricalChart.CategoricalChartProps & react.RefAttributes<{
98
+ readonly eventEmitterSymbol: Symbol;
99
+ clipPathId: string;
100
+ accessibilityManager: recharts_types_chart_AccessibilityManager.AccessibilityManager;
101
+ throttleTriggeredAfterMouseMove: lodash.DebouncedFunc<(e: recharts_types_chart_generateCategoricalChart.MousePointer) => any>;
102
+ container?: HTMLElement;
103
+ componentDidMount(): void;
104
+ displayDefaultTooltip(): void;
105
+ getSnapshotBeforeUpdate(prevProps: Readonly<recharts_types_chart_generateCategoricalChart.CategoricalChartProps>, prevState: Readonly<recharts_types_chart_types.CategoricalChartState>): null;
106
+ componentDidUpdate(prevProps: recharts_types_chart_generateCategoricalChart.CategoricalChartProps): void;
107
+ componentWillUnmount(): void;
108
+ getTooltipEventType(): recharts_types_util_types.TooltipEventType;
109
+ getMouseInfo(event: recharts_types_chart_generateCategoricalChart.MousePointer): {
110
+ xValue: any;
111
+ yValue: any;
112
+ chartX: number;
113
+ chartY: number;
114
+ } | {
115
+ activeTooltipIndex: number;
116
+ activeLabel: any;
117
+ activePayload: any[];
118
+ activeCoordinate: recharts_types_util_types.ChartCoordinate;
119
+ chartX: number;
120
+ chartY: number;
121
+ };
122
+ inRange(x: number, y: number, scale?: number): any;
123
+ parseEventsOfWrapper(): any;
124
+ addListener(): void;
125
+ removeListener(): void;
126
+ handleLegendBBoxUpdate: (box: DOMRect) => void;
127
+ handleReceiveSyncEvent: (cId: string | number, data: recharts_types_chart_types.CategoricalChartState, emitter: Symbol) => void;
128
+ handleBrushChange: ({ startIndex, endIndex }: {
129
+ startIndex: number;
130
+ endIndex: number;
131
+ }) => void;
132
+ handleMouseEnter: (e: react.MouseEvent<Element, MouseEvent>) => void;
133
+ triggeredAfterMouseMove: (e: recharts_types_chart_generateCategoricalChart.MousePointer) => any;
134
+ handleItemMouseEnter: (el: any) => void;
135
+ handleItemMouseLeave: () => void;
136
+ handleMouseMove: (e: recharts_types_chart_generateCategoricalChart.MousePointer & Partial<Omit<react.MouseEvent<Element, MouseEvent>, keyof recharts_types_chart_generateCategoricalChart.MousePointer>>) => void;
137
+ handleMouseLeave: (e: any) => void;
138
+ handleOuterEvent: (e: react.MouseEvent<Element, MouseEvent> | react.TouchEvent<Element>) => void;
139
+ handleClick: (e: react.MouseEvent<Element, MouseEvent>) => void;
140
+ handleMouseDown: (e: react.MouseEvent<Element, MouseEvent> | react.Touch) => void;
141
+ handleMouseUp: (e: react.MouseEvent<Element, MouseEvent> | react.Touch) => void;
142
+ handleTouchMove: (e: react.TouchEvent<Element>) => void;
143
+ handleTouchStart: (e: react.TouchEvent<Element>) => void;
144
+ handleTouchEnd: (e: react.TouchEvent<Element>) => void;
145
+ triggerSyncEvent: (data: recharts_types_chart_types.CategoricalChartState) => void;
146
+ applySyncEvent: (data: recharts_types_chart_types.CategoricalChartState) => void;
147
+ filterFormatItem(item: any, displayName: any, childIndex: any): any;
148
+ renderCursor: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>) => react.JSX.Element;
149
+ renderPolarAxis: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>, displayName: string, index: number) => react.ReactElement<any, string | react.JSXElementConstructor<any>>;
150
+ renderPolarGrid: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>) => react.ReactElement<any, string | react.JSXElementConstructor<any>>;
151
+ renderLegend: () => react.ReactElement<any, string | react.JSXElementConstructor<any>>;
152
+ renderTooltip: () => react.ReactElement<any, string | react.JSXElementConstructor<any>>;
153
+ renderBrush: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>) => react.ReactElement<any, string | react.JSXElementConstructor<any>>;
154
+ renderReferenceElement: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>, displayName: string, index: number) => react.ReactElement<any, string | react.JSXElementConstructor<any>>;
155
+ renderActivePoints: ({ item, activePoint, basePoint, childIndex, isRange }: any) => react.ReactElement<any, string | react.JSXElementConstructor<any>>[];
156
+ renderGraphicChild: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>, displayName: string, index: number) => any[];
157
+ renderCustomized: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>, displayName: string, index: number) => react.ReactElement<any, string | react.JSXElementConstructor<any>>;
158
+ renderClipPath(): react.JSX.Element;
159
+ getXScales(): {
160
+ [x: string]: Function | recharts_types_util_types.ScaleType;
161
+ };
162
+ getYScales(): {
163
+ [x: string]: Function | recharts_types_util_types.ScaleType;
164
+ };
165
+ getXScaleByAxisId(axisId: string): Function | recharts_types_util_types.ScaleType;
166
+ getYScaleByAxisId(axisId: string): Function | recharts_types_util_types.ScaleType;
167
+ getItemByXY(chartXY: {
168
+ x: number;
169
+ y: number;
170
+ }): {
171
+ graphicalItem: any;
172
+ payload: any;
173
+ };
174
+ renderMap: {
175
+ CartesianGrid: {
176
+ handler: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>) => react.ReactElement<any, string | react.JSXElementConstructor<any>>;
177
+ once: boolean;
178
+ };
179
+ ReferenceArea: {
180
+ handler: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>, displayName: string, index: number) => react.ReactElement<any, string | react.JSXElementConstructor<any>>;
181
+ };
182
+ ReferenceLine: {
183
+ handler: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>) => react.ReactElement<any, string | react.JSXElementConstructor<any>>;
184
+ };
185
+ ReferenceDot: {
186
+ handler: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>, displayName: string, index: number) => react.ReactElement<any, string | react.JSXElementConstructor<any>>;
187
+ };
188
+ XAxis: {
189
+ handler: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>) => react.ReactElement<any, string | react.JSXElementConstructor<any>>;
190
+ };
191
+ YAxis: {
192
+ handler: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>) => react.ReactElement<any, string | react.JSXElementConstructor<any>>;
193
+ };
194
+ Brush: {
195
+ handler: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>) => react.ReactElement<any, string | react.JSXElementConstructor<any>>;
196
+ once: boolean;
197
+ };
198
+ Bar: {
199
+ handler: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>, displayName: string, index: number) => any[];
200
+ };
201
+ Line: {
202
+ handler: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>, displayName: string, index: number) => any[];
203
+ };
204
+ Area: {
205
+ handler: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>, displayName: string, index: number) => any[];
206
+ };
207
+ Radar: {
208
+ handler: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>, displayName: string, index: number) => any[];
209
+ };
210
+ RadialBar: {
211
+ handler: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>, displayName: string, index: number) => any[];
212
+ };
213
+ Scatter: {
214
+ handler: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>, displayName: string, index: number) => any[];
215
+ };
216
+ Pie: {
217
+ handler: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>, displayName: string, index: number) => any[];
218
+ };
219
+ Funnel: {
220
+ handler: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>, displayName: string, index: number) => any[];
221
+ };
222
+ Tooltip: {
223
+ handler: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>) => react.JSX.Element;
224
+ once: boolean;
225
+ };
226
+ PolarGrid: {
227
+ handler: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>) => react.ReactElement<any, string | react.JSXElementConstructor<any>>;
228
+ once: boolean;
229
+ };
230
+ PolarAngleAxis: {
231
+ handler: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>, displayName: string, index: number) => react.ReactElement<any, string | react.JSXElementConstructor<any>>;
232
+ };
233
+ PolarRadiusAxis: {
234
+ handler: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>, displayName: string, index: number) => react.ReactElement<any, string | react.JSXElementConstructor<any>>;
235
+ };
236
+ Customized: {
237
+ handler: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>, displayName: string, index: number) => react.ReactElement<any, string | react.JSXElementConstructor<any>>;
238
+ };
239
+ };
240
+ render(): react.JSX.Element;
241
+ context: unknown;
242
+ setState<K extends keyof recharts_types_chart_types.CategoricalChartState>(state: recharts_types_chart_types.CategoricalChartState | ((prevState: Readonly<recharts_types_chart_types.CategoricalChartState>, props: Readonly<recharts_types_chart_generateCategoricalChart.CategoricalChartProps>) => recharts_types_chart_types.CategoricalChartState | Pick<recharts_types_chart_types.CategoricalChartState, K>) | Pick<recharts_types_chart_types.CategoricalChartState, K>, callback?: () => void): void;
243
+ forceUpdate(callback?: () => void): void;
244
+ readonly props: Readonly<recharts_types_chart_generateCategoricalChart.CategoricalChartProps>;
245
+ state: Readonly<recharts_types_chart_types.CategoricalChartState>;
246
+ refs: {
247
+ [key: string]: react.ReactInstance;
248
+ };
249
+ shouldComponentUpdate?(nextProps: Readonly<recharts_types_chart_generateCategoricalChart.CategoricalChartProps>, nextState: Readonly<recharts_types_chart_types.CategoricalChartState>, nextContext: any): boolean;
250
+ componentDidCatch?(error: Error, errorInfo: react.ErrorInfo): void;
251
+ componentWillMount?(): void;
252
+ UNSAFE_componentWillMount?(): void;
253
+ componentWillReceiveProps?(nextProps: Readonly<recharts_types_chart_generateCategoricalChart.CategoricalChartProps>, nextContext: any): void;
254
+ UNSAFE_componentWillReceiveProps?(nextProps: Readonly<recharts_types_chart_generateCategoricalChart.CategoricalChartProps>, nextContext: any): void;
255
+ componentWillUpdate?(nextProps: Readonly<recharts_types_chart_generateCategoricalChart.CategoricalChartProps>, nextState: Readonly<recharts_types_chart_types.CategoricalChartState>, nextContext: any): void;
256
+ UNSAFE_componentWillUpdate?(nextProps: Readonly<recharts_types_chart_generateCategoricalChart.CategoricalChartProps>, nextState: Readonly<recharts_types_chart_types.CategoricalChartState>, nextContext: any): void;
257
+ }>, "ref">, Omit<recharts_types_chart_generateCategoricalChart.CategoricalChartProps & react.RefAttributes<{
258
+ readonly eventEmitterSymbol: Symbol;
259
+ clipPathId: string;
260
+ accessibilityManager: recharts_types_chart_AccessibilityManager.AccessibilityManager;
261
+ throttleTriggeredAfterMouseMove: lodash.DebouncedFunc<(e: recharts_types_chart_generateCategoricalChart.MousePointer) => any>;
262
+ container?: HTMLElement;
263
+ componentDidMount(): void;
264
+ displayDefaultTooltip(): void;
265
+ getSnapshotBeforeUpdate(prevProps: Readonly<recharts_types_chart_generateCategoricalChart.CategoricalChartProps>, prevState: Readonly<recharts_types_chart_types.CategoricalChartState>): null;
266
+ componentDidUpdate(prevProps: recharts_types_chart_generateCategoricalChart.CategoricalChartProps): void;
267
+ componentWillUnmount(): void;
268
+ getTooltipEventType(): recharts_types_util_types.TooltipEventType;
269
+ getMouseInfo(event: recharts_types_chart_generateCategoricalChart.MousePointer): {
270
+ xValue: any;
271
+ yValue: any;
272
+ chartX: number;
273
+ chartY: number;
274
+ } | {
275
+ activeTooltipIndex: number;
276
+ activeLabel: any;
277
+ activePayload: any[];
278
+ activeCoordinate: recharts_types_util_types.ChartCoordinate;
279
+ chartX: number;
280
+ chartY: number;
281
+ };
282
+ inRange(x: number, y: number, scale?: number): any;
283
+ parseEventsOfWrapper(): any;
284
+ addListener(): void;
285
+ removeListener(): void;
286
+ handleLegendBBoxUpdate: (box: DOMRect) => void;
287
+ handleReceiveSyncEvent: (cId: string | number, data: recharts_types_chart_types.CategoricalChartState, emitter: Symbol) => void;
288
+ handleBrushChange: ({ startIndex, endIndex }: {
289
+ startIndex: number;
290
+ endIndex: number;
291
+ }) => void;
292
+ handleMouseEnter: (e: react.MouseEvent<Element, MouseEvent>) => void;
293
+ triggeredAfterMouseMove: (e: recharts_types_chart_generateCategoricalChart.MousePointer) => any;
294
+ handleItemMouseEnter: (el: any) => void;
295
+ handleItemMouseLeave: () => void;
296
+ handleMouseMove: (e: recharts_types_chart_generateCategoricalChart.MousePointer & Partial<Omit<react.MouseEvent<Element, MouseEvent>, keyof recharts_types_chart_generateCategoricalChart.MousePointer>>) => void;
297
+ handleMouseLeave: (e: any) => void;
298
+ handleOuterEvent: (e: react.MouseEvent<Element, MouseEvent> | react.TouchEvent<Element>) => void;
299
+ handleClick: (e: react.MouseEvent<Element, MouseEvent>) => void;
300
+ handleMouseDown: (e: react.MouseEvent<Element, MouseEvent> | react.Touch) => void;
301
+ handleMouseUp: (e: react.MouseEvent<Element, MouseEvent> | react.Touch) => void;
302
+ handleTouchMove: (e: react.TouchEvent<Element>) => void;
303
+ handleTouchStart: (e: react.TouchEvent<Element>) => void;
304
+ handleTouchEnd: (e: react.TouchEvent<Element>) => void;
305
+ triggerSyncEvent: (data: recharts_types_chart_types.CategoricalChartState) => void;
306
+ applySyncEvent: (data: recharts_types_chart_types.CategoricalChartState) => void;
307
+ filterFormatItem(item: any, displayName: any, childIndex: any): any;
308
+ renderCursor: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>) => react.JSX.Element;
309
+ renderPolarAxis: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>, displayName: string, index: number) => react.ReactElement<any, string | react.JSXElementConstructor<any>>;
310
+ renderPolarGrid: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>) => react.ReactElement<any, string | react.JSXElementConstructor<any>>;
311
+ renderLegend: () => react.ReactElement<any, string | react.JSXElementConstructor<any>>;
312
+ renderTooltip: () => react.ReactElement<any, string | react.JSXElementConstructor<any>>;
313
+ renderBrush: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>) => react.ReactElement<any, string | react.JSXElementConstructor<any>>;
314
+ renderReferenceElement: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>, displayName: string, index: number) => react.ReactElement<any, string | react.JSXElementConstructor<any>>;
315
+ renderActivePoints: ({ item, activePoint, basePoint, childIndex, isRange }: any) => react.ReactElement<any, string | react.JSXElementConstructor<any>>[];
316
+ renderGraphicChild: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>, displayName: string, index: number) => any[];
317
+ renderCustomized: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>, displayName: string, index: number) => react.ReactElement<any, string | react.JSXElementConstructor<any>>;
318
+ renderClipPath(): react.JSX.Element;
319
+ getXScales(): {
320
+ [x: string]: Function | recharts_types_util_types.ScaleType;
321
+ };
322
+ getYScales(): {
323
+ [x: string]: Function | recharts_types_util_types.ScaleType;
324
+ };
325
+ getXScaleByAxisId(axisId: string): Function | recharts_types_util_types.ScaleType;
326
+ getYScaleByAxisId(axisId: string): Function | recharts_types_util_types.ScaleType;
327
+ getItemByXY(chartXY: {
328
+ x: number;
329
+ y: number;
330
+ }): {
331
+ graphicalItem: any;
332
+ payload: any;
333
+ };
334
+ renderMap: {
335
+ CartesianGrid: {
336
+ handler: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>) => react.ReactElement<any, string | react.JSXElementConstructor<any>>;
337
+ once: boolean;
338
+ };
339
+ ReferenceArea: {
340
+ handler: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>, displayName: string, index: number) => react.ReactElement<any, string | react.JSXElementConstructor<any>>;
341
+ };
342
+ ReferenceLine: {
343
+ handler: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>) => react.ReactElement<any, string | react.JSXElementConstructor<any>>;
344
+ };
345
+ ReferenceDot: {
346
+ handler: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>, displayName: string, index: number) => react.ReactElement<any, string | react.JSXElementConstructor<any>>;
347
+ };
348
+ XAxis: {
349
+ handler: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>) => react.ReactElement<any, string | react.JSXElementConstructor<any>>;
350
+ };
351
+ YAxis: {
352
+ handler: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>) => react.ReactElement<any, string | react.JSXElementConstructor<any>>;
353
+ };
354
+ Brush: {
355
+ handler: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>) => react.ReactElement<any, string | react.JSXElementConstructor<any>>;
356
+ once: boolean;
357
+ };
358
+ Bar: {
359
+ handler: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>, displayName: string, index: number) => any[];
360
+ };
361
+ Line: {
362
+ handler: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>, displayName: string, index: number) => any[];
363
+ };
364
+ Area: {
365
+ handler: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>, displayName: string, index: number) => any[];
366
+ };
367
+ Radar: {
368
+ handler: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>, displayName: string, index: number) => any[];
369
+ };
370
+ RadialBar: {
371
+ handler: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>, displayName: string, index: number) => any[];
372
+ };
373
+ Scatter: {
374
+ handler: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>, displayName: string, index: number) => any[];
375
+ };
376
+ Pie: {
377
+ handler: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>, displayName: string, index: number) => any[];
378
+ };
379
+ Funnel: {
380
+ handler: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>, displayName: string, index: number) => any[];
381
+ };
382
+ Tooltip: {
383
+ handler: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>) => react.JSX.Element;
384
+ once: boolean;
385
+ };
386
+ PolarGrid: {
387
+ handler: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>) => react.ReactElement<any, string | react.JSXElementConstructor<any>>;
388
+ once: boolean;
389
+ };
390
+ PolarAngleAxis: {
391
+ handler: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>, displayName: string, index: number) => react.ReactElement<any, string | react.JSXElementConstructor<any>>;
392
+ };
393
+ PolarRadiusAxis: {
394
+ handler: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>, displayName: string, index: number) => react.ReactElement<any, string | react.JSXElementConstructor<any>>;
395
+ };
396
+ Customized: {
397
+ handler: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>, displayName: string, index: number) => react.ReactElement<any, string | react.JSXElementConstructor<any>>;
398
+ };
399
+ };
400
+ render(): react.JSX.Element;
401
+ context: unknown;
402
+ setState<K extends keyof recharts_types_chart_types.CategoricalChartState>(state: recharts_types_chart_types.CategoricalChartState | ((prevState: Readonly<recharts_types_chart_types.CategoricalChartState>, props: Readonly<recharts_types_chart_generateCategoricalChart.CategoricalChartProps>) => recharts_types_chart_types.CategoricalChartState | Pick<recharts_types_chart_types.CategoricalChartState, K>) | Pick<recharts_types_chart_types.CategoricalChartState, K>, callback?: () => void): void;
403
+ forceUpdate(callback?: () => void): void;
404
+ readonly props: Readonly<recharts_types_chart_generateCategoricalChart.CategoricalChartProps>;
405
+ state: Readonly<recharts_types_chart_types.CategoricalChartState>;
406
+ refs: {
407
+ [key: string]: react.ReactInstance;
408
+ };
409
+ shouldComponentUpdate?(nextProps: Readonly<recharts_types_chart_generateCategoricalChart.CategoricalChartProps>, nextState: Readonly<recharts_types_chart_types.CategoricalChartState>, nextContext: any): boolean;
410
+ componentDidCatch?(error: Error, errorInfo: react.ErrorInfo): void;
411
+ componentWillMount?(): void;
412
+ UNSAFE_componentWillMount?(): void;
413
+ componentWillReceiveProps?(nextProps: Readonly<recharts_types_chart_generateCategoricalChart.CategoricalChartProps>, nextContext: any): void;
414
+ UNSAFE_componentWillReceiveProps?(nextProps: Readonly<recharts_types_chart_generateCategoricalChart.CategoricalChartProps>, nextContext: any): void;
415
+ componentWillUpdate?(nextProps: Readonly<recharts_types_chart_generateCategoricalChart.CategoricalChartProps>, nextState: Readonly<recharts_types_chart_types.CategoricalChartState>, nextContext: any): void;
416
+ UNSAFE_componentWillUpdate?(nextProps: Readonly<recharts_types_chart_generateCategoricalChart.CategoricalChartProps>, nextState: Readonly<recharts_types_chart_types.CategoricalChartState>, nextContext: any): void;
417
+ }>, "ref">>;
94
418
  getRadarProps: RequiredPropGetter<{
95
419
  index: number;
96
420
  } & Partial<Recharts.RadarProps>, Omit<Recharts.RadarProps, "ref">>;