@mui/x-charts 8.13.0 → 8.14.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (92) hide show
  1. package/BarChart/BarChart.js +44 -36
  2. package/CHANGELOG.md +171 -1
  3. package/ChartContainer/ChartContainer.js +68 -56
  4. package/ChartsTooltip/ChartsTooltipContainer.js +2 -0
  5. package/ChartsXAxis/useAxisTicksProps.d.ts +197 -355
  6. package/ChartsYAxis/useAxisTicksProps.d.ts +197 -355
  7. package/LineChart/LineChart.js +44 -36
  8. package/PieChart/PieArc.d.ts +18 -4
  9. package/PieChart/PieArc.js +11 -5
  10. package/PieChart/PieArcPlot.js +3 -1
  11. package/ScatterChart/ScatterChart.js +44 -36
  12. package/SparkLineChart/SparkLineChart.js +44 -36
  13. package/esm/BarChart/BarChart.js +44 -36
  14. package/esm/ChartContainer/ChartContainer.js +68 -56
  15. package/esm/ChartsTooltip/ChartsTooltipContainer.js +2 -0
  16. package/esm/ChartsXAxis/useAxisTicksProps.d.ts +197 -355
  17. package/esm/ChartsYAxis/useAxisTicksProps.d.ts +197 -355
  18. package/esm/LineChart/LineChart.js +44 -36
  19. package/esm/PieChart/PieArc.d.ts +18 -4
  20. package/esm/PieChart/PieArc.js +11 -5
  21. package/esm/PieChart/PieArcPlot.js +3 -1
  22. package/esm/ScatterChart/ScatterChart.js +44 -36
  23. package/esm/SparkLineChart/SparkLineChart.js +44 -36
  24. package/esm/hooks/animation/useAnimate.js +5 -3
  25. package/esm/hooks/useScale.d.ts +5 -1
  26. package/esm/index.js +1 -1
  27. package/esm/internals/animation/useAnimateInternal.d.ts +1 -1
  28. package/esm/internals/animation/useAnimateInternal.js +1 -1
  29. package/esm/internals/plugins/corePlugins/useChartInteractionListener/useChartInteractionListener.js +8 -8
  30. package/esm/internals/plugins/corePlugins/useChartInteractionListener/useChartInteractionListener.types.d.ts +4 -2
  31. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/computeAxisValue.d.ts +9 -11
  32. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/computeAxisValue.js +4 -28
  33. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/createAxisFilterMapper.d.ts +4 -5
  34. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/createAxisFilterMapper.js +3 -24
  35. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/domain.d.ts +20 -0
  36. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/domain.js +77 -0
  37. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisScale.d.ts +4 -65
  38. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisScale.js +7 -104
  39. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisPreview.selectors.d.ts +3 -3
  40. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisPreview.selectors.js +31 -39
  41. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisRendering.selectors.d.ts +166 -6
  42. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisRendering.selectors.js +158 -47
  43. package/esm/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.js +10 -3
  44. package/esm/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.selectors.d.ts +4 -4
  45. package/esm/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.selectors.js +3 -2
  46. package/esm/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.types.d.ts +6 -0
  47. package/esm/internals/plugins/featurePlugins/useChartKeyboardNavigation/useChartKeyboardNavigation.js +5 -1
  48. package/esm/internals/plugins/featurePlugins/useChartKeyboardNavigation/useChartKeyboardNavigation.selectors.d.ts +9 -1
  49. package/esm/internals/plugins/featurePlugins/useChartKeyboardNavigation/useChartKeyboardNavigation.selectors.js +10 -1
  50. package/esm/internals/plugins/featurePlugins/useChartKeyboardNavigation/useChartKeyboardNavigation.types.d.ts +2 -1
  51. package/esm/internals/plugins/featurePlugins/useChartPolarAxis/computeAxisValue.js +2 -2
  52. package/esm/internals/scaleGuards.d.ts +12 -6
  53. package/esm/internals/symlogScale.js +5 -0
  54. package/esm/locales/enUS.js +4 -4
  55. package/esm/locales/ptBR.js +97 -99
  56. package/esm/models/axis.d.ts +39 -17
  57. package/esm/models/axis.js +3 -0
  58. package/hooks/animation/useAnimate.js +4 -3
  59. package/hooks/useScale.d.ts +5 -1
  60. package/index.js +1 -1
  61. package/internals/animation/useAnimateInternal.d.ts +1 -1
  62. package/internals/animation/useAnimateInternal.js +1 -1
  63. package/internals/plugins/corePlugins/useChartInteractionListener/useChartInteractionListener.js +7 -7
  64. package/internals/plugins/corePlugins/useChartInteractionListener/useChartInteractionListener.types.d.ts +4 -2
  65. package/internals/plugins/featurePlugins/useChartCartesianAxis/computeAxisValue.d.ts +9 -11
  66. package/internals/plugins/featurePlugins/useChartCartesianAxis/computeAxisValue.js +4 -28
  67. package/internals/plugins/featurePlugins/useChartCartesianAxis/createAxisFilterMapper.d.ts +4 -5
  68. package/internals/plugins/featurePlugins/useChartCartesianAxis/createAxisFilterMapper.js +3 -25
  69. package/internals/plugins/featurePlugins/useChartCartesianAxis/domain.d.ts +20 -0
  70. package/internals/plugins/featurePlugins/useChartCartesianAxis/domain.js +84 -0
  71. package/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisScale.d.ts +4 -65
  72. package/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisScale.js +8 -108
  73. package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisPreview.selectors.d.ts +3 -3
  74. package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisPreview.selectors.js +29 -37
  75. package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisRendering.selectors.d.ts +166 -6
  76. package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisRendering.selectors.js +158 -47
  77. package/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.js +10 -3
  78. package/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.selectors.d.ts +4 -4
  79. package/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.selectors.js +3 -2
  80. package/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.types.d.ts +6 -0
  81. package/internals/plugins/featurePlugins/useChartKeyboardNavigation/useChartKeyboardNavigation.js +5 -1
  82. package/internals/plugins/featurePlugins/useChartKeyboardNavigation/useChartKeyboardNavigation.selectors.d.ts +9 -1
  83. package/internals/plugins/featurePlugins/useChartKeyboardNavigation/useChartKeyboardNavigation.selectors.js +11 -2
  84. package/internals/plugins/featurePlugins/useChartKeyboardNavigation/useChartKeyboardNavigation.types.d.ts +2 -1
  85. package/internals/plugins/featurePlugins/useChartPolarAxis/computeAxisValue.js +1 -1
  86. package/internals/scaleGuards.d.ts +12 -6
  87. package/internals/symlogScale.js +5 -0
  88. package/locales/enUS.js +4 -4
  89. package/locales/ptBR.js +97 -99
  90. package/models/axis.d.ts +39 -17
  91. package/models/axis.js +4 -0
  92. package/package.json +6 -6
@@ -1,7 +1,11 @@
1
1
  import { ChartsYAxisProps } from "../models/axis.js";
2
2
  import { ChartsText, ChartsTextProps } from "../ChartsText/index.js";
3
3
  export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
4
- yScale: import("@mui/x-charts-vendor/d3-scale").ScaleTime<number, number, never> | import("@mui/x-charts-vendor/d3-scale").ScaleLinear<number, number, never> | import("@mui/x-charts-vendor/d3-scale").ScaleLogarithmic<number, number, never> | import("@mui/x-charts-vendor/d3-scale").ScaleSymLog<number, number, never> | import("@mui/x-charts-vendor/d3-scale").ScalePower<number, number, never> | import("@mui/x-charts-vendor/d3-scale").ScaleBand<string | number | Date> | import("@mui/x-charts-vendor/d3-scale").ScalePoint<string | number | Date>;
4
+ yScale: import("@mui/x-charts-vendor/d3-scale").ScaleTime<number, number, never> | import("@mui/x-charts-vendor/d3-scale").ScaleLinear<number, number, never> | import("@mui/x-charts-vendor/d3-scale").ScaleLogarithmic<number, number, never> | import("@mui/x-charts-vendor/d3-scale").ScaleSymLog<number, number, never> | import("@mui/x-charts-vendor/d3-scale").ScalePower<number, number, never> | import("@mui/x-charts-vendor/d3-scale").ScaleBand<{
5
+ toString(): string;
6
+ }> | import("@mui/x-charts-vendor/d3-scale").ScalePoint<{
7
+ toString(): string;
8
+ }>;
5
9
  defaultizedProps: {
6
10
  axis?: "y";
7
11
  axisId?: import("../internals/index.js").AxisId;
@@ -29,8 +33,6 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
29
33
  id: import("../internals/index.js").AxisId;
30
34
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
31
35
  dataKey?: string | undefined;
32
- min?: (number | Date) | undefined;
33
- max?: (number | Date) | undefined;
34
36
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
35
37
  hideTooltip?: boolean | undefined;
36
38
  domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
@@ -69,8 +71,6 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
69
71
  id: import("../internals/index.js").AxisId;
70
72
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
71
73
  dataKey?: string | undefined;
72
- min?: (number | Date) | undefined;
73
- max?: (number | Date) | undefined;
74
74
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
75
75
  hideTooltip?: boolean | undefined;
76
76
  domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
@@ -109,8 +109,6 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
109
109
  id: import("../internals/index.js").AxisId;
110
110
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
111
111
  dataKey?: string | undefined;
112
- min?: (number | Date) | undefined;
113
- max?: (number | Date) | undefined;
114
112
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
115
113
  hideTooltip?: boolean | undefined;
116
114
  domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
@@ -120,7 +118,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
120
118
  ignoreTooltip?: boolean | undefined;
121
119
  offset: number;
122
120
  scaleType: "time";
123
- colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<string | number | Date, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<number, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
121
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
124
122
  triggerTooltip?: boolean;
125
123
  } | {
126
124
  axis?: "y";
@@ -149,8 +147,6 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
149
147
  id: import("../internals/index.js").AxisId;
150
148
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
151
149
  dataKey?: string | undefined;
152
- min?: (number | Date) | undefined;
153
- max?: (number | Date) | undefined;
154
150
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
155
151
  hideTooltip?: boolean | undefined;
156
152
  domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
@@ -160,7 +156,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
160
156
  ignoreTooltip?: boolean | undefined;
161
157
  offset: number;
162
158
  scaleType: "time";
163
- colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<string | number | Date, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<number, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
159
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
164
160
  triggerTooltip?: boolean;
165
161
  } | {
166
162
  axis?: "y";
@@ -189,8 +185,6 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
189
185
  id: import("../internals/index.js").AxisId;
190
186
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
191
187
  dataKey?: string | undefined;
192
- min?: (number | Date) | undefined;
193
- max?: (number | Date) | undefined;
194
188
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
195
189
  hideTooltip?: boolean | undefined;
196
190
  domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
@@ -229,8 +223,6 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
229
223
  id: import("../internals/index.js").AxisId;
230
224
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
231
225
  dataKey?: string | undefined;
232
- min?: (number | Date) | undefined;
233
- max?: (number | Date) | undefined;
234
226
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
235
227
  hideTooltip?: boolean | undefined;
236
228
  domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
@@ -269,8 +261,6 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
269
261
  id: import("../internals/index.js").AxisId;
270
262
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
271
263
  dataKey?: string | undefined;
272
- min?: (number | Date) | undefined;
273
- max?: (number | Date) | undefined;
274
264
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
275
265
  hideTooltip?: boolean | undefined;
276
266
  domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
@@ -280,7 +270,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
280
270
  ignoreTooltip?: boolean | undefined;
281
271
  offset: number;
282
272
  scaleType: "time";
283
- colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
273
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
284
274
  triggerTooltip?: boolean;
285
275
  } | {
286
276
  axis?: "y";
@@ -309,8 +299,6 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
309
299
  id: import("../internals/index.js").AxisId;
310
300
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
311
301
  dataKey?: string | undefined;
312
- min?: (number | Date) | undefined;
313
- max?: (number | Date) | undefined;
314
302
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
315
303
  hideTooltip?: boolean | undefined;
316
304
  domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
@@ -320,7 +308,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
320
308
  ignoreTooltip?: boolean | undefined;
321
309
  offset: number;
322
310
  scaleType: "time";
323
- colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
311
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<string | number | Date, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<number, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
324
312
  triggerTooltip?: boolean;
325
313
  } | {
326
314
  axis?: "y";
@@ -349,8 +337,6 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
349
337
  id: import("../internals/index.js").AxisId;
350
338
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
351
339
  dataKey?: string | undefined;
352
- min?: (number | Date) | undefined;
353
- max?: (number | Date) | undefined;
354
340
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
355
341
  hideTooltip?: boolean | undefined;
356
342
  domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
@@ -360,7 +346,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
360
346
  ignoreTooltip?: boolean | undefined;
361
347
  offset: number;
362
348
  scaleType: "time";
363
- colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
349
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<string | number | Date, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<number, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
364
350
  triggerTooltip?: boolean;
365
351
  } | {
366
352
  axis?: "y";
@@ -389,8 +375,6 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
389
375
  id: import("../internals/index.js").AxisId;
390
376
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
391
377
  dataKey?: string | undefined;
392
- min?: (number | Date) | undefined;
393
- max?: (number | Date) | undefined;
394
378
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
395
379
  hideTooltip?: boolean | undefined;
396
380
  domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
@@ -429,8 +413,6 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
429
413
  id: import("../internals/index.js").AxisId;
430
414
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
431
415
  dataKey?: string | undefined;
432
- min?: (number | Date) | undefined;
433
- max?: (number | Date) | undefined;
434
416
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
435
417
  hideTooltip?: boolean | undefined;
436
418
  domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
@@ -469,8 +451,6 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
469
451
  id: import("../internals/index.js").AxisId;
470
452
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
471
453
  dataKey?: string | undefined;
472
- min?: (number | Date) | undefined;
473
- max?: (number | Date) | undefined;
474
454
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
475
455
  hideTooltip?: boolean | undefined;
476
456
  domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
@@ -480,7 +460,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
480
460
  ignoreTooltip?: boolean | undefined;
481
461
  offset: number;
482
462
  scaleType: "linear";
483
- colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<string | number | Date, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<number, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
463
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
484
464
  triggerTooltip?: boolean;
485
465
  } | {
486
466
  axis?: "y";
@@ -509,8 +489,6 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
509
489
  id: import("../internals/index.js").AxisId;
510
490
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
511
491
  dataKey?: string | undefined;
512
- min?: (number | Date) | undefined;
513
- max?: (number | Date) | undefined;
514
492
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
515
493
  hideTooltip?: boolean | undefined;
516
494
  domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
@@ -520,7 +498,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
520
498
  ignoreTooltip?: boolean | undefined;
521
499
  offset: number;
522
500
  scaleType: "linear";
523
- colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<string | number | Date, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<number, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
501
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
524
502
  triggerTooltip?: boolean;
525
503
  } | {
526
504
  axis?: "y";
@@ -549,8 +527,6 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
549
527
  id: import("../internals/index.js").AxisId;
550
528
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
551
529
  dataKey?: string | undefined;
552
- min?: (number | Date) | undefined;
553
- max?: (number | Date) | undefined;
554
530
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
555
531
  hideTooltip?: boolean | undefined;
556
532
  domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
@@ -589,8 +565,6 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
589
565
  id: import("../internals/index.js").AxisId;
590
566
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
591
567
  dataKey?: string | undefined;
592
- min?: (number | Date) | undefined;
593
- max?: (number | Date) | undefined;
594
568
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
595
569
  hideTooltip?: boolean | undefined;
596
570
  domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
@@ -629,8 +603,6 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
629
603
  id: import("../internals/index.js").AxisId;
630
604
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
631
605
  dataKey?: string | undefined;
632
- min?: (number | Date) | undefined;
633
- max?: (number | Date) | undefined;
634
606
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
635
607
  hideTooltip?: boolean | undefined;
636
608
  domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
@@ -640,7 +612,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
640
612
  ignoreTooltip?: boolean | undefined;
641
613
  offset: number;
642
614
  scaleType: "linear";
643
- colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
615
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
644
616
  triggerTooltip?: boolean;
645
617
  } | {
646
618
  axis?: "y";
@@ -669,8 +641,6 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
669
641
  id: import("../internals/index.js").AxisId;
670
642
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
671
643
  dataKey?: string | undefined;
672
- min?: (number | Date) | undefined;
673
- max?: (number | Date) | undefined;
674
644
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
675
645
  hideTooltip?: boolean | undefined;
676
646
  domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
@@ -680,7 +650,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
680
650
  ignoreTooltip?: boolean | undefined;
681
651
  offset: number;
682
652
  scaleType: "linear";
683
- colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
653
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<string | number | Date, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<number, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
684
654
  triggerTooltip?: boolean;
685
655
  } | {
686
656
  axis?: "y";
@@ -709,8 +679,6 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
709
679
  id: import("../internals/index.js").AxisId;
710
680
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
711
681
  dataKey?: string | undefined;
712
- min?: (number | Date) | undefined;
713
- max?: (number | Date) | undefined;
714
682
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
715
683
  hideTooltip?: boolean | undefined;
716
684
  domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
@@ -720,7 +688,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
720
688
  ignoreTooltip?: boolean | undefined;
721
689
  offset: number;
722
690
  scaleType: "linear";
723
- colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
691
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<string | number | Date, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<number, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
724
692
  triggerTooltip?: boolean;
725
693
  } | {
726
694
  axis?: "y";
@@ -749,9 +717,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
749
717
  id: import("../internals/index.js").AxisId;
750
718
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
751
719
  dataKey?: string | undefined;
752
- min?: (number | Date) | undefined;
753
- max?: (number | Date) | undefined;
754
- colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
720
+ colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
755
721
  hideTooltip?: boolean | undefined;
756
722
  domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
757
723
  min: number;
@@ -759,10 +725,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
759
725
  }) | undefined;
760
726
  ignoreTooltip?: boolean | undefined;
761
727
  offset: number;
762
- scaleType: "band";
763
- categoryGapRatio: number;
764
- barGapRatio: number;
765
- groups?: import("../internals/index.js").AxisGroup[];
728
+ scaleType: "log";
766
729
  colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
767
730
  triggerTooltip?: boolean;
768
731
  } | {
@@ -792,9 +755,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
792
755
  id: import("../internals/index.js").AxisId;
793
756
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
794
757
  dataKey?: string | undefined;
795
- min?: (number | Date) | undefined;
796
- max?: (number | Date) | undefined;
797
- colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
758
+ colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
798
759
  hideTooltip?: boolean | undefined;
799
760
  domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
800
761
  min: number;
@@ -802,10 +763,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
802
763
  }) | undefined;
803
764
  ignoreTooltip?: boolean | undefined;
804
765
  offset: number;
805
- scaleType: "band";
806
- categoryGapRatio: number;
807
- barGapRatio: number;
808
- groups?: import("../internals/index.js").AxisGroup[];
766
+ scaleType: "log";
809
767
  colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
810
768
  triggerTooltip?: boolean;
811
769
  } | {
@@ -835,9 +793,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
835
793
  id: import("../internals/index.js").AxisId;
836
794
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
837
795
  dataKey?: string | undefined;
838
- min?: (number | Date) | undefined;
839
- max?: (number | Date) | undefined;
840
- colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
796
+ colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
841
797
  hideTooltip?: boolean | undefined;
842
798
  domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
843
799
  min: number;
@@ -845,11 +801,8 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
845
801
  }) | undefined;
846
802
  ignoreTooltip?: boolean | undefined;
847
803
  offset: number;
848
- scaleType: "band";
849
- categoryGapRatio: number;
850
- barGapRatio: number;
851
- groups?: import("../internals/index.js").AxisGroup[];
852
- colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<string | number | Date, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<number, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
804
+ scaleType: "log";
805
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
853
806
  triggerTooltip?: boolean;
854
807
  } | {
855
808
  axis?: "y";
@@ -878,9 +831,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
878
831
  id: import("../internals/index.js").AxisId;
879
832
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
880
833
  dataKey?: string | undefined;
881
- min?: (number | Date) | undefined;
882
- max?: (number | Date) | undefined;
883
- colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
834
+ colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
884
835
  hideTooltip?: boolean | undefined;
885
836
  domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
886
837
  min: number;
@@ -888,11 +839,8 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
888
839
  }) | undefined;
889
840
  ignoreTooltip?: boolean | undefined;
890
841
  offset: number;
891
- scaleType: "band";
892
- categoryGapRatio: number;
893
- barGapRatio: number;
894
- groups?: import("../internals/index.js").AxisGroup[];
895
- colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<string | number | Date, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<number, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
842
+ scaleType: "log";
843
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
896
844
  triggerTooltip?: boolean;
897
845
  } | {
898
846
  axis?: "y";
@@ -921,9 +869,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
921
869
  id: import("../internals/index.js").AxisId;
922
870
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
923
871
  dataKey?: string | undefined;
924
- min?: (number | Date) | undefined;
925
- max?: (number | Date) | undefined;
926
- colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
872
+ colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
927
873
  hideTooltip?: boolean | undefined;
928
874
  domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
929
875
  min: number;
@@ -931,10 +877,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
931
877
  }) | undefined;
932
878
  ignoreTooltip?: boolean | undefined;
933
879
  offset: number;
934
- scaleType: "band";
935
- categoryGapRatio: number;
936
- barGapRatio: number;
937
- groups?: import("../internals/index.js").AxisGroup[];
880
+ scaleType: "log";
938
881
  colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
939
882
  triggerTooltip?: boolean;
940
883
  } | {
@@ -964,9 +907,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
964
907
  id: import("../internals/index.js").AxisId;
965
908
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
966
909
  dataKey?: string | undefined;
967
- min?: (number | Date) | undefined;
968
- max?: (number | Date) | undefined;
969
- colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
910
+ colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
970
911
  hideTooltip?: boolean | undefined;
971
912
  domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
972
913
  min: number;
@@ -974,10 +915,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
974
915
  }) | undefined;
975
916
  ignoreTooltip?: boolean | undefined;
976
917
  offset: number;
977
- scaleType: "band";
978
- categoryGapRatio: number;
979
- barGapRatio: number;
980
- groups?: import("../internals/index.js").AxisGroup[];
918
+ scaleType: "log";
981
919
  colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
982
920
  triggerTooltip?: boolean;
983
921
  } | {
@@ -1007,9 +945,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
1007
945
  id: import("../internals/index.js").AxisId;
1008
946
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
1009
947
  dataKey?: string | undefined;
1010
- min?: (number | Date) | undefined;
1011
- max?: (number | Date) | undefined;
1012
- colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
948
+ colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
1013
949
  hideTooltip?: boolean | undefined;
1014
950
  domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
1015
951
  min: number;
@@ -1017,11 +953,8 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
1017
953
  }) | undefined;
1018
954
  ignoreTooltip?: boolean | undefined;
1019
955
  offset: number;
1020
- scaleType: "band";
1021
- categoryGapRatio: number;
1022
- barGapRatio: number;
1023
- groups?: import("../internals/index.js").AxisGroup[];
1024
- colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
956
+ scaleType: "log";
957
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
1025
958
  triggerTooltip?: boolean;
1026
959
  } | {
1027
960
  axis?: "y";
@@ -1050,9 +983,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
1050
983
  id: import("../internals/index.js").AxisId;
1051
984
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
1052
985
  dataKey?: string | undefined;
1053
- min?: (number | Date) | undefined;
1054
- max?: (number | Date) | undefined;
1055
- colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
986
+ colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
1056
987
  hideTooltip?: boolean | undefined;
1057
988
  domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
1058
989
  min: number;
@@ -1060,11 +991,8 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
1060
991
  }) | undefined;
1061
992
  ignoreTooltip?: boolean | undefined;
1062
993
  offset: number;
1063
- scaleType: "band";
1064
- categoryGapRatio: number;
1065
- barGapRatio: number;
1066
- groups?: import("../internals/index.js").AxisGroup[];
1067
- colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
994
+ scaleType: "log";
995
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<string | number | Date, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<number, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
1068
996
  triggerTooltip?: boolean;
1069
997
  } | {
1070
998
  axis?: "y";
@@ -1093,9 +1021,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
1093
1021
  id: import("../internals/index.js").AxisId;
1094
1022
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
1095
1023
  dataKey?: string | undefined;
1096
- min?: (number | Date) | undefined;
1097
- max?: (number | Date) | undefined;
1098
- colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
1024
+ colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
1099
1025
  hideTooltip?: boolean | undefined;
1100
1026
  domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
1101
1027
  min: number;
@@ -1103,11 +1029,8 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
1103
1029
  }) | undefined;
1104
1030
  ignoreTooltip?: boolean | undefined;
1105
1031
  offset: number;
1106
- scaleType: "band";
1107
- categoryGapRatio: number;
1108
- barGapRatio: number;
1109
- groups?: import("../internals/index.js").AxisGroup[];
1110
- colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
1032
+ scaleType: "log";
1033
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<string | number | Date, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<number, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
1111
1034
  triggerTooltip?: boolean;
1112
1035
  } | {
1113
1036
  axis?: "y";
@@ -1136,9 +1059,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
1136
1059
  id: import("../internals/index.js").AxisId;
1137
1060
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
1138
1061
  dataKey?: string | undefined;
1139
- min?: (number | Date) | undefined;
1140
- max?: (number | Date) | undefined;
1141
- colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
1062
+ colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
1142
1063
  hideTooltip?: boolean | undefined;
1143
1064
  domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
1144
1065
  min: number;
@@ -1146,8 +1067,8 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
1146
1067
  }) | undefined;
1147
1068
  ignoreTooltip?: boolean | undefined;
1148
1069
  offset: number;
1149
- scaleType: "point";
1150
- groups?: import("../internals/index.js").AxisGroup[];
1070
+ scaleType: "symlog";
1071
+ constant?: number;
1151
1072
  colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
1152
1073
  triggerTooltip?: boolean;
1153
1074
  } | {
@@ -1177,9 +1098,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
1177
1098
  id: import("../internals/index.js").AxisId;
1178
1099
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
1179
1100
  dataKey?: string | undefined;
1180
- min?: (number | Date) | undefined;
1181
- max?: (number | Date) | undefined;
1182
- colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
1101
+ colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
1183
1102
  hideTooltip?: boolean | undefined;
1184
1103
  domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
1185
1104
  min: number;
@@ -1187,8 +1106,8 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
1187
1106
  }) | undefined;
1188
1107
  ignoreTooltip?: boolean | undefined;
1189
1108
  offset: number;
1190
- scaleType: "point";
1191
- groups?: import("../internals/index.js").AxisGroup[];
1109
+ scaleType: "symlog";
1110
+ constant?: number;
1192
1111
  colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
1193
1112
  triggerTooltip?: boolean;
1194
1113
  } | {
@@ -1218,9 +1137,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
1218
1137
  id: import("../internals/index.js").AxisId;
1219
1138
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
1220
1139
  dataKey?: string | undefined;
1221
- min?: (number | Date) | undefined;
1222
- max?: (number | Date) | undefined;
1223
- colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
1140
+ colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
1224
1141
  hideTooltip?: boolean | undefined;
1225
1142
  domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
1226
1143
  min: number;
@@ -1228,9 +1145,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
1228
1145
  }) | undefined;
1229
1146
  ignoreTooltip?: boolean | undefined;
1230
1147
  offset: number;
1231
- scaleType: "point";
1232
- groups?: import("../internals/index.js").AxisGroup[];
1233
- colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<string | number | Date, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<number, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
1148
+ scaleType: "symlog";
1149
+ constant?: number;
1150
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
1234
1151
  triggerTooltip?: boolean;
1235
1152
  } | {
1236
1153
  axis?: "y";
@@ -1259,9 +1176,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
1259
1176
  id: import("../internals/index.js").AxisId;
1260
1177
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
1261
1178
  dataKey?: string | undefined;
1262
- min?: (number | Date) | undefined;
1263
- max?: (number | Date) | undefined;
1264
- colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
1179
+ colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
1265
1180
  hideTooltip?: boolean | undefined;
1266
1181
  domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
1267
1182
  min: number;
@@ -1269,9 +1184,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
1269
1184
  }) | undefined;
1270
1185
  ignoreTooltip?: boolean | undefined;
1271
1186
  offset: number;
1272
- scaleType: "point";
1273
- groups?: import("../internals/index.js").AxisGroup[];
1274
- colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<string | number | Date, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<number, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
1187
+ scaleType: "symlog";
1188
+ constant?: number;
1189
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
1275
1190
  triggerTooltip?: boolean;
1276
1191
  } | {
1277
1192
  axis?: "y";
@@ -1300,9 +1215,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
1300
1215
  id: import("../internals/index.js").AxisId;
1301
1216
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
1302
1217
  dataKey?: string | undefined;
1303
- min?: (number | Date) | undefined;
1304
- max?: (number | Date) | undefined;
1305
- colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
1218
+ colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
1306
1219
  hideTooltip?: boolean | undefined;
1307
1220
  domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
1308
1221
  min: number;
@@ -1310,8 +1223,8 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
1310
1223
  }) | undefined;
1311
1224
  ignoreTooltip?: boolean | undefined;
1312
1225
  offset: number;
1313
- scaleType: "point";
1314
- groups?: import("../internals/index.js").AxisGroup[];
1226
+ scaleType: "symlog";
1227
+ constant?: number;
1315
1228
  colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
1316
1229
  triggerTooltip?: boolean;
1317
1230
  } | {
@@ -1341,9 +1254,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
1341
1254
  id: import("../internals/index.js").AxisId;
1342
1255
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
1343
1256
  dataKey?: string | undefined;
1344
- min?: (number | Date) | undefined;
1345
- max?: (number | Date) | undefined;
1346
- colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
1257
+ colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
1347
1258
  hideTooltip?: boolean | undefined;
1348
1259
  domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
1349
1260
  min: number;
@@ -1351,8 +1262,8 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
1351
1262
  }) | undefined;
1352
1263
  ignoreTooltip?: boolean | undefined;
1353
1264
  offset: number;
1354
- scaleType: "point";
1355
- groups?: import("../internals/index.js").AxisGroup[];
1265
+ scaleType: "symlog";
1266
+ constant?: number;
1356
1267
  colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
1357
1268
  triggerTooltip?: boolean;
1358
1269
  } | {
@@ -1382,9 +1293,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
1382
1293
  id: import("../internals/index.js").AxisId;
1383
1294
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
1384
1295
  dataKey?: string | undefined;
1385
- min?: (number | Date) | undefined;
1386
- max?: (number | Date) | undefined;
1387
- colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
1296
+ colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
1388
1297
  hideTooltip?: boolean | undefined;
1389
1298
  domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
1390
1299
  min: number;
@@ -1392,9 +1301,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
1392
1301
  }) | undefined;
1393
1302
  ignoreTooltip?: boolean | undefined;
1394
1303
  offset: number;
1395
- scaleType: "point";
1396
- groups?: import("../internals/index.js").AxisGroup[];
1397
- colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
1304
+ scaleType: "symlog";
1305
+ constant?: number;
1306
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
1398
1307
  triggerTooltip?: boolean;
1399
1308
  } | {
1400
1309
  axis?: "y";
@@ -1423,9 +1332,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
1423
1332
  id: import("../internals/index.js").AxisId;
1424
1333
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
1425
1334
  dataKey?: string | undefined;
1426
- min?: (number | Date) | undefined;
1427
- max?: (number | Date) | undefined;
1428
- colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
1335
+ colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
1429
1336
  hideTooltip?: boolean | undefined;
1430
1337
  domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
1431
1338
  min: number;
@@ -1433,9 +1340,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
1433
1340
  }) | undefined;
1434
1341
  ignoreTooltip?: boolean | undefined;
1435
1342
  offset: number;
1436
- scaleType: "point";
1437
- groups?: import("../internals/index.js").AxisGroup[];
1438
- colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
1343
+ scaleType: "symlog";
1344
+ constant?: number;
1345
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<string | number | Date, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<number, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
1439
1346
  triggerTooltip?: boolean;
1440
1347
  } | {
1441
1348
  axis?: "y";
@@ -1464,9 +1371,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
1464
1371
  id: import("../internals/index.js").AxisId;
1465
1372
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
1466
1373
  dataKey?: string | undefined;
1467
- min?: (number | Date) | undefined;
1468
- max?: (number | Date) | undefined;
1469
- colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
1374
+ colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
1470
1375
  hideTooltip?: boolean | undefined;
1471
1376
  domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
1472
1377
  min: number;
@@ -1474,9 +1379,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
1474
1379
  }) | undefined;
1475
1380
  ignoreTooltip?: boolean | undefined;
1476
1381
  offset: number;
1477
- scaleType: "point";
1478
- groups?: import("../internals/index.js").AxisGroup[];
1479
- colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
1382
+ scaleType: "symlog";
1383
+ constant?: number;
1384
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<string | number | Date, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<number, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
1480
1385
  triggerTooltip?: boolean;
1481
1386
  } | {
1482
1387
  axis?: "y";
@@ -1505,8 +1410,6 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
1505
1410
  id: import("../internals/index.js").AxisId;
1506
1411
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
1507
1412
  dataKey?: string | undefined;
1508
- min?: (number | Date) | undefined;
1509
- max?: (number | Date) | undefined;
1510
1413
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
1511
1414
  hideTooltip?: boolean | undefined;
1512
1415
  domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
@@ -1515,7 +1418,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
1515
1418
  }) | undefined;
1516
1419
  ignoreTooltip?: boolean | undefined;
1517
1420
  offset: number;
1518
- scaleType: "log";
1421
+ scaleType: "pow";
1519
1422
  colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
1520
1423
  triggerTooltip?: boolean;
1521
1424
  } | {
@@ -1545,8 +1448,6 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
1545
1448
  id: import("../internals/index.js").AxisId;
1546
1449
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
1547
1450
  dataKey?: string | undefined;
1548
- min?: (number | Date) | undefined;
1549
- max?: (number | Date) | undefined;
1550
1451
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
1551
1452
  hideTooltip?: boolean | undefined;
1552
1453
  domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
@@ -1555,7 +1456,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
1555
1456
  }) | undefined;
1556
1457
  ignoreTooltip?: boolean | undefined;
1557
1458
  offset: number;
1558
- scaleType: "log";
1459
+ scaleType: "pow";
1559
1460
  colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
1560
1461
  triggerTooltip?: boolean;
1561
1462
  } | {
@@ -1585,8 +1486,6 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
1585
1486
  id: import("../internals/index.js").AxisId;
1586
1487
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
1587
1488
  dataKey?: string | undefined;
1588
- min?: (number | Date) | undefined;
1589
- max?: (number | Date) | undefined;
1590
1489
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
1591
1490
  hideTooltip?: boolean | undefined;
1592
1491
  domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
@@ -1595,8 +1494,8 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
1595
1494
  }) | undefined;
1596
1495
  ignoreTooltip?: boolean | undefined;
1597
1496
  offset: number;
1598
- scaleType: "log";
1599
- colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<string | number | Date, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<number, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
1497
+ scaleType: "pow";
1498
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
1600
1499
  triggerTooltip?: boolean;
1601
1500
  } | {
1602
1501
  axis?: "y";
@@ -1625,8 +1524,6 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
1625
1524
  id: import("../internals/index.js").AxisId;
1626
1525
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
1627
1526
  dataKey?: string | undefined;
1628
- min?: (number | Date) | undefined;
1629
- max?: (number | Date) | undefined;
1630
1527
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
1631
1528
  hideTooltip?: boolean | undefined;
1632
1529
  domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
@@ -1635,8 +1532,8 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
1635
1532
  }) | undefined;
1636
1533
  ignoreTooltip?: boolean | undefined;
1637
1534
  offset: number;
1638
- scaleType: "log";
1639
- colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<string | number | Date, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<number, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
1535
+ scaleType: "pow";
1536
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
1640
1537
  triggerTooltip?: boolean;
1641
1538
  } | {
1642
1539
  axis?: "y";
@@ -1665,8 +1562,6 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
1665
1562
  id: import("../internals/index.js").AxisId;
1666
1563
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
1667
1564
  dataKey?: string | undefined;
1668
- min?: (number | Date) | undefined;
1669
- max?: (number | Date) | undefined;
1670
1565
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
1671
1566
  hideTooltip?: boolean | undefined;
1672
1567
  domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
@@ -1675,7 +1570,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
1675
1570
  }) | undefined;
1676
1571
  ignoreTooltip?: boolean | undefined;
1677
1572
  offset: number;
1678
- scaleType: "log";
1573
+ scaleType: "pow";
1679
1574
  colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
1680
1575
  triggerTooltip?: boolean;
1681
1576
  } | {
@@ -1705,8 +1600,6 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
1705
1600
  id: import("../internals/index.js").AxisId;
1706
1601
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
1707
1602
  dataKey?: string | undefined;
1708
- min?: (number | Date) | undefined;
1709
- max?: (number | Date) | undefined;
1710
1603
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
1711
1604
  hideTooltip?: boolean | undefined;
1712
1605
  domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
@@ -1715,7 +1608,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
1715
1608
  }) | undefined;
1716
1609
  ignoreTooltip?: boolean | undefined;
1717
1610
  offset: number;
1718
- scaleType: "log";
1611
+ scaleType: "pow";
1719
1612
  colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
1720
1613
  triggerTooltip?: boolean;
1721
1614
  } | {
@@ -1745,8 +1638,6 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
1745
1638
  id: import("../internals/index.js").AxisId;
1746
1639
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
1747
1640
  dataKey?: string | undefined;
1748
- min?: (number | Date) | undefined;
1749
- max?: (number | Date) | undefined;
1750
1641
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
1751
1642
  hideTooltip?: boolean | undefined;
1752
1643
  domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
@@ -1755,8 +1646,8 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
1755
1646
  }) | undefined;
1756
1647
  ignoreTooltip?: boolean | undefined;
1757
1648
  offset: number;
1758
- scaleType: "log";
1759
- colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
1649
+ scaleType: "pow";
1650
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
1760
1651
  triggerTooltip?: boolean;
1761
1652
  } | {
1762
1653
  axis?: "y";
@@ -1785,8 +1676,6 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
1785
1676
  id: import("../internals/index.js").AxisId;
1786
1677
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
1787
1678
  dataKey?: string | undefined;
1788
- min?: (number | Date) | undefined;
1789
- max?: (number | Date) | undefined;
1790
1679
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
1791
1680
  hideTooltip?: boolean | undefined;
1792
1681
  domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
@@ -1795,8 +1684,8 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
1795
1684
  }) | undefined;
1796
1685
  ignoreTooltip?: boolean | undefined;
1797
1686
  offset: number;
1798
- scaleType: "log";
1799
- colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
1687
+ scaleType: "pow";
1688
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<string | number | Date, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<number, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
1800
1689
  triggerTooltip?: boolean;
1801
1690
  } | {
1802
1691
  axis?: "y";
@@ -1825,8 +1714,6 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
1825
1714
  id: import("../internals/index.js").AxisId;
1826
1715
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
1827
1716
  dataKey?: string | undefined;
1828
- min?: (number | Date) | undefined;
1829
- max?: (number | Date) | undefined;
1830
1717
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
1831
1718
  hideTooltip?: boolean | undefined;
1832
1719
  domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
@@ -1835,8 +1722,8 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
1835
1722
  }) | undefined;
1836
1723
  ignoreTooltip?: boolean | undefined;
1837
1724
  offset: number;
1838
- scaleType: "log";
1839
- colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
1725
+ scaleType: "pow";
1726
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<string | number | Date, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<number, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
1840
1727
  triggerTooltip?: boolean;
1841
1728
  } | {
1842
1729
  axis?: "y";
@@ -1865,8 +1752,6 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
1865
1752
  id: import("../internals/index.js").AxisId;
1866
1753
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
1867
1754
  dataKey?: string | undefined;
1868
- min?: (number | Date) | undefined;
1869
- max?: (number | Date) | undefined;
1870
1755
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
1871
1756
  hideTooltip?: boolean | undefined;
1872
1757
  domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
@@ -1875,8 +1760,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
1875
1760
  }) | undefined;
1876
1761
  ignoreTooltip?: boolean | undefined;
1877
1762
  offset: number;
1878
- scaleType: "symlog";
1879
- constant?: number;
1763
+ scaleType: "sqrt";
1880
1764
  colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
1881
1765
  triggerTooltip?: boolean;
1882
1766
  } | {
@@ -1906,8 +1790,6 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
1906
1790
  id: import("../internals/index.js").AxisId;
1907
1791
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
1908
1792
  dataKey?: string | undefined;
1909
- min?: (number | Date) | undefined;
1910
- max?: (number | Date) | undefined;
1911
1793
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
1912
1794
  hideTooltip?: boolean | undefined;
1913
1795
  domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
@@ -1916,8 +1798,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
1916
1798
  }) | undefined;
1917
1799
  ignoreTooltip?: boolean | undefined;
1918
1800
  offset: number;
1919
- scaleType: "symlog";
1920
- constant?: number;
1801
+ scaleType: "sqrt";
1921
1802
  colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
1922
1803
  triggerTooltip?: boolean;
1923
1804
  } | {
@@ -1947,8 +1828,6 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
1947
1828
  id: import("../internals/index.js").AxisId;
1948
1829
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
1949
1830
  dataKey?: string | undefined;
1950
- min?: (number | Date) | undefined;
1951
- max?: (number | Date) | undefined;
1952
1831
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
1953
1832
  hideTooltip?: boolean | undefined;
1954
1833
  domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
@@ -1957,9 +1836,8 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
1957
1836
  }) | undefined;
1958
1837
  ignoreTooltip?: boolean | undefined;
1959
1838
  offset: number;
1960
- scaleType: "symlog";
1961
- constant?: number;
1962
- colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<string | number | Date, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<number, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
1839
+ scaleType: "sqrt";
1840
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
1963
1841
  triggerTooltip?: boolean;
1964
1842
  } | {
1965
1843
  axis?: "y";
@@ -1988,8 +1866,6 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
1988
1866
  id: import("../internals/index.js").AxisId;
1989
1867
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
1990
1868
  dataKey?: string | undefined;
1991
- min?: (number | Date) | undefined;
1992
- max?: (number | Date) | undefined;
1993
1869
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
1994
1870
  hideTooltip?: boolean | undefined;
1995
1871
  domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
@@ -1998,9 +1874,8 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
1998
1874
  }) | undefined;
1999
1875
  ignoreTooltip?: boolean | undefined;
2000
1876
  offset: number;
2001
- scaleType: "symlog";
2002
- constant?: number;
2003
- colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<string | number | Date, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<number, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
1877
+ scaleType: "sqrt";
1878
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
2004
1879
  triggerTooltip?: boolean;
2005
1880
  } | {
2006
1881
  axis?: "y";
@@ -2029,8 +1904,6 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
2029
1904
  id: import("../internals/index.js").AxisId;
2030
1905
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
2031
1906
  dataKey?: string | undefined;
2032
- min?: (number | Date) | undefined;
2033
- max?: (number | Date) | undefined;
2034
1907
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
2035
1908
  hideTooltip?: boolean | undefined;
2036
1909
  domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
@@ -2039,8 +1912,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
2039
1912
  }) | undefined;
2040
1913
  ignoreTooltip?: boolean | undefined;
2041
1914
  offset: number;
2042
- scaleType: "symlog";
2043
- constant?: number;
1915
+ scaleType: "sqrt";
2044
1916
  colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
2045
1917
  triggerTooltip?: boolean;
2046
1918
  } | {
@@ -2070,8 +1942,6 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
2070
1942
  id: import("../internals/index.js").AxisId;
2071
1943
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
2072
1944
  dataKey?: string | undefined;
2073
- min?: (number | Date) | undefined;
2074
- max?: (number | Date) | undefined;
2075
1945
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
2076
1946
  hideTooltip?: boolean | undefined;
2077
1947
  domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
@@ -2080,8 +1950,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
2080
1950
  }) | undefined;
2081
1951
  ignoreTooltip?: boolean | undefined;
2082
1952
  offset: number;
2083
- scaleType: "symlog";
2084
- constant?: number;
1953
+ scaleType: "sqrt";
2085
1954
  colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
2086
1955
  triggerTooltip?: boolean;
2087
1956
  } | {
@@ -2111,8 +1980,6 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
2111
1980
  id: import("../internals/index.js").AxisId;
2112
1981
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
2113
1982
  dataKey?: string | undefined;
2114
- min?: (number | Date) | undefined;
2115
- max?: (number | Date) | undefined;
2116
1983
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
2117
1984
  hideTooltip?: boolean | undefined;
2118
1985
  domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
@@ -2121,9 +1988,8 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
2121
1988
  }) | undefined;
2122
1989
  ignoreTooltip?: boolean | undefined;
2123
1990
  offset: number;
2124
- scaleType: "symlog";
2125
- constant?: number;
2126
- colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
1991
+ scaleType: "sqrt";
1992
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
2127
1993
  triggerTooltip?: boolean;
2128
1994
  } | {
2129
1995
  axis?: "y";
@@ -2152,8 +2018,6 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
2152
2018
  id: import("../internals/index.js").AxisId;
2153
2019
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
2154
2020
  dataKey?: string | undefined;
2155
- min?: (number | Date) | undefined;
2156
- max?: (number | Date) | undefined;
2157
2021
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
2158
2022
  hideTooltip?: boolean | undefined;
2159
2023
  domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
@@ -2162,9 +2026,8 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
2162
2026
  }) | undefined;
2163
2027
  ignoreTooltip?: boolean | undefined;
2164
2028
  offset: number;
2165
- scaleType: "symlog";
2166
- constant?: number;
2167
- colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
2029
+ scaleType: "sqrt";
2030
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<string | number | Date, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<number, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
2168
2031
  triggerTooltip?: boolean;
2169
2032
  } | {
2170
2033
  axis?: "y";
@@ -2193,8 +2056,6 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
2193
2056
  id: import("../internals/index.js").AxisId;
2194
2057
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
2195
2058
  dataKey?: string | undefined;
2196
- min?: (number | Date) | undefined;
2197
- max?: (number | Date) | undefined;
2198
2059
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
2199
2060
  hideTooltip?: boolean | undefined;
2200
2061
  domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
@@ -2203,9 +2064,8 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
2203
2064
  }) | undefined;
2204
2065
  ignoreTooltip?: boolean | undefined;
2205
2066
  offset: number;
2206
- scaleType: "symlog";
2207
- constant?: number;
2208
- colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
2067
+ scaleType: "sqrt";
2068
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<string | number | Date, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<number, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
2209
2069
  triggerTooltip?: boolean;
2210
2070
  } | {
2211
2071
  axis?: "y";
@@ -2234,8 +2094,6 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
2234
2094
  id: import("../internals/index.js").AxisId;
2235
2095
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
2236
2096
  dataKey?: string | undefined;
2237
- min?: (number | Date) | undefined;
2238
- max?: (number | Date) | undefined;
2239
2097
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
2240
2098
  hideTooltip?: boolean | undefined;
2241
2099
  domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
@@ -2244,7 +2102,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
2244
2102
  }) | undefined;
2245
2103
  ignoreTooltip?: boolean | undefined;
2246
2104
  offset: number;
2247
- scaleType: "pow";
2105
+ scaleType: "utc";
2248
2106
  colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
2249
2107
  triggerTooltip?: boolean;
2250
2108
  } | {
@@ -2274,8 +2132,6 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
2274
2132
  id: import("../internals/index.js").AxisId;
2275
2133
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
2276
2134
  dataKey?: string | undefined;
2277
- min?: (number | Date) | undefined;
2278
- max?: (number | Date) | undefined;
2279
2135
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
2280
2136
  hideTooltip?: boolean | undefined;
2281
2137
  domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
@@ -2284,7 +2140,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
2284
2140
  }) | undefined;
2285
2141
  ignoreTooltip?: boolean | undefined;
2286
2142
  offset: number;
2287
- scaleType: "pow";
2143
+ scaleType: "utc";
2288
2144
  colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
2289
2145
  triggerTooltip?: boolean;
2290
2146
  } | {
@@ -2314,8 +2170,6 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
2314
2170
  id: import("../internals/index.js").AxisId;
2315
2171
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
2316
2172
  dataKey?: string | undefined;
2317
- min?: (number | Date) | undefined;
2318
- max?: (number | Date) | undefined;
2319
2173
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
2320
2174
  hideTooltip?: boolean | undefined;
2321
2175
  domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
@@ -2324,8 +2178,8 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
2324
2178
  }) | undefined;
2325
2179
  ignoreTooltip?: boolean | undefined;
2326
2180
  offset: number;
2327
- scaleType: "pow";
2328
- colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<string | number | Date, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<number, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
2181
+ scaleType: "utc";
2182
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
2329
2183
  triggerTooltip?: boolean;
2330
2184
  } | {
2331
2185
  axis?: "y";
@@ -2354,8 +2208,6 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
2354
2208
  id: import("../internals/index.js").AxisId;
2355
2209
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
2356
2210
  dataKey?: string | undefined;
2357
- min?: (number | Date) | undefined;
2358
- max?: (number | Date) | undefined;
2359
2211
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
2360
2212
  hideTooltip?: boolean | undefined;
2361
2213
  domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
@@ -2364,8 +2216,8 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
2364
2216
  }) | undefined;
2365
2217
  ignoreTooltip?: boolean | undefined;
2366
2218
  offset: number;
2367
- scaleType: "pow";
2368
- colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<string | number | Date, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<number, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
2219
+ scaleType: "utc";
2220
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
2369
2221
  triggerTooltip?: boolean;
2370
2222
  } | {
2371
2223
  axis?: "y";
@@ -2394,8 +2246,6 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
2394
2246
  id: import("../internals/index.js").AxisId;
2395
2247
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
2396
2248
  dataKey?: string | undefined;
2397
- min?: (number | Date) | undefined;
2398
- max?: (number | Date) | undefined;
2399
2249
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
2400
2250
  hideTooltip?: boolean | undefined;
2401
2251
  domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
@@ -2404,7 +2254,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
2404
2254
  }) | undefined;
2405
2255
  ignoreTooltip?: boolean | undefined;
2406
2256
  offset: number;
2407
- scaleType: "pow";
2257
+ scaleType: "utc";
2408
2258
  colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
2409
2259
  triggerTooltip?: boolean;
2410
2260
  } | {
@@ -2434,8 +2284,6 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
2434
2284
  id: import("../internals/index.js").AxisId;
2435
2285
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
2436
2286
  dataKey?: string | undefined;
2437
- min?: (number | Date) | undefined;
2438
- max?: (number | Date) | undefined;
2439
2287
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
2440
2288
  hideTooltip?: boolean | undefined;
2441
2289
  domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
@@ -2444,7 +2292,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
2444
2292
  }) | undefined;
2445
2293
  ignoreTooltip?: boolean | undefined;
2446
2294
  offset: number;
2447
- scaleType: "pow";
2295
+ scaleType: "utc";
2448
2296
  colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
2449
2297
  triggerTooltip?: boolean;
2450
2298
  } | {
@@ -2474,8 +2322,6 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
2474
2322
  id: import("../internals/index.js").AxisId;
2475
2323
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
2476
2324
  dataKey?: string | undefined;
2477
- min?: (number | Date) | undefined;
2478
- max?: (number | Date) | undefined;
2479
2325
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
2480
2326
  hideTooltip?: boolean | undefined;
2481
2327
  domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
@@ -2484,8 +2330,8 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
2484
2330
  }) | undefined;
2485
2331
  ignoreTooltip?: boolean | undefined;
2486
2332
  offset: number;
2487
- scaleType: "pow";
2488
- colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
2333
+ scaleType: "utc";
2334
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
2489
2335
  triggerTooltip?: boolean;
2490
2336
  } | {
2491
2337
  axis?: "y";
@@ -2514,8 +2360,6 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
2514
2360
  id: import("../internals/index.js").AxisId;
2515
2361
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
2516
2362
  dataKey?: string | undefined;
2517
- min?: (number | Date) | undefined;
2518
- max?: (number | Date) | undefined;
2519
2363
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
2520
2364
  hideTooltip?: boolean | undefined;
2521
2365
  domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
@@ -2524,8 +2368,8 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
2524
2368
  }) | undefined;
2525
2369
  ignoreTooltip?: boolean | undefined;
2526
2370
  offset: number;
2527
- scaleType: "pow";
2528
- colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
2371
+ scaleType: "utc";
2372
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<string | number | Date, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<number, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
2529
2373
  triggerTooltip?: boolean;
2530
2374
  } | {
2531
2375
  axis?: "y";
@@ -2554,8 +2398,6 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
2554
2398
  id: import("../internals/index.js").AxisId;
2555
2399
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
2556
2400
  dataKey?: string | undefined;
2557
- min?: (number | Date) | undefined;
2558
- max?: (number | Date) | undefined;
2559
2401
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
2560
2402
  hideTooltip?: boolean | undefined;
2561
2403
  domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
@@ -2564,8 +2406,8 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
2564
2406
  }) | undefined;
2565
2407
  ignoreTooltip?: boolean | undefined;
2566
2408
  offset: number;
2567
- scaleType: "pow";
2568
- colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
2409
+ scaleType: "utc";
2410
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<string | number | Date, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<number, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
2569
2411
  triggerTooltip?: boolean;
2570
2412
  } | {
2571
2413
  axis?: "y";
@@ -2594,9 +2436,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
2594
2436
  id: import("../internals/index.js").AxisId;
2595
2437
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
2596
2438
  dataKey?: string | undefined;
2597
- min?: (number | Date) | undefined;
2598
- max?: (number | Date) | undefined;
2599
- colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
2439
+ colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
2600
2440
  hideTooltip?: boolean | undefined;
2601
2441
  domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
2602
2442
  min: number;
@@ -2604,7 +2444,10 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
2604
2444
  }) | undefined;
2605
2445
  ignoreTooltip?: boolean | undefined;
2606
2446
  offset: number;
2607
- scaleType: "sqrt";
2447
+ scaleType: "band";
2448
+ categoryGapRatio: number;
2449
+ barGapRatio: number;
2450
+ groups?: import("../internals/index.js").AxisGroup[];
2608
2451
  colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
2609
2452
  triggerTooltip?: boolean;
2610
2453
  } | {
@@ -2634,9 +2477,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
2634
2477
  id: import("../internals/index.js").AxisId;
2635
2478
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
2636
2479
  dataKey?: string | undefined;
2637
- min?: (number | Date) | undefined;
2638
- max?: (number | Date) | undefined;
2639
- colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
2480
+ colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
2640
2481
  hideTooltip?: boolean | undefined;
2641
2482
  domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
2642
2483
  min: number;
@@ -2644,7 +2485,10 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
2644
2485
  }) | undefined;
2645
2486
  ignoreTooltip?: boolean | undefined;
2646
2487
  offset: number;
2647
- scaleType: "sqrt";
2488
+ scaleType: "band";
2489
+ categoryGapRatio: number;
2490
+ barGapRatio: number;
2491
+ groups?: import("../internals/index.js").AxisGroup[];
2648
2492
  colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
2649
2493
  triggerTooltip?: boolean;
2650
2494
  } | {
@@ -2674,9 +2518,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
2674
2518
  id: import("../internals/index.js").AxisId;
2675
2519
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
2676
2520
  dataKey?: string | undefined;
2677
- min?: (number | Date) | undefined;
2678
- max?: (number | Date) | undefined;
2679
- colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
2521
+ colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
2680
2522
  hideTooltip?: boolean | undefined;
2681
2523
  domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
2682
2524
  min: number;
@@ -2684,8 +2526,11 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
2684
2526
  }) | undefined;
2685
2527
  ignoreTooltip?: boolean | undefined;
2686
2528
  offset: number;
2687
- scaleType: "sqrt";
2688
- colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<string | number | Date, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<number, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
2529
+ scaleType: "band";
2530
+ categoryGapRatio: number;
2531
+ barGapRatio: number;
2532
+ groups?: import("../internals/index.js").AxisGroup[];
2533
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
2689
2534
  triggerTooltip?: boolean;
2690
2535
  } | {
2691
2536
  axis?: "y";
@@ -2714,9 +2559,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
2714
2559
  id: import("../internals/index.js").AxisId;
2715
2560
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
2716
2561
  dataKey?: string | undefined;
2717
- min?: (number | Date) | undefined;
2718
- max?: (number | Date) | undefined;
2719
- colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
2562
+ colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
2720
2563
  hideTooltip?: boolean | undefined;
2721
2564
  domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
2722
2565
  min: number;
@@ -2724,8 +2567,11 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
2724
2567
  }) | undefined;
2725
2568
  ignoreTooltip?: boolean | undefined;
2726
2569
  offset: number;
2727
- scaleType: "sqrt";
2728
- colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<string | number | Date, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<number, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
2570
+ scaleType: "band";
2571
+ categoryGapRatio: number;
2572
+ barGapRatio: number;
2573
+ groups?: import("../internals/index.js").AxisGroup[];
2574
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
2729
2575
  triggerTooltip?: boolean;
2730
2576
  } | {
2731
2577
  axis?: "y";
@@ -2754,9 +2600,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
2754
2600
  id: import("../internals/index.js").AxisId;
2755
2601
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
2756
2602
  dataKey?: string | undefined;
2757
- min?: (number | Date) | undefined;
2758
- max?: (number | Date) | undefined;
2759
- colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
2603
+ colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
2760
2604
  hideTooltip?: boolean | undefined;
2761
2605
  domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
2762
2606
  min: number;
@@ -2764,7 +2608,10 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
2764
2608
  }) | undefined;
2765
2609
  ignoreTooltip?: boolean | undefined;
2766
2610
  offset: number;
2767
- scaleType: "sqrt";
2611
+ scaleType: "band";
2612
+ categoryGapRatio: number;
2613
+ barGapRatio: number;
2614
+ groups?: import("../internals/index.js").AxisGroup[];
2768
2615
  colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
2769
2616
  triggerTooltip?: boolean;
2770
2617
  } | {
@@ -2794,9 +2641,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
2794
2641
  id: import("../internals/index.js").AxisId;
2795
2642
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
2796
2643
  dataKey?: string | undefined;
2797
- min?: (number | Date) | undefined;
2798
- max?: (number | Date) | undefined;
2799
- colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
2644
+ colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
2800
2645
  hideTooltip?: boolean | undefined;
2801
2646
  domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
2802
2647
  min: number;
@@ -2804,7 +2649,10 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
2804
2649
  }) | undefined;
2805
2650
  ignoreTooltip?: boolean | undefined;
2806
2651
  offset: number;
2807
- scaleType: "sqrt";
2652
+ scaleType: "band";
2653
+ categoryGapRatio: number;
2654
+ barGapRatio: number;
2655
+ groups?: import("../internals/index.js").AxisGroup[];
2808
2656
  colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
2809
2657
  triggerTooltip?: boolean;
2810
2658
  } | {
@@ -2834,9 +2682,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
2834
2682
  id: import("../internals/index.js").AxisId;
2835
2683
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
2836
2684
  dataKey?: string | undefined;
2837
- min?: (number | Date) | undefined;
2838
- max?: (number | Date) | undefined;
2839
- colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
2685
+ colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
2840
2686
  hideTooltip?: boolean | undefined;
2841
2687
  domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
2842
2688
  min: number;
@@ -2844,8 +2690,11 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
2844
2690
  }) | undefined;
2845
2691
  ignoreTooltip?: boolean | undefined;
2846
2692
  offset: number;
2847
- scaleType: "sqrt";
2848
- colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
2693
+ scaleType: "band";
2694
+ categoryGapRatio: number;
2695
+ barGapRatio: number;
2696
+ groups?: import("../internals/index.js").AxisGroup[];
2697
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
2849
2698
  triggerTooltip?: boolean;
2850
2699
  } | {
2851
2700
  axis?: "y";
@@ -2874,9 +2723,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
2874
2723
  id: import("../internals/index.js").AxisId;
2875
2724
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
2876
2725
  dataKey?: string | undefined;
2877
- min?: (number | Date) | undefined;
2878
- max?: (number | Date) | undefined;
2879
- colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
2726
+ colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
2880
2727
  hideTooltip?: boolean | undefined;
2881
2728
  domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
2882
2729
  min: number;
@@ -2884,8 +2731,11 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
2884
2731
  }) | undefined;
2885
2732
  ignoreTooltip?: boolean | undefined;
2886
2733
  offset: number;
2887
- scaleType: "sqrt";
2888
- colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
2734
+ scaleType: "band";
2735
+ categoryGapRatio: number;
2736
+ barGapRatio: number;
2737
+ groups?: import("../internals/index.js").AxisGroup[];
2738
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<string | number | Date, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<number, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
2889
2739
  triggerTooltip?: boolean;
2890
2740
  } | {
2891
2741
  axis?: "y";
@@ -2914,9 +2764,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
2914
2764
  id: import("../internals/index.js").AxisId;
2915
2765
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
2916
2766
  dataKey?: string | undefined;
2917
- min?: (number | Date) | undefined;
2918
- max?: (number | Date) | undefined;
2919
- colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
2767
+ colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
2920
2768
  hideTooltip?: boolean | undefined;
2921
2769
  domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
2922
2770
  min: number;
@@ -2924,8 +2772,11 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
2924
2772
  }) | undefined;
2925
2773
  ignoreTooltip?: boolean | undefined;
2926
2774
  offset: number;
2927
- scaleType: "sqrt";
2928
- colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
2775
+ scaleType: "band";
2776
+ categoryGapRatio: number;
2777
+ barGapRatio: number;
2778
+ groups?: import("../internals/index.js").AxisGroup[];
2779
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<string | number | Date, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<number, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
2929
2780
  triggerTooltip?: boolean;
2930
2781
  } | {
2931
2782
  axis?: "y";
@@ -2954,9 +2805,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
2954
2805
  id: import("../internals/index.js").AxisId;
2955
2806
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
2956
2807
  dataKey?: string | undefined;
2957
- min?: (number | Date) | undefined;
2958
- max?: (number | Date) | undefined;
2959
- colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
2808
+ colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
2960
2809
  hideTooltip?: boolean | undefined;
2961
2810
  domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
2962
2811
  min: number;
@@ -2964,7 +2813,8 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
2964
2813
  }) | undefined;
2965
2814
  ignoreTooltip?: boolean | undefined;
2966
2815
  offset: number;
2967
- scaleType: "utc";
2816
+ scaleType: "point";
2817
+ groups?: import("../internals/index.js").AxisGroup[];
2968
2818
  colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
2969
2819
  triggerTooltip?: boolean;
2970
2820
  } | {
@@ -2994,9 +2844,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
2994
2844
  id: import("../internals/index.js").AxisId;
2995
2845
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
2996
2846
  dataKey?: string | undefined;
2997
- min?: (number | Date) | undefined;
2998
- max?: (number | Date) | undefined;
2999
- colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
2847
+ colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
3000
2848
  hideTooltip?: boolean | undefined;
3001
2849
  domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
3002
2850
  min: number;
@@ -3004,7 +2852,8 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
3004
2852
  }) | undefined;
3005
2853
  ignoreTooltip?: boolean | undefined;
3006
2854
  offset: number;
3007
- scaleType: "utc";
2855
+ scaleType: "point";
2856
+ groups?: import("../internals/index.js").AxisGroup[];
3008
2857
  colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
3009
2858
  triggerTooltip?: boolean;
3010
2859
  } | {
@@ -3034,9 +2883,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
3034
2883
  id: import("../internals/index.js").AxisId;
3035
2884
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
3036
2885
  dataKey?: string | undefined;
3037
- min?: (number | Date) | undefined;
3038
- max?: (number | Date) | undefined;
3039
- colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
2886
+ colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
3040
2887
  hideTooltip?: boolean | undefined;
3041
2888
  domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
3042
2889
  min: number;
@@ -3044,8 +2891,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
3044
2891
  }) | undefined;
3045
2892
  ignoreTooltip?: boolean | undefined;
3046
2893
  offset: number;
3047
- scaleType: "utc";
3048
- colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<string | number | Date, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<number, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
2894
+ scaleType: "point";
2895
+ groups?: import("../internals/index.js").AxisGroup[];
2896
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
3049
2897
  triggerTooltip?: boolean;
3050
2898
  } | {
3051
2899
  axis?: "y";
@@ -3074,9 +2922,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
3074
2922
  id: import("../internals/index.js").AxisId;
3075
2923
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
3076
2924
  dataKey?: string | undefined;
3077
- min?: (number | Date) | undefined;
3078
- max?: (number | Date) | undefined;
3079
- colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
2925
+ colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
3080
2926
  hideTooltip?: boolean | undefined;
3081
2927
  domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
3082
2928
  min: number;
@@ -3084,8 +2930,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
3084
2930
  }) | undefined;
3085
2931
  ignoreTooltip?: boolean | undefined;
3086
2932
  offset: number;
3087
- scaleType: "utc";
3088
- colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<string | number | Date, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<number, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
2933
+ scaleType: "point";
2934
+ groups?: import("../internals/index.js").AxisGroup[];
2935
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
3089
2936
  triggerTooltip?: boolean;
3090
2937
  } | {
3091
2938
  axis?: "y";
@@ -3114,9 +2961,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
3114
2961
  id: import("../internals/index.js").AxisId;
3115
2962
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
3116
2963
  dataKey?: string | undefined;
3117
- min?: (number | Date) | undefined;
3118
- max?: (number | Date) | undefined;
3119
- colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
2964
+ colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
3120
2965
  hideTooltip?: boolean | undefined;
3121
2966
  domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
3122
2967
  min: number;
@@ -3124,7 +2969,8 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
3124
2969
  }) | undefined;
3125
2970
  ignoreTooltip?: boolean | undefined;
3126
2971
  offset: number;
3127
- scaleType: "utc";
2972
+ scaleType: "point";
2973
+ groups?: import("../internals/index.js").AxisGroup[];
3128
2974
  colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
3129
2975
  triggerTooltip?: boolean;
3130
2976
  } | {
@@ -3154,9 +3000,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
3154
3000
  id: import("../internals/index.js").AxisId;
3155
3001
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
3156
3002
  dataKey?: string | undefined;
3157
- min?: (number | Date) | undefined;
3158
- max?: (number | Date) | undefined;
3159
- colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
3003
+ colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
3160
3004
  hideTooltip?: boolean | undefined;
3161
3005
  domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
3162
3006
  min: number;
@@ -3164,7 +3008,8 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
3164
3008
  }) | undefined;
3165
3009
  ignoreTooltip?: boolean | undefined;
3166
3010
  offset: number;
3167
- scaleType: "utc";
3011
+ scaleType: "point";
3012
+ groups?: import("../internals/index.js").AxisGroup[];
3168
3013
  colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
3169
3014
  triggerTooltip?: boolean;
3170
3015
  } | {
@@ -3194,9 +3039,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
3194
3039
  id: import("../internals/index.js").AxisId;
3195
3040
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
3196
3041
  dataKey?: string | undefined;
3197
- min?: (number | Date) | undefined;
3198
- max?: (number | Date) | undefined;
3199
- colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
3042
+ colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
3200
3043
  hideTooltip?: boolean | undefined;
3201
3044
  domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
3202
3045
  min: number;
@@ -3204,8 +3047,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
3204
3047
  }) | undefined;
3205
3048
  ignoreTooltip?: boolean | undefined;
3206
3049
  offset: number;
3207
- scaleType: "utc";
3208
- colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
3050
+ scaleType: "point";
3051
+ groups?: import("../internals/index.js").AxisGroup[];
3052
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
3209
3053
  triggerTooltip?: boolean;
3210
3054
  } | {
3211
3055
  axis?: "y";
@@ -3234,9 +3078,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
3234
3078
  id: import("../internals/index.js").AxisId;
3235
3079
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
3236
3080
  dataKey?: string | undefined;
3237
- min?: (number | Date) | undefined;
3238
- max?: (number | Date) | undefined;
3239
- colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
3081
+ colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
3240
3082
  hideTooltip?: boolean | undefined;
3241
3083
  domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
3242
3084
  min: number;
@@ -3244,8 +3086,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
3244
3086
  }) | undefined;
3245
3087
  ignoreTooltip?: boolean | undefined;
3246
3088
  offset: number;
3247
- scaleType: "utc";
3248
- colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
3089
+ scaleType: "point";
3090
+ groups?: import("../internals/index.js").AxisGroup[];
3091
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<string | number | Date, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<number, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
3249
3092
  triggerTooltip?: boolean;
3250
3093
  } | {
3251
3094
  axis?: "y";
@@ -3274,9 +3117,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
3274
3117
  id: import("../internals/index.js").AxisId;
3275
3118
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
3276
3119
  dataKey?: string | undefined;
3277
- min?: (number | Date) | undefined;
3278
- max?: (number | Date) | undefined;
3279
- colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
3120
+ colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
3280
3121
  hideTooltip?: boolean | undefined;
3281
3122
  domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
3282
3123
  min: number;
@@ -3284,8 +3125,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
3284
3125
  }) | undefined;
3285
3126
  ignoreTooltip?: boolean | undefined;
3286
3127
  offset: number;
3287
- scaleType: "utc";
3288
- colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
3128
+ scaleType: "point";
3129
+ groups?: import("../internals/index.js").AxisGroup[];
3130
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<string | number | Date, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<number, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
3289
3131
  triggerTooltip?: boolean;
3290
3132
  };
3291
3133
  tickNumber: number;
@@ -3604,11 +3446,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
3604
3446
  x?: number | string | undefined | undefined;
3605
3447
  y?: number | string | undefined | undefined;
3606
3448
  radius?: number | string | undefined | undefined;
3607
- href?: string | undefined | undefined;
3608
3449
  media?: string | undefined | undefined;
3609
- target?: string | undefined | undefined;
3610
- from?: number | string | undefined | undefined;
3611
3450
  method?: string | undefined | undefined;
3451
+ target?: string | undefined | undefined;
3612
3452
  crossOrigin?: "" | "anonymous" | "use-credentials" | undefined;
3613
3453
  accentHeight?: number | string | undefined | undefined;
3614
3454
  accumulate?: "none" | "sum" | undefined | undefined;
@@ -3652,6 +3492,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
3652
3492
  focusable?: "auto" | (boolean | "true" | "false") | undefined;
3653
3493
  format?: number | string | undefined | undefined;
3654
3494
  fr?: number | string | undefined | undefined;
3495
+ from?: number | string | undefined | undefined;
3655
3496
  fx?: number | string | undefined | undefined;
3656
3497
  fy?: number | string | undefined | undefined;
3657
3498
  g1?: number | string | undefined | undefined;
@@ -3664,6 +3505,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
3664
3505
  hanging?: number | string | undefined | undefined;
3665
3506
  horizAdvX?: number | string | undefined | undefined;
3666
3507
  horizOriginX?: number | string | undefined | undefined;
3508
+ href?: string | undefined | undefined;
3667
3509
  ideographic?: number | string | undefined | undefined;
3668
3510
  in2?: number | string | undefined | undefined;
3669
3511
  in?: string | undefined | undefined;