@mui/x-charts 9.0.1 → 9.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (118) hide show
  1. package/BarChart/BarChart.js +27 -9
  2. package/BarChart/BarChart.mjs +27 -9
  3. package/BarChart/BarElement.js +1 -5
  4. package/BarChart/BarElement.mjs +1 -5
  5. package/BarChart/seriesConfig/bar/getSeriesWithDefaultValues.d.mts +1 -0
  6. package/BarChart/seriesConfig/bar/getSeriesWithDefaultValues.d.ts +1 -0
  7. package/BarChart/seriesConfig/bar/seriesProcessor.js +37 -13
  8. package/BarChart/seriesConfig/bar/seriesProcessor.mjs +37 -13
  9. package/CHANGELOG.md +121 -0
  10. package/ChartsContainer/ChartsContainer.js +59 -30
  11. package/ChartsContainer/ChartsContainer.mjs +59 -30
  12. package/ChartsDataProvider/useChartsDataProviderProps.js +1 -6
  13. package/ChartsDataProvider/useChartsDataProviderProps.mjs +1 -6
  14. package/ChartsGrid/styledComponents.js +2 -2
  15. package/ChartsGrid/styledComponents.mjs +2 -2
  16. package/ChartsRadialDataProvider/ChartsRadialDataProvider.d.mts +38 -0
  17. package/ChartsRadialDataProvider/ChartsRadialDataProvider.d.ts +38 -0
  18. package/ChartsRadialDataProvider/ChartsRadialDataProvider.js +115 -0
  19. package/ChartsRadialDataProvider/ChartsRadialDataProvider.mjs +109 -0
  20. package/ChartsRadialDataProvider/ChartsRadialDataProvider.plugins.d.mts +9 -0
  21. package/ChartsRadialDataProvider/ChartsRadialDataProvider.plugins.d.ts +9 -0
  22. package/ChartsRadialDataProvider/ChartsRadialDataProvider.plugins.js +13 -0
  23. package/ChartsRadialDataProvider/ChartsRadialDataProvider.plugins.mjs +7 -0
  24. package/ChartsRadialDataProvider/index.d.mts +2 -0
  25. package/ChartsRadialDataProvider/index.d.ts +2 -0
  26. package/ChartsRadialDataProvider/index.js +27 -0
  27. package/ChartsRadialDataProvider/index.mjs +2 -0
  28. package/ChartsRadialDataProvider/useChartsRadialDataProviderProps.d.mts +13 -0
  29. package/ChartsRadialDataProvider/useChartsRadialDataProviderProps.d.ts +13 -0
  30. package/ChartsRadialDataProvider/useChartsRadialDataProviderProps.js +46 -0
  31. package/ChartsRadialDataProvider/useChartsRadialDataProviderProps.mjs +39 -0
  32. package/ChartsRadialGrid/ChartsRadialGrid.d.mts +33 -0
  33. package/ChartsRadialGrid/ChartsRadialGrid.d.ts +33 -0
  34. package/ChartsRadialGrid/ChartsRadialGrid.js +99 -0
  35. package/ChartsRadialGrid/ChartsRadialGrid.mjs +94 -0
  36. package/ChartsRadialGrid/ChartsRadiusGrid.d.mts +13 -0
  37. package/ChartsRadialGrid/ChartsRadiusGrid.d.ts +13 -0
  38. package/ChartsRadialGrid/ChartsRadiusGrid.js +73 -0
  39. package/ChartsRadialGrid/ChartsRadiusGrid.mjs +66 -0
  40. package/ChartsRadialGrid/ChartsRotationGrid.d.mts +13 -0
  41. package/ChartsRadialGrid/ChartsRotationGrid.d.ts +13 -0
  42. package/ChartsRadialGrid/ChartsRotationGrid.js +65 -0
  43. package/ChartsRadialGrid/ChartsRotationGrid.mjs +58 -0
  44. package/ChartsRadialGrid/chartsRadialGridClasses.d.mts +13 -0
  45. package/ChartsRadialGrid/chartsRadialGridClasses.d.ts +13 -0
  46. package/ChartsRadialGrid/chartsRadialGridClasses.js +14 -0
  47. package/ChartsRadialGrid/chartsRadialGridClasses.mjs +6 -0
  48. package/ChartsRadialGrid/index.d.mts +3 -0
  49. package/ChartsRadialGrid/index.d.ts +3 -0
  50. package/ChartsRadialGrid/index.js +19 -0
  51. package/ChartsRadialGrid/index.mjs +2 -0
  52. package/ChartsRadialGrid/styledComponents.d.mts +4 -0
  53. package/ChartsRadialGrid/styledComponents.d.ts +4 -0
  54. package/ChartsRadialGrid/styledComponents.js +50 -0
  55. package/ChartsRadialGrid/styledComponents.mjs +44 -0
  56. package/ChartsXAxis/useAxisTicksProps.d.mts +407 -326
  57. package/ChartsXAxis/useAxisTicksProps.d.ts +407 -326
  58. package/ChartsYAxis/useAxisTicksProps.d.mts +407 -326
  59. package/ChartsYAxis/useAxisTicksProps.d.ts +407 -326
  60. package/LineChart/LineChart.js +27 -9
  61. package/LineChart/LineChart.mjs +27 -9
  62. package/LineChart/seriesConfig/seriesProcessor.js +37 -13
  63. package/LineChart/seriesConfig/seriesProcessor.mjs +37 -13
  64. package/ScatterChart/Scatter.d.mts +11 -0
  65. package/ScatterChart/Scatter.d.ts +11 -0
  66. package/ScatterChart/Scatter.js +11 -0
  67. package/ScatterChart/Scatter.mjs +14 -0
  68. package/ScatterChart/ScatterChart.js +29 -10
  69. package/ScatterChart/ScatterChart.mjs +29 -10
  70. package/ScatterChart/seriesConfig/seriesProcessor.js +9 -4
  71. package/ScatterChart/seriesConfig/seriesProcessor.mjs +9 -4
  72. package/SparkLineChart/SparkLineChart.js +27 -9
  73. package/SparkLineChart/SparkLineChart.mjs +27 -9
  74. package/hooks/useTicks.d.mts +1 -1
  75. package/hooks/useTicks.d.ts +1 -1
  76. package/hooks/useTicks.js +21 -3
  77. package/hooks/useTicks.mjs +21 -3
  78. package/index.d.mts +2 -0
  79. package/index.d.ts +2 -0
  80. package/index.js +25 -1
  81. package/index.mjs +3 -1
  82. package/internals/material/index.js +6 -1
  83. package/internals/material/index.mjs +6 -1
  84. package/internals/plugins/featurePlugins/useChartCartesianAxis/defaultizeAxis.js +8 -12
  85. package/internals/plugins/featurePlugins/useChartCartesianAxis/defaultizeAxis.mjs +8 -12
  86. package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisRendering.selectors.d.mts +1 -0
  87. package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisRendering.selectors.d.ts +1 -0
  88. package/internals/plugins/featurePlugins/useChartPolarAxis/computeAxisValue.js +7 -4
  89. package/internals/plugins/featurePlugins/useChartPolarAxis/computeAxisValue.mjs +8 -5
  90. package/internals/plugins/featurePlugins/useChartPolarAxis/defaultizeAxis.js +3 -3
  91. package/internals/plugins/featurePlugins/useChartPolarAxis/defaultizeAxis.mjs +3 -3
  92. package/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.js +3 -3
  93. package/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.mjs +3 -3
  94. package/models/axis.d.mts +11 -2
  95. package/models/axis.d.ts +11 -2
  96. package/models/seriesType/bar.d.mts +9 -0
  97. package/models/seriesType/bar.d.ts +9 -0
  98. package/models/seriesType/line.d.mts +9 -0
  99. package/models/seriesType/line.d.ts +9 -0
  100. package/models/seriesType/scatter.d.mts +9 -0
  101. package/models/seriesType/scatter.d.ts +9 -0
  102. package/models/slots/chartsBaseSlotProps.d.mts +17 -0
  103. package/models/slots/chartsBaseSlotProps.d.ts +17 -0
  104. package/models/slots/chartsBaseSlots.d.mts +7 -1
  105. package/models/slots/chartsBaseSlots.d.ts +7 -1
  106. package/models/z-axis.d.mts +9 -0
  107. package/models/z-axis.d.ts +9 -0
  108. package/package.json +31 -3
  109. package/themeAugmentation/components.d.mts +4 -0
  110. package/themeAugmentation/components.d.ts +4 -0
  111. package/themeAugmentation/overrides.d.mts +2 -0
  112. package/themeAugmentation/overrides.d.ts +2 -0
  113. package/themeAugmentation/props.d.mts +2 -0
  114. package/themeAugmentation/props.d.ts +2 -0
  115. package/utils/epsilon.d.mts +1 -0
  116. package/utils/epsilon.d.ts +1 -0
  117. package/utils/epsilon.js +7 -0
  118. package/utils/epsilon.mjs +1 -0
@@ -1,9 +1,9 @@
1
1
  import { type ChartsXAxisProps } from "../models/axis.js";
2
2
  import { ChartsText, type ChartsTextProps } from "../ChartsText/index.js";
3
3
  export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
4
- xScale: import("packages/x-charts-vendor/build/d3-scale").ScaleLinear<number, number, never> | import("packages/x-charts-vendor/build/d3-scale").ScaleSymLog<number, number, never> | import("packages/x-charts-vendor/build/d3-scale").ScaleLogarithmic<number, number, never> | import("packages/x-charts-vendor/build/d3-scale").ScalePower<number, number, never> | import("packages/x-charts-vendor/build/d3-scale").ScaleTime<number, number, never> | import("packages/x-charts-vendor/build/d3-scale").ScaleBand<{
4
+ xScale: import("@mui/x-charts-vendor/d3-scale").ScaleLinear<number, number, never> | import("@mui/x-charts-vendor/d3-scale").ScaleSymLog<number, number, never> | import("@mui/x-charts-vendor/d3-scale").ScaleLogarithmic<number, number, never> | import("@mui/x-charts-vendor/d3-scale").ScalePower<number, number, never> | import("@mui/x-charts-vendor/d3-scale").ScaleTime<number, number, never> | import("@mui/x-charts-vendor/d3-scale").ScaleBand<{
5
5
  toString(): string;
6
- }> | import("packages/x-charts-vendor/build/d3-scale").ScalePoint<{
6
+ }> | import("@mui/x-charts-vendor/d3-scale").ScalePoint<{
7
7
  toString(): string;
8
8
  }>;
9
9
  defaultizedProps: {
@@ -31,21 +31,22 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
31
31
  tickLabelPlacement?: "middle" | "tick";
32
32
  data?: readonly any[] | undefined;
33
33
  dataKey?: string | undefined;
34
+ valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
34
35
  id: import("../internals/index.js").AxisId;
35
36
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
36
37
  height: number;
37
38
  position?: "top" | "bottom" | "none";
38
39
  zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
39
40
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
40
- domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
41
- min: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
42
- max: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
41
+ domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
42
+ min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
43
+ max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
43
44
  }) | undefined;
44
45
  hideTooltip?: boolean | undefined;
45
46
  ignoreTooltip?: boolean | undefined;
46
47
  offset: number;
47
48
  scaleType: "linear";
48
- colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number, string | null>;
49
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
49
50
  triggerTooltip?: boolean;
50
51
  } | {
51
52
  axis?: "x";
@@ -72,21 +73,22 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
72
73
  tickLabelPlacement?: "middle" | "tick";
73
74
  data?: readonly any[] | undefined;
74
75
  dataKey?: string | undefined;
76
+ valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
75
77
  id: import("../internals/index.js").AxisId;
76
78
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
77
79
  height: number;
78
80
  position?: "top" | "bottom" | "none";
79
81
  zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
80
82
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
81
- domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
82
- min: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
83
- max: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
83
+ domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
84
+ min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
85
+ max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
84
86
  }) | undefined;
85
87
  hideTooltip?: boolean | undefined;
86
88
  ignoreTooltip?: boolean | undefined;
87
89
  offset: number;
88
90
  scaleType: "linear";
89
- colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number | Date, string | null>;
91
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
90
92
  triggerTooltip?: boolean;
91
93
  } | {
92
94
  axis?: "x";
@@ -113,21 +115,22 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
113
115
  tickLabelPlacement?: "middle" | "tick";
114
116
  data?: readonly any[] | undefined;
115
117
  dataKey?: string | undefined;
118
+ valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
116
119
  id: import("../internals/index.js").AxisId;
117
120
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
118
121
  height: number;
119
122
  position?: "top" | "bottom" | "none";
120
123
  zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
121
124
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
122
- domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
123
- min: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
124
- max: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
125
+ domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
126
+ min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
127
+ max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
125
128
  }) | undefined;
126
129
  hideTooltip?: boolean | undefined;
127
130
  ignoreTooltip?: boolean | undefined;
128
131
  offset: number;
129
132
  scaleType: "linear";
130
- colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number, string | null>;
133
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
131
134
  triggerTooltip?: boolean;
132
135
  } | {
133
136
  axis?: "x";
@@ -154,21 +157,22 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
154
157
  tickLabelPlacement?: "middle" | "tick";
155
158
  data?: readonly any[] | undefined;
156
159
  dataKey?: string | undefined;
160
+ valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
157
161
  id: import("../internals/index.js").AxisId;
158
162
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
159
163
  height: number;
160
164
  position?: "top" | "bottom" | "none";
161
165
  zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
162
166
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
163
- domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
164
- min: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
165
- max: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
167
+ domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
168
+ min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
169
+ max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
166
170
  }) | undefined;
167
171
  hideTooltip?: boolean | undefined;
168
172
  ignoreTooltip?: boolean | undefined;
169
173
  offset: number;
170
174
  scaleType: "linear";
171
- colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleOrdinal<string | number | Date, string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleOrdinal<number, string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number | Date, string | null>;
175
+ 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>;
172
176
  triggerTooltip?: boolean;
173
177
  } | {
174
178
  axis?: "x";
@@ -195,21 +199,22 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
195
199
  tickLabelPlacement?: "middle" | "tick";
196
200
  data?: readonly any[] | undefined;
197
201
  dataKey?: string | undefined;
202
+ valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
198
203
  id: import("../internals/index.js").AxisId;
199
204
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
200
205
  height: number;
201
206
  position?: "top" | "bottom" | "none";
202
207
  zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
203
208
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
204
- domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
205
- min: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
206
- max: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
209
+ domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
210
+ min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
211
+ max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
207
212
  }) | undefined;
208
213
  hideTooltip?: boolean | undefined;
209
214
  ignoreTooltip?: boolean | undefined;
210
215
  offset: number;
211
216
  scaleType: "linear";
212
- colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleOrdinal<string | number | Date, string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleOrdinal<number, string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number | Date, string | null>;
217
+ 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>;
213
218
  triggerTooltip?: boolean;
214
219
  } | {
215
220
  axis?: "x";
@@ -236,21 +241,22 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
236
241
  tickLabelPlacement?: "middle" | "tick";
237
242
  data?: readonly any[] | undefined;
238
243
  dataKey?: string | undefined;
244
+ valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
239
245
  id: import("../internals/index.js").AxisId;
240
246
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
241
247
  height: number;
242
248
  position?: "top" | "bottom" | "none";
243
249
  zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
244
250
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
245
- domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
246
- min: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
247
- max: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
251
+ domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
252
+ min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
253
+ max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
248
254
  }) | undefined;
249
255
  hideTooltip?: boolean | undefined;
250
256
  ignoreTooltip?: boolean | undefined;
251
257
  offset: number;
252
258
  scaleType: "linear";
253
- colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number, string | null>;
259
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
254
260
  triggerTooltip?: boolean;
255
261
  } | {
256
262
  axis?: "x";
@@ -277,21 +283,22 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
277
283
  tickLabelPlacement?: "middle" | "tick";
278
284
  data?: readonly any[] | undefined;
279
285
  dataKey?: string | undefined;
286
+ valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
280
287
  id: import("../internals/index.js").AxisId;
281
288
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
282
289
  height: number;
283
290
  position?: "top" | "bottom" | "none";
284
291
  zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
285
292
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
286
- domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
287
- min: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
288
- max: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
293
+ domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
294
+ min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
295
+ max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
289
296
  }) | undefined;
290
297
  hideTooltip?: boolean | undefined;
291
298
  ignoreTooltip?: boolean | undefined;
292
299
  offset: number;
293
300
  scaleType: "linear";
294
- colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number, string | null>;
301
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
295
302
  triggerTooltip?: boolean;
296
303
  } | {
297
304
  axis?: "x";
@@ -318,21 +325,22 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
318
325
  tickLabelPlacement?: "middle" | "tick";
319
326
  data?: readonly any[] | undefined;
320
327
  dataKey?: string | undefined;
328
+ valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
321
329
  id: import("../internals/index.js").AxisId;
322
330
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
323
331
  height: number;
324
332
  position?: "top" | "bottom" | "none";
325
333
  zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
326
334
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
327
- domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
328
- min: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
329
- max: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
335
+ domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
336
+ min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
337
+ max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
330
338
  }) | undefined;
331
339
  hideTooltip?: boolean | undefined;
332
340
  ignoreTooltip?: boolean | undefined;
333
341
  offset: number;
334
342
  scaleType: "linear";
335
- colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number, string | null>;
343
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
336
344
  triggerTooltip?: boolean;
337
345
  } | {
338
346
  axis?: "x";
@@ -359,21 +367,22 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
359
367
  tickLabelPlacement?: "middle" | "tick";
360
368
  data?: readonly any[] | undefined;
361
369
  dataKey?: string | undefined;
370
+ valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
362
371
  id: import("../internals/index.js").AxisId;
363
372
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
364
373
  height: number;
365
374
  position?: "top" | "bottom" | "none";
366
375
  zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
367
376
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
368
- domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
369
- min: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
370
- max: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
377
+ domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
378
+ min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
379
+ max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
371
380
  }) | undefined;
372
381
  hideTooltip?: boolean | undefined;
373
382
  ignoreTooltip?: boolean | undefined;
374
383
  offset: number;
375
384
  scaleType: "linear";
376
- colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number | Date, string | null>;
385
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
377
386
  triggerTooltip?: boolean;
378
387
  } | {
379
388
  axis?: "x";
@@ -400,21 +409,22 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
400
409
  tickLabelPlacement?: "middle" | "tick";
401
410
  data?: readonly any[] | undefined;
402
411
  dataKey?: string | undefined;
412
+ valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
403
413
  id: import("../internals/index.js").AxisId;
404
414
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
405
415
  height: number;
406
416
  position?: "top" | "bottom" | "none";
407
417
  zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
408
418
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
409
- domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
410
- min: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
411
- max: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
419
+ domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
420
+ min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
421
+ max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
412
422
  }) | undefined;
413
423
  hideTooltip?: boolean | undefined;
414
424
  ignoreTooltip?: boolean | undefined;
415
425
  offset: number;
416
426
  scaleType: "time";
417
- colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number, string | null>;
427
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
418
428
  triggerTooltip?: boolean;
419
429
  } | {
420
430
  axis?: "x";
@@ -441,21 +451,22 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
441
451
  tickLabelPlacement?: "middle" | "tick";
442
452
  data?: readonly any[] | undefined;
443
453
  dataKey?: string | undefined;
454
+ valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
444
455
  id: import("../internals/index.js").AxisId;
445
456
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
446
457
  height: number;
447
458
  position?: "top" | "bottom" | "none";
448
459
  zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
449
460
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
450
- domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
451
- min: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
452
- max: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
461
+ domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
462
+ min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
463
+ max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
453
464
  }) | undefined;
454
465
  hideTooltip?: boolean | undefined;
455
466
  ignoreTooltip?: boolean | undefined;
456
467
  offset: number;
457
468
  scaleType: "time";
458
- colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number | Date, string | null>;
469
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
459
470
  triggerTooltip?: boolean;
460
471
  } | {
461
472
  axis?: "x";
@@ -482,21 +493,22 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
482
493
  tickLabelPlacement?: "middle" | "tick";
483
494
  data?: readonly any[] | undefined;
484
495
  dataKey?: string | undefined;
496
+ valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
485
497
  id: import("../internals/index.js").AxisId;
486
498
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
487
499
  height: number;
488
500
  position?: "top" | "bottom" | "none";
489
501
  zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
490
502
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
491
- domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
492
- min: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
493
- max: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
503
+ domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
504
+ min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
505
+ max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
494
506
  }) | undefined;
495
507
  hideTooltip?: boolean | undefined;
496
508
  ignoreTooltip?: boolean | undefined;
497
509
  offset: number;
498
510
  scaleType: "time";
499
- colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number, string | null>;
511
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
500
512
  triggerTooltip?: boolean;
501
513
  } | {
502
514
  axis?: "x";
@@ -523,21 +535,22 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
523
535
  tickLabelPlacement?: "middle" | "tick";
524
536
  data?: readonly any[] | undefined;
525
537
  dataKey?: string | undefined;
538
+ valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
526
539
  id: import("../internals/index.js").AxisId;
527
540
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
528
541
  height: number;
529
542
  position?: "top" | "bottom" | "none";
530
543
  zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
531
544
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
532
- domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
533
- min: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
534
- max: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
545
+ domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
546
+ min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
547
+ max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
535
548
  }) | undefined;
536
549
  hideTooltip?: boolean | undefined;
537
550
  ignoreTooltip?: boolean | undefined;
538
551
  offset: number;
539
552
  scaleType: "time";
540
- colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleOrdinal<string | number | Date, string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleOrdinal<number, string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number | Date, string | null>;
553
+ 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>;
541
554
  triggerTooltip?: boolean;
542
555
  } | {
543
556
  axis?: "x";
@@ -564,21 +577,22 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
564
577
  tickLabelPlacement?: "middle" | "tick";
565
578
  data?: readonly any[] | undefined;
566
579
  dataKey?: string | undefined;
580
+ valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
567
581
  id: import("../internals/index.js").AxisId;
568
582
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
569
583
  height: number;
570
584
  position?: "top" | "bottom" | "none";
571
585
  zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
572
586
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
573
- domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
574
- min: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
575
- max: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
587
+ domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
588
+ min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
589
+ max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
576
590
  }) | undefined;
577
591
  hideTooltip?: boolean | undefined;
578
592
  ignoreTooltip?: boolean | undefined;
579
593
  offset: number;
580
594
  scaleType: "time";
581
- colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleOrdinal<string | number | Date, string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleOrdinal<number, string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number | Date, string | null>;
595
+ 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>;
582
596
  triggerTooltip?: boolean;
583
597
  } | {
584
598
  axis?: "x";
@@ -605,21 +619,22 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
605
619
  tickLabelPlacement?: "middle" | "tick";
606
620
  data?: readonly any[] | undefined;
607
621
  dataKey?: string | undefined;
622
+ valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
608
623
  id: import("../internals/index.js").AxisId;
609
624
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
610
625
  height: number;
611
626
  position?: "top" | "bottom" | "none";
612
627
  zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
613
628
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
614
- domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
615
- min: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
616
- max: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
629
+ domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
630
+ min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
631
+ max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
617
632
  }) | undefined;
618
633
  hideTooltip?: boolean | undefined;
619
634
  ignoreTooltip?: boolean | undefined;
620
635
  offset: number;
621
636
  scaleType: "time";
622
- colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number, string | null>;
637
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
623
638
  triggerTooltip?: boolean;
624
639
  } | {
625
640
  axis?: "x";
@@ -646,21 +661,22 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
646
661
  tickLabelPlacement?: "middle" | "tick";
647
662
  data?: readonly any[] | undefined;
648
663
  dataKey?: string | undefined;
664
+ valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
649
665
  id: import("../internals/index.js").AxisId;
650
666
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
651
667
  height: number;
652
668
  position?: "top" | "bottom" | "none";
653
669
  zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
654
670
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
655
- domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
656
- min: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
657
- max: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
671
+ domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
672
+ min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
673
+ max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
658
674
  }) | undefined;
659
675
  hideTooltip?: boolean | undefined;
660
676
  ignoreTooltip?: boolean | undefined;
661
677
  offset: number;
662
678
  scaleType: "time";
663
- colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number, string | null>;
679
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
664
680
  triggerTooltip?: boolean;
665
681
  } | {
666
682
  axis?: "x";
@@ -687,21 +703,22 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
687
703
  tickLabelPlacement?: "middle" | "tick";
688
704
  data?: readonly any[] | undefined;
689
705
  dataKey?: string | undefined;
706
+ valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
690
707
  id: import("../internals/index.js").AxisId;
691
708
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
692
709
  height: number;
693
710
  position?: "top" | "bottom" | "none";
694
711
  zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
695
712
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
696
- domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
697
- min: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
698
- max: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
713
+ domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
714
+ min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
715
+ max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
699
716
  }) | undefined;
700
717
  hideTooltip?: boolean | undefined;
701
718
  ignoreTooltip?: boolean | undefined;
702
719
  offset: number;
703
720
  scaleType: "time";
704
- colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number, string | null>;
721
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
705
722
  triggerTooltip?: boolean;
706
723
  } | {
707
724
  axis?: "x";
@@ -728,21 +745,22 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
728
745
  tickLabelPlacement?: "middle" | "tick";
729
746
  data?: readonly any[] | undefined;
730
747
  dataKey?: string | undefined;
748
+ valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
731
749
  id: import("../internals/index.js").AxisId;
732
750
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
733
751
  height: number;
734
752
  position?: "top" | "bottom" | "none";
735
753
  zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
736
754
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
737
- domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
738
- min: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
739
- max: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
755
+ domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
756
+ min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
757
+ max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
740
758
  }) | undefined;
741
759
  hideTooltip?: boolean | undefined;
742
760
  ignoreTooltip?: boolean | undefined;
743
761
  offset: number;
744
762
  scaleType: "time";
745
- colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number | Date, string | null>;
763
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
746
764
  triggerTooltip?: boolean;
747
765
  } | {
748
766
  axis?: "x";
@@ -769,21 +787,22 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
769
787
  tickLabelPlacement?: "middle" | "tick";
770
788
  data?: readonly any[] | undefined;
771
789
  dataKey?: string | undefined;
790
+ valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
772
791
  id: import("../internals/index.js").AxisId;
773
792
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
774
793
  height: number;
775
794
  position?: "top" | "bottom" | "none";
776
795
  zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
777
796
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
778
- domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
779
- min: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
780
- max: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
797
+ domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
798
+ min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
799
+ max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
781
800
  }) | undefined;
782
801
  hideTooltip?: boolean | undefined;
783
802
  ignoreTooltip?: boolean | undefined;
784
803
  offset: number;
785
804
  scaleType: "log";
786
- colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number, string | null>;
805
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
787
806
  triggerTooltip?: boolean;
788
807
  } | {
789
808
  axis?: "x";
@@ -810,21 +829,22 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
810
829
  tickLabelPlacement?: "middle" | "tick";
811
830
  data?: readonly any[] | undefined;
812
831
  dataKey?: string | undefined;
832
+ valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
813
833
  id: import("../internals/index.js").AxisId;
814
834
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
815
835
  height: number;
816
836
  position?: "top" | "bottom" | "none";
817
837
  zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
818
838
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
819
- domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
820
- min: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
821
- max: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
839
+ domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
840
+ min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
841
+ max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
822
842
  }) | undefined;
823
843
  hideTooltip?: boolean | undefined;
824
844
  ignoreTooltip?: boolean | undefined;
825
845
  offset: number;
826
846
  scaleType: "log";
827
- colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number | Date, string | null>;
847
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
828
848
  triggerTooltip?: boolean;
829
849
  } | {
830
850
  axis?: "x";
@@ -851,21 +871,22 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
851
871
  tickLabelPlacement?: "middle" | "tick";
852
872
  data?: readonly any[] | undefined;
853
873
  dataKey?: string | undefined;
874
+ valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
854
875
  id: import("../internals/index.js").AxisId;
855
876
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
856
877
  height: number;
857
878
  position?: "top" | "bottom" | "none";
858
879
  zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
859
880
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
860
- domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
861
- min: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
862
- max: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
881
+ domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
882
+ min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
883
+ max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
863
884
  }) | undefined;
864
885
  hideTooltip?: boolean | undefined;
865
886
  ignoreTooltip?: boolean | undefined;
866
887
  offset: number;
867
888
  scaleType: "log";
868
- colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number, string | null>;
889
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
869
890
  triggerTooltip?: boolean;
870
891
  } | {
871
892
  axis?: "x";
@@ -892,21 +913,22 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
892
913
  tickLabelPlacement?: "middle" | "tick";
893
914
  data?: readonly any[] | undefined;
894
915
  dataKey?: string | undefined;
916
+ valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
895
917
  id: import("../internals/index.js").AxisId;
896
918
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
897
919
  height: number;
898
920
  position?: "top" | "bottom" | "none";
899
921
  zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
900
922
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
901
- domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
902
- min: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
903
- max: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
923
+ domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
924
+ min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
925
+ max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
904
926
  }) | undefined;
905
927
  hideTooltip?: boolean | undefined;
906
928
  ignoreTooltip?: boolean | undefined;
907
929
  offset: number;
908
930
  scaleType: "log";
909
- colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleOrdinal<string | number | Date, string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleOrdinal<number, string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number | Date, string | null>;
931
+ 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>;
910
932
  triggerTooltip?: boolean;
911
933
  } | {
912
934
  axis?: "x";
@@ -933,21 +955,22 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
933
955
  tickLabelPlacement?: "middle" | "tick";
934
956
  data?: readonly any[] | undefined;
935
957
  dataKey?: string | undefined;
958
+ valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
936
959
  id: import("../internals/index.js").AxisId;
937
960
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
938
961
  height: number;
939
962
  position?: "top" | "bottom" | "none";
940
963
  zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
941
964
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
942
- domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
943
- min: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
944
- max: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
965
+ domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
966
+ min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
967
+ max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
945
968
  }) | undefined;
946
969
  hideTooltip?: boolean | undefined;
947
970
  ignoreTooltip?: boolean | undefined;
948
971
  offset: number;
949
972
  scaleType: "log";
950
- colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleOrdinal<string | number | Date, string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleOrdinal<number, string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number | Date, string | null>;
973
+ 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>;
951
974
  triggerTooltip?: boolean;
952
975
  } | {
953
976
  axis?: "x";
@@ -974,21 +997,22 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
974
997
  tickLabelPlacement?: "middle" | "tick";
975
998
  data?: readonly any[] | undefined;
976
999
  dataKey?: string | undefined;
1000
+ valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
977
1001
  id: import("../internals/index.js").AxisId;
978
1002
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
979
1003
  height: number;
980
1004
  position?: "top" | "bottom" | "none";
981
1005
  zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
982
1006
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
983
- domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
984
- min: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
985
- max: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
1007
+ domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
1008
+ min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
1009
+ max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
986
1010
  }) | undefined;
987
1011
  hideTooltip?: boolean | undefined;
988
1012
  ignoreTooltip?: boolean | undefined;
989
1013
  offset: number;
990
1014
  scaleType: "log";
991
- colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number, string | null>;
1015
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
992
1016
  triggerTooltip?: boolean;
993
1017
  } | {
994
1018
  axis?: "x";
@@ -1015,21 +1039,22 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
1015
1039
  tickLabelPlacement?: "middle" | "tick";
1016
1040
  data?: readonly any[] | undefined;
1017
1041
  dataKey?: string | undefined;
1042
+ valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
1018
1043
  id: import("../internals/index.js").AxisId;
1019
1044
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
1020
1045
  height: number;
1021
1046
  position?: "top" | "bottom" | "none";
1022
1047
  zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
1023
1048
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
1024
- domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
1025
- min: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
1026
- max: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
1049
+ domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
1050
+ min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
1051
+ max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
1027
1052
  }) | undefined;
1028
1053
  hideTooltip?: boolean | undefined;
1029
1054
  ignoreTooltip?: boolean | undefined;
1030
1055
  offset: number;
1031
1056
  scaleType: "log";
1032
- colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number, string | null>;
1057
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
1033
1058
  triggerTooltip?: boolean;
1034
1059
  } | {
1035
1060
  axis?: "x";
@@ -1056,21 +1081,22 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
1056
1081
  tickLabelPlacement?: "middle" | "tick";
1057
1082
  data?: readonly any[] | undefined;
1058
1083
  dataKey?: string | undefined;
1084
+ valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
1059
1085
  id: import("../internals/index.js").AxisId;
1060
1086
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
1061
1087
  height: number;
1062
1088
  position?: "top" | "bottom" | "none";
1063
1089
  zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
1064
1090
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
1065
- domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
1066
- min: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
1067
- max: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
1091
+ domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
1092
+ min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
1093
+ max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
1068
1094
  }) | undefined;
1069
1095
  hideTooltip?: boolean | undefined;
1070
1096
  ignoreTooltip?: boolean | undefined;
1071
1097
  offset: number;
1072
1098
  scaleType: "log";
1073
- colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number, string | null>;
1099
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
1074
1100
  triggerTooltip?: boolean;
1075
1101
  } | {
1076
1102
  axis?: "x";
@@ -1097,21 +1123,22 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
1097
1123
  tickLabelPlacement?: "middle" | "tick";
1098
1124
  data?: readonly any[] | undefined;
1099
1125
  dataKey?: string | undefined;
1126
+ valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
1100
1127
  id: import("../internals/index.js").AxisId;
1101
1128
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
1102
1129
  height: number;
1103
1130
  position?: "top" | "bottom" | "none";
1104
1131
  zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
1105
1132
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
1106
- domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
1107
- min: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
1108
- max: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
1133
+ domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
1134
+ min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
1135
+ max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
1109
1136
  }) | undefined;
1110
1137
  hideTooltip?: boolean | undefined;
1111
1138
  ignoreTooltip?: boolean | undefined;
1112
1139
  offset: number;
1113
1140
  scaleType: "log";
1114
- colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number | Date, string | null>;
1141
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
1115
1142
  triggerTooltip?: boolean;
1116
1143
  } | {
1117
1144
  axis?: "x";
@@ -1138,15 +1165,16 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
1138
1165
  tickLabelPlacement?: "middle" | "tick";
1139
1166
  data?: readonly any[] | undefined;
1140
1167
  dataKey?: string | undefined;
1168
+ valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
1141
1169
  id: import("../internals/index.js").AxisId;
1142
1170
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
1143
1171
  height: number;
1144
1172
  position?: "top" | "bottom" | "none";
1145
1173
  zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
1146
1174
  colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
1147
- domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
1148
- min: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
1149
- max: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
1175
+ domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
1176
+ min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
1177
+ max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
1150
1178
  }) | undefined;
1151
1179
  hideTooltip?: boolean | undefined;
1152
1180
  ignoreTooltip?: boolean | undefined;
@@ -1156,7 +1184,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
1156
1184
  categoryGapRatio: number;
1157
1185
  barGapRatio: number;
1158
1186
  groups?: import("../internals/index.js").AxisGroup[];
1159
- colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number, string | null>;
1187
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
1160
1188
  triggerTooltip?: boolean;
1161
1189
  } | {
1162
1190
  axis?: "x";
@@ -1183,15 +1211,16 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
1183
1211
  tickLabelPlacement?: "middle" | "tick";
1184
1212
  data?: readonly any[] | undefined;
1185
1213
  dataKey?: string | undefined;
1214
+ valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
1186
1215
  id: import("../internals/index.js").AxisId;
1187
1216
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
1188
1217
  height: number;
1189
1218
  position?: "top" | "bottom" | "none";
1190
1219
  zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
1191
1220
  colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
1192
- domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
1193
- min: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
1194
- max: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
1221
+ domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
1222
+ min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
1223
+ max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
1195
1224
  }) | undefined;
1196
1225
  hideTooltip?: boolean | undefined;
1197
1226
  ignoreTooltip?: boolean | undefined;
@@ -1201,7 +1230,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
1201
1230
  categoryGapRatio: number;
1202
1231
  barGapRatio: number;
1203
1232
  groups?: import("../internals/index.js").AxisGroup[];
1204
- colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number | Date, string | null>;
1233
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
1205
1234
  triggerTooltip?: boolean;
1206
1235
  } | {
1207
1236
  axis?: "x";
@@ -1228,15 +1257,16 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
1228
1257
  tickLabelPlacement?: "middle" | "tick";
1229
1258
  data?: readonly any[] | undefined;
1230
1259
  dataKey?: string | undefined;
1260
+ valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
1231
1261
  id: import("../internals/index.js").AxisId;
1232
1262
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
1233
1263
  height: number;
1234
1264
  position?: "top" | "bottom" | "none";
1235
1265
  zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
1236
1266
  colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
1237
- domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
1238
- min: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
1239
- max: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
1267
+ domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
1268
+ min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
1269
+ max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
1240
1270
  }) | undefined;
1241
1271
  hideTooltip?: boolean | undefined;
1242
1272
  ignoreTooltip?: boolean | undefined;
@@ -1246,7 +1276,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
1246
1276
  categoryGapRatio: number;
1247
1277
  barGapRatio: number;
1248
1278
  groups?: import("../internals/index.js").AxisGroup[];
1249
- colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number, string | null>;
1279
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
1250
1280
  triggerTooltip?: boolean;
1251
1281
  } | {
1252
1282
  axis?: "x";
@@ -1273,15 +1303,16 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
1273
1303
  tickLabelPlacement?: "middle" | "tick";
1274
1304
  data?: readonly any[] | undefined;
1275
1305
  dataKey?: string | undefined;
1306
+ valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
1276
1307
  id: import("../internals/index.js").AxisId;
1277
1308
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
1278
1309
  height: number;
1279
1310
  position?: "top" | "bottom" | "none";
1280
1311
  zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
1281
1312
  colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
1282
- domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
1283
- min: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
1284
- max: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
1313
+ domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
1314
+ min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
1315
+ max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
1285
1316
  }) | undefined;
1286
1317
  hideTooltip?: boolean | undefined;
1287
1318
  ignoreTooltip?: boolean | undefined;
@@ -1291,7 +1322,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
1291
1322
  categoryGapRatio: number;
1292
1323
  barGapRatio: number;
1293
1324
  groups?: import("../internals/index.js").AxisGroup[];
1294
- colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleOrdinal<string | number | Date, string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleOrdinal<number, string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number | Date, string | null>;
1325
+ 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>;
1295
1326
  triggerTooltip?: boolean;
1296
1327
  } | {
1297
1328
  axis?: "x";
@@ -1318,15 +1349,16 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
1318
1349
  tickLabelPlacement?: "middle" | "tick";
1319
1350
  data?: readonly any[] | undefined;
1320
1351
  dataKey?: string | undefined;
1352
+ valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
1321
1353
  id: import("../internals/index.js").AxisId;
1322
1354
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
1323
1355
  height: number;
1324
1356
  position?: "top" | "bottom" | "none";
1325
1357
  zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
1326
1358
  colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
1327
- domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
1328
- min: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
1329
- max: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
1359
+ domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
1360
+ min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
1361
+ max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
1330
1362
  }) | undefined;
1331
1363
  hideTooltip?: boolean | undefined;
1332
1364
  ignoreTooltip?: boolean | undefined;
@@ -1336,7 +1368,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
1336
1368
  categoryGapRatio: number;
1337
1369
  barGapRatio: number;
1338
1370
  groups?: import("../internals/index.js").AxisGroup[];
1339
- colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleOrdinal<string | number | Date, string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleOrdinal<number, string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number | Date, string | null>;
1371
+ 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>;
1340
1372
  triggerTooltip?: boolean;
1341
1373
  } | {
1342
1374
  axis?: "x";
@@ -1363,15 +1395,16 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
1363
1395
  tickLabelPlacement?: "middle" | "tick";
1364
1396
  data?: readonly any[] | undefined;
1365
1397
  dataKey?: string | undefined;
1398
+ valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
1366
1399
  id: import("../internals/index.js").AxisId;
1367
1400
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
1368
1401
  height: number;
1369
1402
  position?: "top" | "bottom" | "none";
1370
1403
  zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
1371
1404
  colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
1372
- domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
1373
- min: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
1374
- max: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
1405
+ domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
1406
+ min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
1407
+ max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
1375
1408
  }) | undefined;
1376
1409
  hideTooltip?: boolean | undefined;
1377
1410
  ignoreTooltip?: boolean | undefined;
@@ -1381,7 +1414,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
1381
1414
  categoryGapRatio: number;
1382
1415
  barGapRatio: number;
1383
1416
  groups?: import("../internals/index.js").AxisGroup[];
1384
- colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number, string | null>;
1417
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
1385
1418
  triggerTooltip?: boolean;
1386
1419
  } | {
1387
1420
  axis?: "x";
@@ -1408,15 +1441,16 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
1408
1441
  tickLabelPlacement?: "middle" | "tick";
1409
1442
  data?: readonly any[] | undefined;
1410
1443
  dataKey?: string | undefined;
1444
+ valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
1411
1445
  id: import("../internals/index.js").AxisId;
1412
1446
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
1413
1447
  height: number;
1414
1448
  position?: "top" | "bottom" | "none";
1415
1449
  zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
1416
1450
  colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
1417
- domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
1418
- min: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
1419
- max: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
1451
+ domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
1452
+ min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
1453
+ max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
1420
1454
  }) | undefined;
1421
1455
  hideTooltip?: boolean | undefined;
1422
1456
  ignoreTooltip?: boolean | undefined;
@@ -1426,7 +1460,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
1426
1460
  categoryGapRatio: number;
1427
1461
  barGapRatio: number;
1428
1462
  groups?: import("../internals/index.js").AxisGroup[];
1429
- colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number, string | null>;
1463
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
1430
1464
  triggerTooltip?: boolean;
1431
1465
  } | {
1432
1466
  axis?: "x";
@@ -1453,15 +1487,16 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
1453
1487
  tickLabelPlacement?: "middle" | "tick";
1454
1488
  data?: readonly any[] | undefined;
1455
1489
  dataKey?: string | undefined;
1490
+ valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
1456
1491
  id: import("../internals/index.js").AxisId;
1457
1492
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
1458
1493
  height: number;
1459
1494
  position?: "top" | "bottom" | "none";
1460
1495
  zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
1461
1496
  colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
1462
- domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
1463
- min: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
1464
- max: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
1497
+ domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
1498
+ min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
1499
+ max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
1465
1500
  }) | undefined;
1466
1501
  hideTooltip?: boolean | undefined;
1467
1502
  ignoreTooltip?: boolean | undefined;
@@ -1471,7 +1506,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
1471
1506
  categoryGapRatio: number;
1472
1507
  barGapRatio: number;
1473
1508
  groups?: import("../internals/index.js").AxisGroup[];
1474
- colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number, string | null>;
1509
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
1475
1510
  triggerTooltip?: boolean;
1476
1511
  } | {
1477
1512
  axis?: "x";
@@ -1498,15 +1533,16 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
1498
1533
  tickLabelPlacement?: "middle" | "tick";
1499
1534
  data?: readonly any[] | undefined;
1500
1535
  dataKey?: string | undefined;
1536
+ valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
1501
1537
  id: import("../internals/index.js").AxisId;
1502
1538
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
1503
1539
  height: number;
1504
1540
  position?: "top" | "bottom" | "none";
1505
1541
  zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
1506
1542
  colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
1507
- domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
1508
- min: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
1509
- max: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
1543
+ domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
1544
+ min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
1545
+ max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
1510
1546
  }) | undefined;
1511
1547
  hideTooltip?: boolean | undefined;
1512
1548
  ignoreTooltip?: boolean | undefined;
@@ -1516,7 +1552,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
1516
1552
  categoryGapRatio: number;
1517
1553
  barGapRatio: number;
1518
1554
  groups?: import("../internals/index.js").AxisGroup[];
1519
- colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number | Date, string | null>;
1555
+ 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
1556
  triggerTooltip?: boolean;
1521
1557
  } | {
1522
1558
  axis?: "x";
@@ -1543,15 +1579,16 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
1543
1579
  tickLabelPlacement?: "middle" | "tick";
1544
1580
  data?: readonly any[] | undefined;
1545
1581
  dataKey?: string | undefined;
1582
+ valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
1546
1583
  id: import("../internals/index.js").AxisId;
1547
1584
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
1548
1585
  height: number;
1549
1586
  position?: "top" | "bottom" | "none";
1550
1587
  zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
1551
1588
  colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
1552
- domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
1553
- min: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
1554
- max: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
1589
+ domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
1590
+ min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
1591
+ max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
1555
1592
  }) | undefined;
1556
1593
  hideTooltip?: boolean | undefined;
1557
1594
  ignoreTooltip?: boolean | undefined;
@@ -1559,7 +1596,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
1559
1596
  scaleType: "point";
1560
1597
  ordinalTimeTicks?: import("../index.js").OrdinalTimeTicks;
1561
1598
  groups?: import("../internals/index.js").AxisGroup[];
1562
- colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number, string | null>;
1599
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
1563
1600
  triggerTooltip?: boolean;
1564
1601
  } | {
1565
1602
  axis?: "x";
@@ -1586,15 +1623,16 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
1586
1623
  tickLabelPlacement?: "middle" | "tick";
1587
1624
  data?: readonly any[] | undefined;
1588
1625
  dataKey?: string | undefined;
1626
+ valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
1589
1627
  id: import("../internals/index.js").AxisId;
1590
1628
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
1591
1629
  height: number;
1592
1630
  position?: "top" | "bottom" | "none";
1593
1631
  zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
1594
1632
  colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
1595
- domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
1596
- min: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
1597
- max: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
1633
+ domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
1634
+ min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
1635
+ max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
1598
1636
  }) | undefined;
1599
1637
  hideTooltip?: boolean | undefined;
1600
1638
  ignoreTooltip?: boolean | undefined;
@@ -1602,7 +1640,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
1602
1640
  scaleType: "point";
1603
1641
  ordinalTimeTicks?: import("../index.js").OrdinalTimeTicks;
1604
1642
  groups?: import("../internals/index.js").AxisGroup[];
1605
- colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number | Date, string | null>;
1643
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
1606
1644
  triggerTooltip?: boolean;
1607
1645
  } | {
1608
1646
  axis?: "x";
@@ -1629,15 +1667,16 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
1629
1667
  tickLabelPlacement?: "middle" | "tick";
1630
1668
  data?: readonly any[] | undefined;
1631
1669
  dataKey?: string | undefined;
1670
+ valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
1632
1671
  id: import("../internals/index.js").AxisId;
1633
1672
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
1634
1673
  height: number;
1635
1674
  position?: "top" | "bottom" | "none";
1636
1675
  zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
1637
1676
  colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
1638
- domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
1639
- min: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
1640
- max: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
1677
+ domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
1678
+ min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
1679
+ max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
1641
1680
  }) | undefined;
1642
1681
  hideTooltip?: boolean | undefined;
1643
1682
  ignoreTooltip?: boolean | undefined;
@@ -1645,7 +1684,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
1645
1684
  scaleType: "point";
1646
1685
  ordinalTimeTicks?: import("../index.js").OrdinalTimeTicks;
1647
1686
  groups?: import("../internals/index.js").AxisGroup[];
1648
- colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number, string | null>;
1687
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
1649
1688
  triggerTooltip?: boolean;
1650
1689
  } | {
1651
1690
  axis?: "x";
@@ -1672,15 +1711,16 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
1672
1711
  tickLabelPlacement?: "middle" | "tick";
1673
1712
  data?: readonly any[] | undefined;
1674
1713
  dataKey?: string | undefined;
1714
+ valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
1675
1715
  id: import("../internals/index.js").AxisId;
1676
1716
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
1677
1717
  height: number;
1678
1718
  position?: "top" | "bottom" | "none";
1679
1719
  zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
1680
1720
  colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
1681
- domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
1682
- min: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
1683
- max: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
1721
+ domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
1722
+ min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
1723
+ max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
1684
1724
  }) | undefined;
1685
1725
  hideTooltip?: boolean | undefined;
1686
1726
  ignoreTooltip?: boolean | undefined;
@@ -1688,7 +1728,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
1688
1728
  scaleType: "point";
1689
1729
  ordinalTimeTicks?: import("../index.js").OrdinalTimeTicks;
1690
1730
  groups?: import("../internals/index.js").AxisGroup[];
1691
- colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleOrdinal<string | number | Date, string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleOrdinal<number, string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number | Date, string | null>;
1731
+ 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>;
1692
1732
  triggerTooltip?: boolean;
1693
1733
  } | {
1694
1734
  axis?: "x";
@@ -1715,15 +1755,16 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
1715
1755
  tickLabelPlacement?: "middle" | "tick";
1716
1756
  data?: readonly any[] | undefined;
1717
1757
  dataKey?: string | undefined;
1758
+ valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
1718
1759
  id: import("../internals/index.js").AxisId;
1719
1760
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
1720
1761
  height: number;
1721
1762
  position?: "top" | "bottom" | "none";
1722
1763
  zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
1723
1764
  colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
1724
- domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
1725
- min: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
1726
- max: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
1765
+ domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
1766
+ min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
1767
+ max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
1727
1768
  }) | undefined;
1728
1769
  hideTooltip?: boolean | undefined;
1729
1770
  ignoreTooltip?: boolean | undefined;
@@ -1731,7 +1772,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
1731
1772
  scaleType: "point";
1732
1773
  ordinalTimeTicks?: import("../index.js").OrdinalTimeTicks;
1733
1774
  groups?: import("../internals/index.js").AxisGroup[];
1734
- colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleOrdinal<string | number | Date, string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleOrdinal<number, string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number | Date, string | null>;
1775
+ 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>;
1735
1776
  triggerTooltip?: boolean;
1736
1777
  } | {
1737
1778
  axis?: "x";
@@ -1758,15 +1799,16 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
1758
1799
  tickLabelPlacement?: "middle" | "tick";
1759
1800
  data?: readonly any[] | undefined;
1760
1801
  dataKey?: string | undefined;
1802
+ valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
1761
1803
  id: import("../internals/index.js").AxisId;
1762
1804
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
1763
1805
  height: number;
1764
1806
  position?: "top" | "bottom" | "none";
1765
1807
  zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
1766
1808
  colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
1767
- domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
1768
- min: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
1769
- max: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
1809
+ domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
1810
+ min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
1811
+ max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
1770
1812
  }) | undefined;
1771
1813
  hideTooltip?: boolean | undefined;
1772
1814
  ignoreTooltip?: boolean | undefined;
@@ -1774,7 +1816,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
1774
1816
  scaleType: "point";
1775
1817
  ordinalTimeTicks?: import("../index.js").OrdinalTimeTicks;
1776
1818
  groups?: import("../internals/index.js").AxisGroup[];
1777
- colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number, string | null>;
1819
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
1778
1820
  triggerTooltip?: boolean;
1779
1821
  } | {
1780
1822
  axis?: "x";
@@ -1801,15 +1843,16 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
1801
1843
  tickLabelPlacement?: "middle" | "tick";
1802
1844
  data?: readonly any[] | undefined;
1803
1845
  dataKey?: string | undefined;
1846
+ valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
1804
1847
  id: import("../internals/index.js").AxisId;
1805
1848
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
1806
1849
  height: number;
1807
1850
  position?: "top" | "bottom" | "none";
1808
1851
  zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
1809
1852
  colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
1810
- domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
1811
- min: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
1812
- max: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
1853
+ domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
1854
+ min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
1855
+ max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
1813
1856
  }) | undefined;
1814
1857
  hideTooltip?: boolean | undefined;
1815
1858
  ignoreTooltip?: boolean | undefined;
@@ -1817,7 +1860,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
1817
1860
  scaleType: "point";
1818
1861
  ordinalTimeTicks?: import("../index.js").OrdinalTimeTicks;
1819
1862
  groups?: import("../internals/index.js").AxisGroup[];
1820
- colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number, string | null>;
1863
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
1821
1864
  triggerTooltip?: boolean;
1822
1865
  } | {
1823
1866
  axis?: "x";
@@ -1844,15 +1887,16 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
1844
1887
  tickLabelPlacement?: "middle" | "tick";
1845
1888
  data?: readonly any[] | undefined;
1846
1889
  dataKey?: string | undefined;
1890
+ valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
1847
1891
  id: import("../internals/index.js").AxisId;
1848
1892
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
1849
1893
  height: number;
1850
1894
  position?: "top" | "bottom" | "none";
1851
1895
  zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
1852
1896
  colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
1853
- domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
1854
- min: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
1855
- max: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
1897
+ domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
1898
+ min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
1899
+ max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
1856
1900
  }) | undefined;
1857
1901
  hideTooltip?: boolean | undefined;
1858
1902
  ignoreTooltip?: boolean | undefined;
@@ -1860,7 +1904,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
1860
1904
  scaleType: "point";
1861
1905
  ordinalTimeTicks?: import("../index.js").OrdinalTimeTicks;
1862
1906
  groups?: import("../internals/index.js").AxisGroup[];
1863
- colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number, string | null>;
1907
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
1864
1908
  triggerTooltip?: boolean;
1865
1909
  } | {
1866
1910
  axis?: "x";
@@ -1887,15 +1931,16 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
1887
1931
  tickLabelPlacement?: "middle" | "tick";
1888
1932
  data?: readonly any[] | undefined;
1889
1933
  dataKey?: string | undefined;
1934
+ valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
1890
1935
  id: import("../internals/index.js").AxisId;
1891
1936
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
1892
1937
  height: number;
1893
1938
  position?: "top" | "bottom" | "none";
1894
1939
  zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
1895
1940
  colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
1896
- domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
1897
- min: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
1898
- max: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
1941
+ domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
1942
+ min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
1943
+ max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
1899
1944
  }) | undefined;
1900
1945
  hideTooltip?: boolean | undefined;
1901
1946
  ignoreTooltip?: boolean | undefined;
@@ -1903,7 +1948,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
1903
1948
  scaleType: "point";
1904
1949
  ordinalTimeTicks?: import("../index.js").OrdinalTimeTicks;
1905
1950
  groups?: import("../internals/index.js").AxisGroup[];
1906
- colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number | Date, string | null>;
1951
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
1907
1952
  triggerTooltip?: boolean;
1908
1953
  } | {
1909
1954
  axis?: "x";
@@ -1930,22 +1975,23 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
1930
1975
  tickLabelPlacement?: "middle" | "tick";
1931
1976
  data?: readonly any[] | undefined;
1932
1977
  dataKey?: string | undefined;
1978
+ valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
1933
1979
  id: import("../internals/index.js").AxisId;
1934
1980
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
1935
1981
  height: number;
1936
1982
  position?: "top" | "bottom" | "none";
1937
1983
  zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
1938
1984
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
1939
- domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
1940
- min: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
1941
- max: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
1985
+ domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
1986
+ min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
1987
+ max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
1942
1988
  }) | undefined;
1943
1989
  hideTooltip?: boolean | undefined;
1944
1990
  ignoreTooltip?: boolean | undefined;
1945
1991
  offset: number;
1946
1992
  scaleType: "symlog";
1947
1993
  constant?: number;
1948
- colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number, string | null>;
1994
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
1949
1995
  triggerTooltip?: boolean;
1950
1996
  } | {
1951
1997
  axis?: "x";
@@ -1972,22 +2018,23 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
1972
2018
  tickLabelPlacement?: "middle" | "tick";
1973
2019
  data?: readonly any[] | undefined;
1974
2020
  dataKey?: string | undefined;
2021
+ valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
1975
2022
  id: import("../internals/index.js").AxisId;
1976
2023
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
1977
2024
  height: number;
1978
2025
  position?: "top" | "bottom" | "none";
1979
2026
  zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
1980
2027
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
1981
- domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
1982
- min: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
1983
- max: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
2028
+ domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
2029
+ min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
2030
+ max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
1984
2031
  }) | undefined;
1985
2032
  hideTooltip?: boolean | undefined;
1986
2033
  ignoreTooltip?: boolean | undefined;
1987
2034
  offset: number;
1988
2035
  scaleType: "symlog";
1989
2036
  constant?: number;
1990
- colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number | Date, string | null>;
2037
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
1991
2038
  triggerTooltip?: boolean;
1992
2039
  } | {
1993
2040
  axis?: "x";
@@ -2014,22 +2061,23 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
2014
2061
  tickLabelPlacement?: "middle" | "tick";
2015
2062
  data?: readonly any[] | undefined;
2016
2063
  dataKey?: string | undefined;
2064
+ valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
2017
2065
  id: import("../internals/index.js").AxisId;
2018
2066
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
2019
2067
  height: number;
2020
2068
  position?: "top" | "bottom" | "none";
2021
2069
  zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
2022
2070
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
2023
- domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
2024
- min: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
2025
- max: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
2071
+ domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
2072
+ min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
2073
+ max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
2026
2074
  }) | undefined;
2027
2075
  hideTooltip?: boolean | undefined;
2028
2076
  ignoreTooltip?: boolean | undefined;
2029
2077
  offset: number;
2030
2078
  scaleType: "symlog";
2031
2079
  constant?: number;
2032
- colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number, string | null>;
2080
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
2033
2081
  triggerTooltip?: boolean;
2034
2082
  } | {
2035
2083
  axis?: "x";
@@ -2056,22 +2104,23 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
2056
2104
  tickLabelPlacement?: "middle" | "tick";
2057
2105
  data?: readonly any[] | undefined;
2058
2106
  dataKey?: string | undefined;
2107
+ valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
2059
2108
  id: import("../internals/index.js").AxisId;
2060
2109
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
2061
2110
  height: number;
2062
2111
  position?: "top" | "bottom" | "none";
2063
2112
  zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
2064
2113
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
2065
- domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
2066
- min: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
2067
- max: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
2114
+ domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
2115
+ min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
2116
+ max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
2068
2117
  }) | undefined;
2069
2118
  hideTooltip?: boolean | undefined;
2070
2119
  ignoreTooltip?: boolean | undefined;
2071
2120
  offset: number;
2072
2121
  scaleType: "symlog";
2073
2122
  constant?: number;
2074
- colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleOrdinal<string | number | Date, string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleOrdinal<number, string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number | Date, string | null>;
2123
+ 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>;
2075
2124
  triggerTooltip?: boolean;
2076
2125
  } | {
2077
2126
  axis?: "x";
@@ -2098,22 +2147,23 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
2098
2147
  tickLabelPlacement?: "middle" | "tick";
2099
2148
  data?: readonly any[] | undefined;
2100
2149
  dataKey?: string | undefined;
2150
+ valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
2101
2151
  id: import("../internals/index.js").AxisId;
2102
2152
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
2103
2153
  height: number;
2104
2154
  position?: "top" | "bottom" | "none";
2105
2155
  zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
2106
2156
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
2107
- domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
2108
- min: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
2109
- max: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
2157
+ domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
2158
+ min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
2159
+ max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
2110
2160
  }) | undefined;
2111
2161
  hideTooltip?: boolean | undefined;
2112
2162
  ignoreTooltip?: boolean | undefined;
2113
2163
  offset: number;
2114
2164
  scaleType: "symlog";
2115
2165
  constant?: number;
2116
- colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleOrdinal<string | number | Date, string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleOrdinal<number, string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number | Date, string | null>;
2166
+ 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>;
2117
2167
  triggerTooltip?: boolean;
2118
2168
  } | {
2119
2169
  axis?: "x";
@@ -2140,22 +2190,23 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
2140
2190
  tickLabelPlacement?: "middle" | "tick";
2141
2191
  data?: readonly any[] | undefined;
2142
2192
  dataKey?: string | undefined;
2193
+ valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
2143
2194
  id: import("../internals/index.js").AxisId;
2144
2195
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
2145
2196
  height: number;
2146
2197
  position?: "top" | "bottom" | "none";
2147
2198
  zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
2148
2199
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
2149
- domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
2150
- min: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
2151
- max: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
2200
+ domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
2201
+ min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
2202
+ max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
2152
2203
  }) | undefined;
2153
2204
  hideTooltip?: boolean | undefined;
2154
2205
  ignoreTooltip?: boolean | undefined;
2155
2206
  offset: number;
2156
2207
  scaleType: "symlog";
2157
2208
  constant?: number;
2158
- colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number, string | null>;
2209
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
2159
2210
  triggerTooltip?: boolean;
2160
2211
  } | {
2161
2212
  axis?: "x";
@@ -2182,22 +2233,23 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
2182
2233
  tickLabelPlacement?: "middle" | "tick";
2183
2234
  data?: readonly any[] | undefined;
2184
2235
  dataKey?: string | undefined;
2236
+ valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
2185
2237
  id: import("../internals/index.js").AxisId;
2186
2238
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
2187
2239
  height: number;
2188
2240
  position?: "top" | "bottom" | "none";
2189
2241
  zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
2190
2242
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
2191
- domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
2192
- min: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
2193
- max: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
2243
+ domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
2244
+ min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
2245
+ max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
2194
2246
  }) | undefined;
2195
2247
  hideTooltip?: boolean | undefined;
2196
2248
  ignoreTooltip?: boolean | undefined;
2197
2249
  offset: number;
2198
2250
  scaleType: "symlog";
2199
2251
  constant?: number;
2200
- colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number, string | null>;
2252
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
2201
2253
  triggerTooltip?: boolean;
2202
2254
  } | {
2203
2255
  axis?: "x";
@@ -2224,22 +2276,23 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
2224
2276
  tickLabelPlacement?: "middle" | "tick";
2225
2277
  data?: readonly any[] | undefined;
2226
2278
  dataKey?: string | undefined;
2279
+ valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
2227
2280
  id: import("../internals/index.js").AxisId;
2228
2281
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
2229
2282
  height: number;
2230
2283
  position?: "top" | "bottom" | "none";
2231
2284
  zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
2232
2285
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
2233
- domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
2234
- min: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
2235
- max: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
2286
+ domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
2287
+ min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
2288
+ max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
2236
2289
  }) | undefined;
2237
2290
  hideTooltip?: boolean | undefined;
2238
2291
  ignoreTooltip?: boolean | undefined;
2239
2292
  offset: number;
2240
2293
  scaleType: "symlog";
2241
2294
  constant?: number;
2242
- colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number, string | null>;
2295
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
2243
2296
  triggerTooltip?: boolean;
2244
2297
  } | {
2245
2298
  axis?: "x";
@@ -2266,22 +2319,23 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
2266
2319
  tickLabelPlacement?: "middle" | "tick";
2267
2320
  data?: readonly any[] | undefined;
2268
2321
  dataKey?: string | undefined;
2322
+ valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
2269
2323
  id: import("../internals/index.js").AxisId;
2270
2324
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
2271
2325
  height: number;
2272
2326
  position?: "top" | "bottom" | "none";
2273
2327
  zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
2274
2328
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
2275
- domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
2276
- min: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
2277
- max: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
2329
+ domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
2330
+ min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
2331
+ max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
2278
2332
  }) | undefined;
2279
2333
  hideTooltip?: boolean | undefined;
2280
2334
  ignoreTooltip?: boolean | undefined;
2281
2335
  offset: number;
2282
2336
  scaleType: "symlog";
2283
2337
  constant?: number;
2284
- colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number | Date, string | null>;
2338
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
2285
2339
  triggerTooltip?: boolean;
2286
2340
  } | {
2287
2341
  axis?: "x";
@@ -2308,21 +2362,22 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
2308
2362
  tickLabelPlacement?: "middle" | "tick";
2309
2363
  data?: readonly any[] | undefined;
2310
2364
  dataKey?: string | undefined;
2365
+ valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
2311
2366
  id: import("../internals/index.js").AxisId;
2312
2367
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
2313
2368
  height: number;
2314
2369
  position?: "top" | "bottom" | "none";
2315
2370
  zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
2316
2371
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
2317
- domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
2318
- min: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
2319
- max: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
2372
+ domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
2373
+ min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
2374
+ max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
2320
2375
  }) | undefined;
2321
2376
  hideTooltip?: boolean | undefined;
2322
2377
  ignoreTooltip?: boolean | undefined;
2323
2378
  offset: number;
2324
2379
  scaleType: "pow";
2325
- colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number, string | null>;
2380
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
2326
2381
  triggerTooltip?: boolean;
2327
2382
  } | {
2328
2383
  axis?: "x";
@@ -2349,21 +2404,22 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
2349
2404
  tickLabelPlacement?: "middle" | "tick";
2350
2405
  data?: readonly any[] | undefined;
2351
2406
  dataKey?: string | undefined;
2407
+ valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
2352
2408
  id: import("../internals/index.js").AxisId;
2353
2409
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
2354
2410
  height: number;
2355
2411
  position?: "top" | "bottom" | "none";
2356
2412
  zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
2357
2413
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
2358
- domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
2359
- min: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
2360
- max: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
2414
+ domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
2415
+ min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
2416
+ max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
2361
2417
  }) | undefined;
2362
2418
  hideTooltip?: boolean | undefined;
2363
2419
  ignoreTooltip?: boolean | undefined;
2364
2420
  offset: number;
2365
2421
  scaleType: "pow";
2366
- colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number | Date, string | null>;
2422
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
2367
2423
  triggerTooltip?: boolean;
2368
2424
  } | {
2369
2425
  axis?: "x";
@@ -2390,21 +2446,22 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
2390
2446
  tickLabelPlacement?: "middle" | "tick";
2391
2447
  data?: readonly any[] | undefined;
2392
2448
  dataKey?: string | undefined;
2449
+ valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
2393
2450
  id: import("../internals/index.js").AxisId;
2394
2451
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
2395
2452
  height: number;
2396
2453
  position?: "top" | "bottom" | "none";
2397
2454
  zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
2398
2455
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
2399
- domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
2400
- min: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
2401
- max: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
2456
+ domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
2457
+ min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
2458
+ max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
2402
2459
  }) | undefined;
2403
2460
  hideTooltip?: boolean | undefined;
2404
2461
  ignoreTooltip?: boolean | undefined;
2405
2462
  offset: number;
2406
2463
  scaleType: "pow";
2407
- colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number, string | null>;
2464
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
2408
2465
  triggerTooltip?: boolean;
2409
2466
  } | {
2410
2467
  axis?: "x";
@@ -2431,21 +2488,22 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
2431
2488
  tickLabelPlacement?: "middle" | "tick";
2432
2489
  data?: readonly any[] | undefined;
2433
2490
  dataKey?: string | undefined;
2491
+ valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
2434
2492
  id: import("../internals/index.js").AxisId;
2435
2493
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
2436
2494
  height: number;
2437
2495
  position?: "top" | "bottom" | "none";
2438
2496
  zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
2439
2497
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
2440
- domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
2441
- min: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
2442
- max: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
2498
+ domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
2499
+ min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
2500
+ max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
2443
2501
  }) | undefined;
2444
2502
  hideTooltip?: boolean | undefined;
2445
2503
  ignoreTooltip?: boolean | undefined;
2446
2504
  offset: number;
2447
2505
  scaleType: "pow";
2448
- colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleOrdinal<string | number | Date, string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleOrdinal<number, string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number | Date, string | null>;
2506
+ 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>;
2449
2507
  triggerTooltip?: boolean;
2450
2508
  } | {
2451
2509
  axis?: "x";
@@ -2472,21 +2530,22 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
2472
2530
  tickLabelPlacement?: "middle" | "tick";
2473
2531
  data?: readonly any[] | undefined;
2474
2532
  dataKey?: string | undefined;
2533
+ valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
2475
2534
  id: import("../internals/index.js").AxisId;
2476
2535
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
2477
2536
  height: number;
2478
2537
  position?: "top" | "bottom" | "none";
2479
2538
  zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
2480
2539
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
2481
- domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
2482
- min: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
2483
- max: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
2540
+ domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
2541
+ min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
2542
+ max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
2484
2543
  }) | undefined;
2485
2544
  hideTooltip?: boolean | undefined;
2486
2545
  ignoreTooltip?: boolean | undefined;
2487
2546
  offset: number;
2488
2547
  scaleType: "pow";
2489
- colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleOrdinal<string | number | Date, string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleOrdinal<number, string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number | Date, string | null>;
2548
+ 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>;
2490
2549
  triggerTooltip?: boolean;
2491
2550
  } | {
2492
2551
  axis?: "x";
@@ -2513,21 +2572,22 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
2513
2572
  tickLabelPlacement?: "middle" | "tick";
2514
2573
  data?: readonly any[] | undefined;
2515
2574
  dataKey?: string | undefined;
2575
+ valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
2516
2576
  id: import("../internals/index.js").AxisId;
2517
2577
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
2518
2578
  height: number;
2519
2579
  position?: "top" | "bottom" | "none";
2520
2580
  zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
2521
2581
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
2522
- domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
2523
- min: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
2524
- max: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
2582
+ domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
2583
+ min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
2584
+ max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
2525
2585
  }) | undefined;
2526
2586
  hideTooltip?: boolean | undefined;
2527
2587
  ignoreTooltip?: boolean | undefined;
2528
2588
  offset: number;
2529
2589
  scaleType: "pow";
2530
- colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number, string | null>;
2590
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
2531
2591
  triggerTooltip?: boolean;
2532
2592
  } | {
2533
2593
  axis?: "x";
@@ -2554,21 +2614,22 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
2554
2614
  tickLabelPlacement?: "middle" | "tick";
2555
2615
  data?: readonly any[] | undefined;
2556
2616
  dataKey?: string | undefined;
2617
+ valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
2557
2618
  id: import("../internals/index.js").AxisId;
2558
2619
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
2559
2620
  height: number;
2560
2621
  position?: "top" | "bottom" | "none";
2561
2622
  zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
2562
2623
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
2563
- domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
2564
- min: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
2565
- max: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
2624
+ domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
2625
+ min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
2626
+ max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
2566
2627
  }) | undefined;
2567
2628
  hideTooltip?: boolean | undefined;
2568
2629
  ignoreTooltip?: boolean | undefined;
2569
2630
  offset: number;
2570
2631
  scaleType: "pow";
2571
- colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number, string | null>;
2632
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
2572
2633
  triggerTooltip?: boolean;
2573
2634
  } | {
2574
2635
  axis?: "x";
@@ -2595,21 +2656,22 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
2595
2656
  tickLabelPlacement?: "middle" | "tick";
2596
2657
  data?: readonly any[] | undefined;
2597
2658
  dataKey?: string | undefined;
2659
+ valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
2598
2660
  id: import("../internals/index.js").AxisId;
2599
2661
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
2600
2662
  height: number;
2601
2663
  position?: "top" | "bottom" | "none";
2602
2664
  zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
2603
2665
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
2604
- domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
2605
- min: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
2606
- max: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
2666
+ domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
2667
+ min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
2668
+ max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
2607
2669
  }) | undefined;
2608
2670
  hideTooltip?: boolean | undefined;
2609
2671
  ignoreTooltip?: boolean | undefined;
2610
2672
  offset: number;
2611
2673
  scaleType: "pow";
2612
- colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number, string | null>;
2674
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
2613
2675
  triggerTooltip?: boolean;
2614
2676
  } | {
2615
2677
  axis?: "x";
@@ -2636,21 +2698,22 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
2636
2698
  tickLabelPlacement?: "middle" | "tick";
2637
2699
  data?: readonly any[] | undefined;
2638
2700
  dataKey?: string | undefined;
2701
+ valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
2639
2702
  id: import("../internals/index.js").AxisId;
2640
2703
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
2641
2704
  height: number;
2642
2705
  position?: "top" | "bottom" | "none";
2643
2706
  zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
2644
2707
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
2645
- domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
2646
- min: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
2647
- max: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
2708
+ domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
2709
+ min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
2710
+ max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
2648
2711
  }) | undefined;
2649
2712
  hideTooltip?: boolean | undefined;
2650
2713
  ignoreTooltip?: boolean | undefined;
2651
2714
  offset: number;
2652
2715
  scaleType: "pow";
2653
- colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number | Date, string | null>;
2716
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
2654
2717
  triggerTooltip?: boolean;
2655
2718
  } | {
2656
2719
  axis?: "x";
@@ -2677,21 +2740,22 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
2677
2740
  tickLabelPlacement?: "middle" | "tick";
2678
2741
  data?: readonly any[] | undefined;
2679
2742
  dataKey?: string | undefined;
2743
+ valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
2680
2744
  id: import("../internals/index.js").AxisId;
2681
2745
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
2682
2746
  height: number;
2683
2747
  position?: "top" | "bottom" | "none";
2684
2748
  zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
2685
2749
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
2686
- domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
2687
- min: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
2688
- max: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
2750
+ domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
2751
+ min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
2752
+ max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
2689
2753
  }) | undefined;
2690
2754
  hideTooltip?: boolean | undefined;
2691
2755
  ignoreTooltip?: boolean | undefined;
2692
2756
  offset: number;
2693
2757
  scaleType: "sqrt";
2694
- colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number, string | null>;
2758
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
2695
2759
  triggerTooltip?: boolean;
2696
2760
  } | {
2697
2761
  axis?: "x";
@@ -2718,21 +2782,22 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
2718
2782
  tickLabelPlacement?: "middle" | "tick";
2719
2783
  data?: readonly any[] | undefined;
2720
2784
  dataKey?: string | undefined;
2785
+ valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
2721
2786
  id: import("../internals/index.js").AxisId;
2722
2787
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
2723
2788
  height: number;
2724
2789
  position?: "top" | "bottom" | "none";
2725
2790
  zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
2726
2791
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
2727
- domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
2728
- min: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
2729
- max: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
2792
+ domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
2793
+ min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
2794
+ max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
2730
2795
  }) | undefined;
2731
2796
  hideTooltip?: boolean | undefined;
2732
2797
  ignoreTooltip?: boolean | undefined;
2733
2798
  offset: number;
2734
2799
  scaleType: "sqrt";
2735
- colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number | Date, string | null>;
2800
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
2736
2801
  triggerTooltip?: boolean;
2737
2802
  } | {
2738
2803
  axis?: "x";
@@ -2759,21 +2824,22 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
2759
2824
  tickLabelPlacement?: "middle" | "tick";
2760
2825
  data?: readonly any[] | undefined;
2761
2826
  dataKey?: string | undefined;
2827
+ valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
2762
2828
  id: import("../internals/index.js").AxisId;
2763
2829
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
2764
2830
  height: number;
2765
2831
  position?: "top" | "bottom" | "none";
2766
2832
  zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
2767
2833
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
2768
- domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
2769
- min: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
2770
- max: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
2834
+ domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
2835
+ min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
2836
+ max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
2771
2837
  }) | undefined;
2772
2838
  hideTooltip?: boolean | undefined;
2773
2839
  ignoreTooltip?: boolean | undefined;
2774
2840
  offset: number;
2775
2841
  scaleType: "sqrt";
2776
- colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number, string | null>;
2842
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
2777
2843
  triggerTooltip?: boolean;
2778
2844
  } | {
2779
2845
  axis?: "x";
@@ -2800,21 +2866,22 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
2800
2866
  tickLabelPlacement?: "middle" | "tick";
2801
2867
  data?: readonly any[] | undefined;
2802
2868
  dataKey?: string | undefined;
2869
+ valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
2803
2870
  id: import("../internals/index.js").AxisId;
2804
2871
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
2805
2872
  height: number;
2806
2873
  position?: "top" | "bottom" | "none";
2807
2874
  zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
2808
2875
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
2809
- domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
2810
- min: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
2811
- max: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
2876
+ domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
2877
+ min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
2878
+ max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
2812
2879
  }) | undefined;
2813
2880
  hideTooltip?: boolean | undefined;
2814
2881
  ignoreTooltip?: boolean | undefined;
2815
2882
  offset: number;
2816
2883
  scaleType: "sqrt";
2817
- colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleOrdinal<string | number | Date, string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleOrdinal<number, string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number | Date, string | null>;
2884
+ 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>;
2818
2885
  triggerTooltip?: boolean;
2819
2886
  } | {
2820
2887
  axis?: "x";
@@ -2841,21 +2908,22 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
2841
2908
  tickLabelPlacement?: "middle" | "tick";
2842
2909
  data?: readonly any[] | undefined;
2843
2910
  dataKey?: string | undefined;
2911
+ valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
2844
2912
  id: import("../internals/index.js").AxisId;
2845
2913
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
2846
2914
  height: number;
2847
2915
  position?: "top" | "bottom" | "none";
2848
2916
  zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
2849
2917
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
2850
- domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
2851
- min: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
2852
- max: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
2918
+ domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
2919
+ min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
2920
+ max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
2853
2921
  }) | undefined;
2854
2922
  hideTooltip?: boolean | undefined;
2855
2923
  ignoreTooltip?: boolean | undefined;
2856
2924
  offset: number;
2857
2925
  scaleType: "sqrt";
2858
- colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleOrdinal<string | number | Date, string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleOrdinal<number, string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number | Date, string | null>;
2926
+ 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>;
2859
2927
  triggerTooltip?: boolean;
2860
2928
  } | {
2861
2929
  axis?: "x";
@@ -2882,21 +2950,22 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
2882
2950
  tickLabelPlacement?: "middle" | "tick";
2883
2951
  data?: readonly any[] | undefined;
2884
2952
  dataKey?: string | undefined;
2953
+ valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
2885
2954
  id: import("../internals/index.js").AxisId;
2886
2955
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
2887
2956
  height: number;
2888
2957
  position?: "top" | "bottom" | "none";
2889
2958
  zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
2890
2959
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
2891
- domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
2892
- min: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
2893
- max: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
2960
+ domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
2961
+ min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
2962
+ max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
2894
2963
  }) | undefined;
2895
2964
  hideTooltip?: boolean | undefined;
2896
2965
  ignoreTooltip?: boolean | undefined;
2897
2966
  offset: number;
2898
2967
  scaleType: "sqrt";
2899
- colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number, string | null>;
2968
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
2900
2969
  triggerTooltip?: boolean;
2901
2970
  } | {
2902
2971
  axis?: "x";
@@ -2923,21 +2992,22 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
2923
2992
  tickLabelPlacement?: "middle" | "tick";
2924
2993
  data?: readonly any[] | undefined;
2925
2994
  dataKey?: string | undefined;
2995
+ valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
2926
2996
  id: import("../internals/index.js").AxisId;
2927
2997
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
2928
2998
  height: number;
2929
2999
  position?: "top" | "bottom" | "none";
2930
3000
  zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
2931
3001
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
2932
- domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
2933
- min: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
2934
- max: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
3002
+ domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
3003
+ min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
3004
+ max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
2935
3005
  }) | undefined;
2936
3006
  hideTooltip?: boolean | undefined;
2937
3007
  ignoreTooltip?: boolean | undefined;
2938
3008
  offset: number;
2939
3009
  scaleType: "sqrt";
2940
- colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number, string | null>;
3010
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
2941
3011
  triggerTooltip?: boolean;
2942
3012
  } | {
2943
3013
  axis?: "x";
@@ -2964,21 +3034,22 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
2964
3034
  tickLabelPlacement?: "middle" | "tick";
2965
3035
  data?: readonly any[] | undefined;
2966
3036
  dataKey?: string | undefined;
3037
+ valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
2967
3038
  id: import("../internals/index.js").AxisId;
2968
3039
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
2969
3040
  height: number;
2970
3041
  position?: "top" | "bottom" | "none";
2971
3042
  zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
2972
3043
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
2973
- domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
2974
- min: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
2975
- max: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
3044
+ domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
3045
+ min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
3046
+ max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
2976
3047
  }) | undefined;
2977
3048
  hideTooltip?: boolean | undefined;
2978
3049
  ignoreTooltip?: boolean | undefined;
2979
3050
  offset: number;
2980
3051
  scaleType: "sqrt";
2981
- colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number, string | null>;
3052
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
2982
3053
  triggerTooltip?: boolean;
2983
3054
  } | {
2984
3055
  axis?: "x";
@@ -3005,21 +3076,22 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
3005
3076
  tickLabelPlacement?: "middle" | "tick";
3006
3077
  data?: readonly any[] | undefined;
3007
3078
  dataKey?: string | undefined;
3079
+ valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
3008
3080
  id: import("../internals/index.js").AxisId;
3009
3081
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
3010
3082
  height: number;
3011
3083
  position?: "top" | "bottom" | "none";
3012
3084
  zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
3013
3085
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
3014
- domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
3015
- min: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
3016
- max: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
3086
+ domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
3087
+ min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
3088
+ max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
3017
3089
  }) | undefined;
3018
3090
  hideTooltip?: boolean | undefined;
3019
3091
  ignoreTooltip?: boolean | undefined;
3020
3092
  offset: number;
3021
3093
  scaleType: "sqrt";
3022
- colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number | Date, string | null>;
3094
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
3023
3095
  triggerTooltip?: boolean;
3024
3096
  } | {
3025
3097
  axis?: "x";
@@ -3046,21 +3118,22 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
3046
3118
  tickLabelPlacement?: "middle" | "tick";
3047
3119
  data?: readonly any[] | undefined;
3048
3120
  dataKey?: string | undefined;
3121
+ valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
3049
3122
  id: import("../internals/index.js").AxisId;
3050
3123
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
3051
3124
  height: number;
3052
3125
  position?: "top" | "bottom" | "none";
3053
3126
  zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
3054
3127
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
3055
- domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
3056
- min: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
3057
- max: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
3128
+ domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
3129
+ min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
3130
+ max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
3058
3131
  }) | undefined;
3059
3132
  hideTooltip?: boolean | undefined;
3060
3133
  ignoreTooltip?: boolean | undefined;
3061
3134
  offset: number;
3062
3135
  scaleType: "utc";
3063
- colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number, string | null>;
3136
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
3064
3137
  triggerTooltip?: boolean;
3065
3138
  } | {
3066
3139
  axis?: "x";
@@ -3087,21 +3160,22 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
3087
3160
  tickLabelPlacement?: "middle" | "tick";
3088
3161
  data?: readonly any[] | undefined;
3089
3162
  dataKey?: string | undefined;
3163
+ valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
3090
3164
  id: import("../internals/index.js").AxisId;
3091
3165
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
3092
3166
  height: number;
3093
3167
  position?: "top" | "bottom" | "none";
3094
3168
  zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
3095
3169
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
3096
- domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
3097
- min: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
3098
- max: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
3170
+ domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
3171
+ min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
3172
+ max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
3099
3173
  }) | undefined;
3100
3174
  hideTooltip?: boolean | undefined;
3101
3175
  ignoreTooltip?: boolean | undefined;
3102
3176
  offset: number;
3103
3177
  scaleType: "utc";
3104
- colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number | Date, string | null>;
3178
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
3105
3179
  triggerTooltip?: boolean;
3106
3180
  } | {
3107
3181
  axis?: "x";
@@ -3128,21 +3202,22 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
3128
3202
  tickLabelPlacement?: "middle" | "tick";
3129
3203
  data?: readonly any[] | undefined;
3130
3204
  dataKey?: string | undefined;
3205
+ valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
3131
3206
  id: import("../internals/index.js").AxisId;
3132
3207
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
3133
3208
  height: number;
3134
3209
  position?: "top" | "bottom" | "none";
3135
3210
  zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
3136
3211
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
3137
- domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
3138
- min: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
3139
- max: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
3212
+ domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
3213
+ min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
3214
+ max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
3140
3215
  }) | undefined;
3141
3216
  hideTooltip?: boolean | undefined;
3142
3217
  ignoreTooltip?: boolean | undefined;
3143
3218
  offset: number;
3144
3219
  scaleType: "utc";
3145
- colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number, string | null>;
3220
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
3146
3221
  triggerTooltip?: boolean;
3147
3222
  } | {
3148
3223
  axis?: "x";
@@ -3169,21 +3244,22 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
3169
3244
  tickLabelPlacement?: "middle" | "tick";
3170
3245
  data?: readonly any[] | undefined;
3171
3246
  dataKey?: string | undefined;
3247
+ valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
3172
3248
  id: import("../internals/index.js").AxisId;
3173
3249
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
3174
3250
  height: number;
3175
3251
  position?: "top" | "bottom" | "none";
3176
3252
  zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
3177
3253
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
3178
- domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
3179
- min: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
3180
- max: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
3254
+ domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
3255
+ min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
3256
+ max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
3181
3257
  }) | undefined;
3182
3258
  hideTooltip?: boolean | undefined;
3183
3259
  ignoreTooltip?: boolean | undefined;
3184
3260
  offset: number;
3185
3261
  scaleType: "utc";
3186
- colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleOrdinal<string | number | Date, string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleOrdinal<number, string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number | Date, string | null>;
3262
+ 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>;
3187
3263
  triggerTooltip?: boolean;
3188
3264
  } | {
3189
3265
  axis?: "x";
@@ -3210,21 +3286,22 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
3210
3286
  tickLabelPlacement?: "middle" | "tick";
3211
3287
  data?: readonly any[] | undefined;
3212
3288
  dataKey?: string | undefined;
3289
+ valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
3213
3290
  id: import("../internals/index.js").AxisId;
3214
3291
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
3215
3292
  height: number;
3216
3293
  position?: "top" | "bottom" | "none";
3217
3294
  zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
3218
3295
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
3219
- domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
3220
- min: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
3221
- max: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
3296
+ domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
3297
+ min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
3298
+ max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
3222
3299
  }) | undefined;
3223
3300
  hideTooltip?: boolean | undefined;
3224
3301
  ignoreTooltip?: boolean | undefined;
3225
3302
  offset: number;
3226
3303
  scaleType: "utc";
3227
- colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleOrdinal<string | number | Date, string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleOrdinal<number, string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number | Date, string | null>;
3304
+ 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>;
3228
3305
  triggerTooltip?: boolean;
3229
3306
  } | {
3230
3307
  axis?: "x";
@@ -3251,21 +3328,22 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
3251
3328
  tickLabelPlacement?: "middle" | "tick";
3252
3329
  data?: readonly any[] | undefined;
3253
3330
  dataKey?: string | undefined;
3331
+ valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
3254
3332
  id: import("../internals/index.js").AxisId;
3255
3333
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
3256
3334
  height: number;
3257
3335
  position?: "top" | "bottom" | "none";
3258
3336
  zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
3259
3337
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
3260
- domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
3261
- min: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
3262
- max: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
3338
+ domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
3339
+ min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
3340
+ max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
3263
3341
  }) | undefined;
3264
3342
  hideTooltip?: boolean | undefined;
3265
3343
  ignoreTooltip?: boolean | undefined;
3266
3344
  offset: number;
3267
3345
  scaleType: "utc";
3268
- colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number, string | null>;
3346
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
3269
3347
  triggerTooltip?: boolean;
3270
3348
  } | {
3271
3349
  axis?: "x";
@@ -3292,21 +3370,22 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
3292
3370
  tickLabelPlacement?: "middle" | "tick";
3293
3371
  data?: readonly any[] | undefined;
3294
3372
  dataKey?: string | undefined;
3373
+ valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
3295
3374
  id: import("../internals/index.js").AxisId;
3296
3375
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
3297
3376
  height: number;
3298
3377
  position?: "top" | "bottom" | "none";
3299
3378
  zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
3300
3379
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
3301
- domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
3302
- min: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
3303
- max: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
3380
+ domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
3381
+ min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
3382
+ max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
3304
3383
  }) | undefined;
3305
3384
  hideTooltip?: boolean | undefined;
3306
3385
  ignoreTooltip?: boolean | undefined;
3307
3386
  offset: number;
3308
3387
  scaleType: "utc";
3309
- colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number, string | null>;
3388
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
3310
3389
  triggerTooltip?: boolean;
3311
3390
  } | {
3312
3391
  axis?: "x";
@@ -3333,21 +3412,22 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
3333
3412
  tickLabelPlacement?: "middle" | "tick";
3334
3413
  data?: readonly any[] | undefined;
3335
3414
  dataKey?: string | undefined;
3415
+ valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
3336
3416
  id: import("../internals/index.js").AxisId;
3337
3417
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
3338
3418
  height: number;
3339
3419
  position?: "top" | "bottom" | "none";
3340
3420
  zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
3341
3421
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
3342
- domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
3343
- min: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
3344
- max: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
3422
+ domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
3423
+ min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
3424
+ max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
3345
3425
  }) | undefined;
3346
3426
  hideTooltip?: boolean | undefined;
3347
3427
  ignoreTooltip?: boolean | undefined;
3348
3428
  offset: number;
3349
3429
  scaleType: "utc";
3350
- colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number, string | null>;
3430
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
3351
3431
  triggerTooltip?: boolean;
3352
3432
  } | {
3353
3433
  axis?: "x";
@@ -3374,21 +3454,22 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
3374
3454
  tickLabelPlacement?: "middle" | "tick";
3375
3455
  data?: readonly any[] | undefined;
3376
3456
  dataKey?: string | undefined;
3457
+ valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
3377
3458
  id: import("../internals/index.js").AxisId;
3378
3459
  valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
3379
3460
  height: number;
3380
3461
  position?: "top" | "bottom" | "none";
3381
3462
  zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
3382
3463
  colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
3383
- domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
3384
- min: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
3385
- max: import("packages/x-charts-vendor/build/d3-scale").NumberValue;
3464
+ domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
3465
+ min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
3466
+ max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
3386
3467
  }) | undefined;
3387
3468
  hideTooltip?: boolean | undefined;
3388
3469
  ignoreTooltip?: boolean | undefined;
3389
3470
  offset: number;
3390
3471
  scaleType: "utc";
3391
- colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number | Date, string | null>;
3472
+ colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
3392
3473
  triggerTooltip?: boolean;
3393
3474
  };
3394
3475
  tickNumber: number;