@mui/x-charts 9.3.0 → 9.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (168) hide show
  1. package/BarChart/BarElement.d.mts +3 -2
  2. package/BarChart/BarElement.d.ts +3 -2
  3. package/BarChart/BarLabel/BarLabelItem.d.mts +3 -2
  4. package/BarChart/BarLabel/BarLabelItem.d.ts +3 -2
  5. package/BarChart/seriesConfig/bar/extremums.js +7 -2
  6. package/BarChart/seriesConfig/bar/extremums.mjs +7 -2
  7. package/CHANGELOG.md +196 -0
  8. package/ChartsContainer/ChartsContainer.js +21 -0
  9. package/ChartsContainer/ChartsContainer.mjs +21 -0
  10. package/ChartsLabel/ChartsLabelMark.js +1 -21
  11. package/ChartsLabel/ChartsLabelMark.mjs +0 -20
  12. package/ChartsLegend/chartsLegend.types.d.mts +3 -2
  13. package/ChartsLegend/chartsLegend.types.d.ts +3 -2
  14. package/ChartsLegend/piecewiseColorLegendClasses.js +8 -2
  15. package/ChartsLegend/piecewiseColorLegendClasses.mjs +8 -2
  16. package/ChartsOverlay/ChartsOverlay.d.mts +5 -4
  17. package/ChartsOverlay/ChartsOverlay.d.ts +5 -4
  18. package/ChartsReferenceLine/ChartsXReferenceLine.js +6 -1
  19. package/ChartsReferenceLine/ChartsXReferenceLine.mjs +6 -1
  20. package/ChartsReferenceLine/ChartsYReferenceLine.js +5 -0
  21. package/ChartsReferenceLine/ChartsYReferenceLine.mjs +5 -0
  22. package/ChartsTooltip/ChartTooltip.types.d.mts +3 -2
  23. package/ChartsTooltip/ChartTooltip.types.d.ts +3 -2
  24. package/ChartsTooltip/useAxesTooltip.js +2 -2
  25. package/ChartsTooltip/useAxesTooltip.mjs +2 -2
  26. package/ChartsTooltip/useItemTooltip.js +2 -2
  27. package/ChartsTooltip/useItemTooltip.mjs +2 -2
  28. package/ChartsXAxis/useAxisTicksProps.d.mts +84 -3
  29. package/ChartsXAxis/useAxisTicksProps.d.ts +84 -3
  30. package/ChartsYAxis/useAxisTicksProps.d.mts +84 -3
  31. package/ChartsYAxis/useAxisTicksProps.d.ts +84 -3
  32. package/LineChart/AreaElement.d.mts +3 -2
  33. package/LineChart/AreaElement.d.ts +3 -2
  34. package/LineChart/LineElement.d.mts +3 -2
  35. package/LineChart/LineElement.d.ts +3 -2
  36. package/LineChart/LineHighlightPlot.d.mts +3 -2
  37. package/LineChart/LineHighlightPlot.d.ts +3 -2
  38. package/LineChart/LineHighlightPlot.js +65 -45
  39. package/LineChart/LineHighlightPlot.mjs +65 -45
  40. package/LineChart/MarkPlot.d.mts +3 -2
  41. package/LineChart/MarkPlot.d.ts +3 -2
  42. package/LineChart/seriesConfig/curveEvaluation.js +28 -14
  43. package/LineChart/seriesConfig/curveEvaluation.mjs +27 -14
  44. package/LineChart/seriesConfig/extremums.js +5 -1
  45. package/LineChart/seriesConfig/extremums.mjs +5 -1
  46. package/LineChart/useMarkPlotData.js +3 -1
  47. package/LineChart/useMarkPlotData.mjs +3 -1
  48. package/PieChart/PieArcLabelPlot.d.mts +3 -2
  49. package/PieChart/PieArcLabelPlot.d.ts +3 -2
  50. package/PieChart/PieArcPlot.d.mts +3 -2
  51. package/PieChart/PieArcPlot.d.ts +3 -2
  52. package/RadarChart/RadarAxis/RadarAxis.utils.d.mts +2 -2
  53. package/RadarChart/RadarAxis/RadarAxis.utils.d.ts +2 -2
  54. package/ScatterChart/BatchScatter.d.mts +2 -8
  55. package/ScatterChart/BatchScatter.d.ts +2 -8
  56. package/ScatterChart/BatchScatter.js +17 -12
  57. package/ScatterChart/BatchScatter.mjs +17 -12
  58. package/ScatterChart/FocusedScatterMark.js +2 -2
  59. package/ScatterChart/FocusedScatterMark.mjs +2 -2
  60. package/ScatterChart/HighlightedScatterMark.js +3 -3
  61. package/ScatterChart/HighlightedScatterMark.mjs +3 -3
  62. package/ScatterChart/Scatter.d.mts +5 -0
  63. package/ScatterChart/Scatter.d.ts +5 -0
  64. package/ScatterChart/Scatter.js +7 -2
  65. package/ScatterChart/Scatter.mjs +7 -2
  66. package/ScatterChart/ScatterChart.d.mts +2 -1
  67. package/ScatterChart/ScatterChart.d.ts +2 -1
  68. package/ScatterChart/ScatterChart.js +21 -0
  69. package/ScatterChart/ScatterChart.mjs +21 -0
  70. package/ScatterChart/ScatterMarker.types.d.mts +3 -2
  71. package/ScatterChart/ScatterMarker.types.d.ts +3 -2
  72. package/ScatterChart/ScatterPlot.d.mts +3 -2
  73. package/ScatterChart/ScatterPlot.d.ts +3 -2
  74. package/ScatterChart/ScatterPlot.js +6 -1
  75. package/ScatterChart/ScatterPlot.mjs +6 -1
  76. package/ScatterChart/seriesConfig/extremums.js +6 -0
  77. package/ScatterChart/seriesConfig/extremums.mjs +6 -0
  78. package/ScatterChart/seriesConfig/getColor.js +1 -1
  79. package/ScatterChart/seriesConfig/getColor.mjs +1 -1
  80. package/ScatterChart/seriesConfig/getMarkerSize.d.mts +18 -0
  81. package/ScatterChart/seriesConfig/getMarkerSize.d.ts +18 -0
  82. package/ScatterChart/seriesConfig/getMarkerSize.js +43 -0
  83. package/ScatterChart/seriesConfig/getMarkerSize.mjs +37 -0
  84. package/ScatterChart/seriesConfig/seriesProcessor.js +23 -8
  85. package/ScatterChart/seriesConfig/seriesProcessor.mjs +23 -8
  86. package/ScatterChart/useScatterItemPosition.d.mts +4 -0
  87. package/ScatterChart/useScatterItemPosition.d.ts +4 -0
  88. package/ScatterChart/useScatterItemPosition.js +9 -0
  89. package/ScatterChart/useScatterItemPosition.mjs +8 -0
  90. package/Toolbar/Toolbar.types.d.mts +3 -2
  91. package/Toolbar/Toolbar.types.d.ts +3 -2
  92. package/index.js +1 -1
  93. package/index.mjs +1 -1
  94. package/internals/animation/animation.d.mts +1 -2
  95. package/internals/animation/animation.d.ts +1 -2
  96. package/internals/commonNextFocusItem.d.mts +10 -2
  97. package/internals/commonNextFocusItem.d.ts +10 -2
  98. package/internals/commonNextFocusItem.js +12 -4
  99. package/internals/commonNextFocusItem.mjs +12 -4
  100. package/internals/createCommonKeyboardFocusHandler.d.mts +1 -1
  101. package/internals/createCommonKeyboardFocusHandler.d.ts +1 -1
  102. package/internals/createCommonKeyboardFocusHandler.js +3 -3
  103. package/internals/createCommonKeyboardFocusHandler.mjs +3 -3
  104. package/internals/incompleteDatasetKeysError.d.mts +1 -0
  105. package/internals/incompleteDatasetKeysError.d.ts +1 -0
  106. package/internals/incompleteDatasetKeysError.js +11 -0
  107. package/internals/incompleteDatasetKeysError.mjs +4 -0
  108. package/internals/index.d.mts +2 -0
  109. package/internals/index.d.ts +2 -0
  110. package/internals/index.js +24 -0
  111. package/internals/index.mjs +2 -0
  112. package/internals/plugins/featurePlugins/useChartCartesianAxis/createZoomLookup.js +3 -2
  113. package/internals/plugins/featurePlugins/useChartCartesianAxis/createZoomLookup.mjs +4 -3
  114. package/internals/plugins/featurePlugins/useChartCartesianAxis/defaultizeAxis.js +2 -2
  115. package/internals/plugins/featurePlugins/useChartCartesianAxis/defaultizeAxis.mjs +3 -3
  116. package/internals/plugins/featurePlugins/useChartCartesianAxis/defaultizeZoom.d.mts +10 -1
  117. package/internals/plugins/featurePlugins/useChartCartesianAxis/defaultizeZoom.d.ts +10 -1
  118. package/internals/plugins/featurePlugins/useChartCartesianAxis/defaultizeZoom.js +18 -1
  119. package/internals/plugins/featurePlugins/useChartCartesianAxis/defaultizeZoom.mjs +16 -0
  120. package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisRendering.selectors.d.mts +11 -3
  121. package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisRendering.selectors.d.ts +11 -3
  122. package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisRendering.selectors.js +24 -5
  123. package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisRendering.selectors.mjs +24 -5
  124. package/internals/plugins/featurePlugins/useChartClosestPoint/findClosestPoints.d.mts +1 -1
  125. package/internals/plugins/featurePlugins/useChartClosestPoint/findClosestPoints.d.ts +1 -1
  126. package/internals/plugins/featurePlugins/useChartClosestPoint/findClosestPoints.js +46 -2
  127. package/internals/plugins/featurePlugins/useChartClosestPoint/findClosestPoints.mjs +47 -2
  128. package/internals/plugins/featurePlugins/useChartClosestPoint/useChartClosestPoint.js +46 -11
  129. package/internals/plugins/featurePlugins/useChartClosestPoint/useChartClosestPoint.mjs +46 -11
  130. package/internals/plugins/featurePlugins/useChartClosestPoint/useChartClosestPoint.types.d.mts +2 -1
  131. package/internals/plugins/featurePlugins/useChartClosestPoint/useChartClosestPoint.types.d.ts +2 -1
  132. package/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.js +3 -2
  133. package/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.mjs +3 -2
  134. package/internals/plugins/featurePlugins/useChartPolarAxis/coordinateTransformation.d.mts +4 -0
  135. package/internals/plugins/featurePlugins/useChartPolarAxis/coordinateTransformation.d.ts +4 -0
  136. package/internals/plugins/featurePlugins/useChartPolarAxis/coordinateTransformation.js +3 -1
  137. package/internals/plugins/featurePlugins/useChartPolarAxis/coordinateTransformation.mjs +1 -0
  138. package/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarAxis.js +5 -3
  139. package/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarAxis.mjs +7 -5
  140. package/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.js +17 -3
  141. package/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.mjs +17 -3
  142. package/internals/sizeScale.d.mts +6 -0
  143. package/internals/sizeScale.d.ts +6 -0
  144. package/internals/sizeScale.js +46 -0
  145. package/internals/sizeScale.mjs +38 -0
  146. package/models/axis.d.mts +18 -12
  147. package/models/axis.d.ts +18 -12
  148. package/models/chartsSlotsComponentsProps.d.mts +25 -0
  149. package/models/chartsSlotsComponentsProps.d.ts +25 -0
  150. package/models/chartsSlotsComponentsProps.js +5 -0
  151. package/models/chartsSlotsComponentsProps.mjs +1 -0
  152. package/models/index.d.mts +1 -0
  153. package/models/index.d.ts +1 -0
  154. package/models/index.js +11 -0
  155. package/models/index.mjs +1 -0
  156. package/models/seriesType/line.d.mts +5 -2
  157. package/models/seriesType/line.d.ts +5 -2
  158. package/models/seriesType/scatter.d.mts +34 -2
  159. package/models/seriesType/scatter.d.ts +34 -2
  160. package/models/sizeMapping.d.mts +64 -0
  161. package/models/sizeMapping.d.ts +64 -0
  162. package/models/sizeMapping.js +5 -0
  163. package/models/sizeMapping.mjs +1 -0
  164. package/models/slots/chartsBaseSlots.d.mts +6 -5
  165. package/models/slots/chartsBaseSlots.d.ts +6 -5
  166. package/models/z-axis.d.mts +10 -1
  167. package/models/z-axis.d.ts +10 -1
  168. package/package.json +6 -6
@@ -44,6 +44,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
44
44
  max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
45
45
  }) | undefined;
46
46
  hideTooltip?: boolean | undefined;
47
+ domainSeries?: "all" | "visible" | undefined;
47
48
  ignoreTooltip?: boolean | undefined;
48
49
  offset: number;
49
50
  scaleType: "linear";
@@ -88,6 +89,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
88
89
  max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
89
90
  }) | undefined;
90
91
  hideTooltip?: boolean | undefined;
92
+ domainSeries?: "all" | "visible" | undefined;
91
93
  ignoreTooltip?: boolean | undefined;
92
94
  offset: number;
93
95
  scaleType: "linear";
@@ -132,6 +134,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
132
134
  max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
133
135
  }) | undefined;
134
136
  hideTooltip?: boolean | undefined;
137
+ domainSeries?: "all" | "visible" | undefined;
135
138
  ignoreTooltip?: boolean | undefined;
136
139
  offset: number;
137
140
  scaleType: "linear";
@@ -176,6 +179,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
176
179
  max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
177
180
  }) | undefined;
178
181
  hideTooltip?: boolean | undefined;
182
+ domainSeries?: "all" | "visible" | undefined;
179
183
  ignoreTooltip?: boolean | undefined;
180
184
  offset: number;
181
185
  scaleType: "linear";
@@ -220,6 +224,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
220
224
  max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
221
225
  }) | undefined;
222
226
  hideTooltip?: boolean | undefined;
227
+ domainSeries?: "all" | "visible" | undefined;
223
228
  ignoreTooltip?: boolean | undefined;
224
229
  offset: number;
225
230
  scaleType: "linear";
@@ -264,6 +269,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
264
269
  max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
265
270
  }) | undefined;
266
271
  hideTooltip?: boolean | undefined;
272
+ domainSeries?: "all" | "visible" | undefined;
267
273
  ignoreTooltip?: boolean | undefined;
268
274
  offset: number;
269
275
  scaleType: "linear";
@@ -308,6 +314,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
308
314
  max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
309
315
  }) | undefined;
310
316
  hideTooltip?: boolean | undefined;
317
+ domainSeries?: "all" | "visible" | undefined;
311
318
  ignoreTooltip?: boolean | undefined;
312
319
  offset: number;
313
320
  scaleType: "linear";
@@ -352,6 +359,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
352
359
  max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
353
360
  }) | undefined;
354
361
  hideTooltip?: boolean | undefined;
362
+ domainSeries?: "all" | "visible" | undefined;
355
363
  ignoreTooltip?: boolean | undefined;
356
364
  offset: number;
357
365
  scaleType: "linear";
@@ -396,6 +404,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
396
404
  max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
397
405
  }) | undefined;
398
406
  hideTooltip?: boolean | undefined;
407
+ domainSeries?: "all" | "visible" | undefined;
399
408
  ignoreTooltip?: boolean | undefined;
400
409
  offset: number;
401
410
  scaleType: "linear";
@@ -440,6 +449,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
440
449
  max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
441
450
  }) | undefined;
442
451
  hideTooltip?: boolean | undefined;
452
+ domainSeries?: "all" | "visible" | undefined;
443
453
  ignoreTooltip?: boolean | undefined;
444
454
  offset: number;
445
455
  scaleType: "time";
@@ -484,6 +494,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
484
494
  max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
485
495
  }) | undefined;
486
496
  hideTooltip?: boolean | undefined;
497
+ domainSeries?: "all" | "visible" | undefined;
487
498
  ignoreTooltip?: boolean | undefined;
488
499
  offset: number;
489
500
  scaleType: "time";
@@ -528,6 +539,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
528
539
  max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
529
540
  }) | undefined;
530
541
  hideTooltip?: boolean | undefined;
542
+ domainSeries?: "all" | "visible" | undefined;
531
543
  ignoreTooltip?: boolean | undefined;
532
544
  offset: number;
533
545
  scaleType: "time";
@@ -572,6 +584,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
572
584
  max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
573
585
  }) | undefined;
574
586
  hideTooltip?: boolean | undefined;
587
+ domainSeries?: "all" | "visible" | undefined;
575
588
  ignoreTooltip?: boolean | undefined;
576
589
  offset: number;
577
590
  scaleType: "time";
@@ -616,6 +629,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
616
629
  max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
617
630
  }) | undefined;
618
631
  hideTooltip?: boolean | undefined;
632
+ domainSeries?: "all" | "visible" | undefined;
619
633
  ignoreTooltip?: boolean | undefined;
620
634
  offset: number;
621
635
  scaleType: "time";
@@ -660,6 +674,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
660
674
  max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
661
675
  }) | undefined;
662
676
  hideTooltip?: boolean | undefined;
677
+ domainSeries?: "all" | "visible" | undefined;
663
678
  ignoreTooltip?: boolean | undefined;
664
679
  offset: number;
665
680
  scaleType: "time";
@@ -704,6 +719,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
704
719
  max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
705
720
  }) | undefined;
706
721
  hideTooltip?: boolean | undefined;
722
+ domainSeries?: "all" | "visible" | undefined;
707
723
  ignoreTooltip?: boolean | undefined;
708
724
  offset: number;
709
725
  scaleType: "time";
@@ -748,6 +764,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
748
764
  max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
749
765
  }) | undefined;
750
766
  hideTooltip?: boolean | undefined;
767
+ domainSeries?: "all" | "visible" | undefined;
751
768
  ignoreTooltip?: boolean | undefined;
752
769
  offset: number;
753
770
  scaleType: "time";
@@ -792,6 +809,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
792
809
  max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
793
810
  }) | undefined;
794
811
  hideTooltip?: boolean | undefined;
812
+ domainSeries?: "all" | "visible" | undefined;
795
813
  ignoreTooltip?: boolean | undefined;
796
814
  offset: number;
797
815
  scaleType: "time";
@@ -836,6 +854,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
836
854
  max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
837
855
  }) | undefined;
838
856
  hideTooltip?: boolean | undefined;
857
+ domainSeries?: "all" | "visible" | undefined;
839
858
  ignoreTooltip?: boolean | undefined;
840
859
  offset: number;
841
860
  scaleType: "log";
@@ -880,6 +899,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
880
899
  max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
881
900
  }) | undefined;
882
901
  hideTooltip?: boolean | undefined;
902
+ domainSeries?: "all" | "visible" | undefined;
883
903
  ignoreTooltip?: boolean | undefined;
884
904
  offset: number;
885
905
  scaleType: "log";
@@ -924,6 +944,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
924
944
  max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
925
945
  }) | undefined;
926
946
  hideTooltip?: boolean | undefined;
947
+ domainSeries?: "all" | "visible" | undefined;
927
948
  ignoreTooltip?: boolean | undefined;
928
949
  offset: number;
929
950
  scaleType: "log";
@@ -968,6 +989,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
968
989
  max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
969
990
  }) | undefined;
970
991
  hideTooltip?: boolean | undefined;
992
+ domainSeries?: "all" | "visible" | undefined;
971
993
  ignoreTooltip?: boolean | undefined;
972
994
  offset: number;
973
995
  scaleType: "log";
@@ -1012,6 +1034,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
1012
1034
  max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
1013
1035
  }) | undefined;
1014
1036
  hideTooltip?: boolean | undefined;
1037
+ domainSeries?: "all" | "visible" | undefined;
1015
1038
  ignoreTooltip?: boolean | undefined;
1016
1039
  offset: number;
1017
1040
  scaleType: "log";
@@ -1056,6 +1079,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
1056
1079
  max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
1057
1080
  }) | undefined;
1058
1081
  hideTooltip?: boolean | undefined;
1082
+ domainSeries?: "all" | "visible" | undefined;
1059
1083
  ignoreTooltip?: boolean | undefined;
1060
1084
  offset: number;
1061
1085
  scaleType: "log";
@@ -1100,6 +1124,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
1100
1124
  max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
1101
1125
  }) | undefined;
1102
1126
  hideTooltip?: boolean | undefined;
1127
+ domainSeries?: "all" | "visible" | undefined;
1103
1128
  ignoreTooltip?: boolean | undefined;
1104
1129
  offset: number;
1105
1130
  scaleType: "log";
@@ -1144,6 +1169,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
1144
1169
  max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
1145
1170
  }) | undefined;
1146
1171
  hideTooltip?: boolean | undefined;
1172
+ domainSeries?: "all" | "visible" | undefined;
1147
1173
  ignoreTooltip?: boolean | undefined;
1148
1174
  offset: number;
1149
1175
  scaleType: "log";
@@ -1188,6 +1214,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
1188
1214
  max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
1189
1215
  }) | undefined;
1190
1216
  hideTooltip?: boolean | undefined;
1217
+ domainSeries?: "all" | "visible" | undefined;
1191
1218
  ignoreTooltip?: boolean | undefined;
1192
1219
  offset: number;
1193
1220
  scaleType: "log";
@@ -1232,6 +1259,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
1232
1259
  max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
1233
1260
  }) | undefined;
1234
1261
  hideTooltip?: boolean | undefined;
1262
+ domainSeries?: "all" | "visible" | undefined;
1235
1263
  ignoreTooltip?: boolean | undefined;
1236
1264
  offset: number;
1237
1265
  scaleType: "band";
@@ -1280,6 +1308,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
1280
1308
  max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
1281
1309
  }) | undefined;
1282
1310
  hideTooltip?: boolean | undefined;
1311
+ domainSeries?: "all" | "visible" | undefined;
1283
1312
  ignoreTooltip?: boolean | undefined;
1284
1313
  offset: number;
1285
1314
  scaleType: "band";
@@ -1328,6 +1357,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
1328
1357
  max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
1329
1358
  }) | undefined;
1330
1359
  hideTooltip?: boolean | undefined;
1360
+ domainSeries?: "all" | "visible" | undefined;
1331
1361
  ignoreTooltip?: boolean | undefined;
1332
1362
  offset: number;
1333
1363
  scaleType: "band";
@@ -1376,6 +1406,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
1376
1406
  max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
1377
1407
  }) | undefined;
1378
1408
  hideTooltip?: boolean | undefined;
1409
+ domainSeries?: "all" | "visible" | undefined;
1379
1410
  ignoreTooltip?: boolean | undefined;
1380
1411
  offset: number;
1381
1412
  scaleType: "band";
@@ -1424,6 +1455,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
1424
1455
  max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
1425
1456
  }) | undefined;
1426
1457
  hideTooltip?: boolean | undefined;
1458
+ domainSeries?: "all" | "visible" | undefined;
1427
1459
  ignoreTooltip?: boolean | undefined;
1428
1460
  offset: number;
1429
1461
  scaleType: "band";
@@ -1472,6 +1504,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
1472
1504
  max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
1473
1505
  }) | undefined;
1474
1506
  hideTooltip?: boolean | undefined;
1507
+ domainSeries?: "all" | "visible" | undefined;
1475
1508
  ignoreTooltip?: boolean | undefined;
1476
1509
  offset: number;
1477
1510
  scaleType: "band";
@@ -1520,6 +1553,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
1520
1553
  max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
1521
1554
  }) | undefined;
1522
1555
  hideTooltip?: boolean | undefined;
1556
+ domainSeries?: "all" | "visible" | undefined;
1523
1557
  ignoreTooltip?: boolean | undefined;
1524
1558
  offset: number;
1525
1559
  scaleType: "band";
@@ -1568,6 +1602,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
1568
1602
  max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
1569
1603
  }) | undefined;
1570
1604
  hideTooltip?: boolean | undefined;
1605
+ domainSeries?: "all" | "visible" | undefined;
1571
1606
  ignoreTooltip?: boolean | undefined;
1572
1607
  offset: number;
1573
1608
  scaleType: "band";
@@ -1616,6 +1651,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
1616
1651
  max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
1617
1652
  }) | undefined;
1618
1653
  hideTooltip?: boolean | undefined;
1654
+ domainSeries?: "all" | "visible" | undefined;
1619
1655
  ignoreTooltip?: boolean | undefined;
1620
1656
  offset: number;
1621
1657
  scaleType: "band";
@@ -1664,6 +1700,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
1664
1700
  max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
1665
1701
  }) | undefined;
1666
1702
  hideTooltip?: boolean | undefined;
1703
+ domainSeries?: "all" | "visible" | undefined;
1667
1704
  ignoreTooltip?: boolean | undefined;
1668
1705
  offset: number;
1669
1706
  scaleType: "point";
@@ -1710,6 +1747,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
1710
1747
  max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
1711
1748
  }) | undefined;
1712
1749
  hideTooltip?: boolean | undefined;
1750
+ domainSeries?: "all" | "visible" | undefined;
1713
1751
  ignoreTooltip?: boolean | undefined;
1714
1752
  offset: number;
1715
1753
  scaleType: "point";
@@ -1756,6 +1794,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
1756
1794
  max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
1757
1795
  }) | undefined;
1758
1796
  hideTooltip?: boolean | undefined;
1797
+ domainSeries?: "all" | "visible" | undefined;
1759
1798
  ignoreTooltip?: boolean | undefined;
1760
1799
  offset: number;
1761
1800
  scaleType: "point";
@@ -1802,6 +1841,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
1802
1841
  max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
1803
1842
  }) | undefined;
1804
1843
  hideTooltip?: boolean | undefined;
1844
+ domainSeries?: "all" | "visible" | undefined;
1805
1845
  ignoreTooltip?: boolean | undefined;
1806
1846
  offset: number;
1807
1847
  scaleType: "point";
@@ -1848,6 +1888,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
1848
1888
  max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
1849
1889
  }) | undefined;
1850
1890
  hideTooltip?: boolean | undefined;
1891
+ domainSeries?: "all" | "visible" | undefined;
1851
1892
  ignoreTooltip?: boolean | undefined;
1852
1893
  offset: number;
1853
1894
  scaleType: "point";
@@ -1894,6 +1935,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
1894
1935
  max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
1895
1936
  }) | undefined;
1896
1937
  hideTooltip?: boolean | undefined;
1938
+ domainSeries?: "all" | "visible" | undefined;
1897
1939
  ignoreTooltip?: boolean | undefined;
1898
1940
  offset: number;
1899
1941
  scaleType: "point";
@@ -1940,6 +1982,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
1940
1982
  max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
1941
1983
  }) | undefined;
1942
1984
  hideTooltip?: boolean | undefined;
1985
+ domainSeries?: "all" | "visible" | undefined;
1943
1986
  ignoreTooltip?: boolean | undefined;
1944
1987
  offset: number;
1945
1988
  scaleType: "point";
@@ -1986,6 +2029,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
1986
2029
  max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
1987
2030
  }) | undefined;
1988
2031
  hideTooltip?: boolean | undefined;
2032
+ domainSeries?: "all" | "visible" | undefined;
1989
2033
  ignoreTooltip?: boolean | undefined;
1990
2034
  offset: number;
1991
2035
  scaleType: "point";
@@ -2032,6 +2076,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
2032
2076
  max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
2033
2077
  }) | undefined;
2034
2078
  hideTooltip?: boolean | undefined;
2079
+ domainSeries?: "all" | "visible" | undefined;
2035
2080
  ignoreTooltip?: boolean | undefined;
2036
2081
  offset: number;
2037
2082
  scaleType: "point";
@@ -2078,6 +2123,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
2078
2123
  max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
2079
2124
  }) | undefined;
2080
2125
  hideTooltip?: boolean | undefined;
2126
+ domainSeries?: "all" | "visible" | undefined;
2081
2127
  ignoreTooltip?: boolean | undefined;
2082
2128
  offset: number;
2083
2129
  scaleType: "symlog";
@@ -2123,6 +2169,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
2123
2169
  max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
2124
2170
  }) | undefined;
2125
2171
  hideTooltip?: boolean | undefined;
2172
+ domainSeries?: "all" | "visible" | undefined;
2126
2173
  ignoreTooltip?: boolean | undefined;
2127
2174
  offset: number;
2128
2175
  scaleType: "symlog";
@@ -2168,6 +2215,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
2168
2215
  max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
2169
2216
  }) | undefined;
2170
2217
  hideTooltip?: boolean | undefined;
2218
+ domainSeries?: "all" | "visible" | undefined;
2171
2219
  ignoreTooltip?: boolean | undefined;
2172
2220
  offset: number;
2173
2221
  scaleType: "symlog";
@@ -2213,6 +2261,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
2213
2261
  max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
2214
2262
  }) | undefined;
2215
2263
  hideTooltip?: boolean | undefined;
2264
+ domainSeries?: "all" | "visible" | undefined;
2216
2265
  ignoreTooltip?: boolean | undefined;
2217
2266
  offset: number;
2218
2267
  scaleType: "symlog";
@@ -2258,6 +2307,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
2258
2307
  max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
2259
2308
  }) | undefined;
2260
2309
  hideTooltip?: boolean | undefined;
2310
+ domainSeries?: "all" | "visible" | undefined;
2261
2311
  ignoreTooltip?: boolean | undefined;
2262
2312
  offset: number;
2263
2313
  scaleType: "symlog";
@@ -2303,6 +2353,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
2303
2353
  max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
2304
2354
  }) | undefined;
2305
2355
  hideTooltip?: boolean | undefined;
2356
+ domainSeries?: "all" | "visible" | undefined;
2306
2357
  ignoreTooltip?: boolean | undefined;
2307
2358
  offset: number;
2308
2359
  scaleType: "symlog";
@@ -2348,6 +2399,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
2348
2399
  max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
2349
2400
  }) | undefined;
2350
2401
  hideTooltip?: boolean | undefined;
2402
+ domainSeries?: "all" | "visible" | undefined;
2351
2403
  ignoreTooltip?: boolean | undefined;
2352
2404
  offset: number;
2353
2405
  scaleType: "symlog";
@@ -2393,6 +2445,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
2393
2445
  max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
2394
2446
  }) | undefined;
2395
2447
  hideTooltip?: boolean | undefined;
2448
+ domainSeries?: "all" | "visible" | undefined;
2396
2449
  ignoreTooltip?: boolean | undefined;
2397
2450
  offset: number;
2398
2451
  scaleType: "symlog";
@@ -2438,6 +2491,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
2438
2491
  max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
2439
2492
  }) | undefined;
2440
2493
  hideTooltip?: boolean | undefined;
2494
+ domainSeries?: "all" | "visible" | undefined;
2441
2495
  ignoreTooltip?: boolean | undefined;
2442
2496
  offset: number;
2443
2497
  scaleType: "symlog";
@@ -2483,6 +2537,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
2483
2537
  max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
2484
2538
  }) | undefined;
2485
2539
  hideTooltip?: boolean | undefined;
2540
+ domainSeries?: "all" | "visible" | undefined;
2486
2541
  ignoreTooltip?: boolean | undefined;
2487
2542
  offset: number;
2488
2543
  scaleType: "pow";
@@ -2527,6 +2582,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
2527
2582
  max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
2528
2583
  }) | undefined;
2529
2584
  hideTooltip?: boolean | undefined;
2585
+ domainSeries?: "all" | "visible" | undefined;
2530
2586
  ignoreTooltip?: boolean | undefined;
2531
2587
  offset: number;
2532
2588
  scaleType: "pow";
@@ -2571,6 +2627,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
2571
2627
  max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
2572
2628
  }) | undefined;
2573
2629
  hideTooltip?: boolean | undefined;
2630
+ domainSeries?: "all" | "visible" | undefined;
2574
2631
  ignoreTooltip?: boolean | undefined;
2575
2632
  offset: number;
2576
2633
  scaleType: "pow";
@@ -2615,6 +2672,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
2615
2672
  max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
2616
2673
  }) | undefined;
2617
2674
  hideTooltip?: boolean | undefined;
2675
+ domainSeries?: "all" | "visible" | undefined;
2618
2676
  ignoreTooltip?: boolean | undefined;
2619
2677
  offset: number;
2620
2678
  scaleType: "pow";
@@ -2659,6 +2717,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
2659
2717
  max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
2660
2718
  }) | undefined;
2661
2719
  hideTooltip?: boolean | undefined;
2720
+ domainSeries?: "all" | "visible" | undefined;
2662
2721
  ignoreTooltip?: boolean | undefined;
2663
2722
  offset: number;
2664
2723
  scaleType: "pow";
@@ -2703,6 +2762,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
2703
2762
  max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
2704
2763
  }) | undefined;
2705
2764
  hideTooltip?: boolean | undefined;
2765
+ domainSeries?: "all" | "visible" | undefined;
2706
2766
  ignoreTooltip?: boolean | undefined;
2707
2767
  offset: number;
2708
2768
  scaleType: "pow";
@@ -2747,6 +2807,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
2747
2807
  max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
2748
2808
  }) | undefined;
2749
2809
  hideTooltip?: boolean | undefined;
2810
+ domainSeries?: "all" | "visible" | undefined;
2750
2811
  ignoreTooltip?: boolean | undefined;
2751
2812
  offset: number;
2752
2813
  scaleType: "pow";
@@ -2791,6 +2852,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
2791
2852
  max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
2792
2853
  }) | undefined;
2793
2854
  hideTooltip?: boolean | undefined;
2855
+ domainSeries?: "all" | "visible" | undefined;
2794
2856
  ignoreTooltip?: boolean | undefined;
2795
2857
  offset: number;
2796
2858
  scaleType: "pow";
@@ -2835,6 +2897,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
2835
2897
  max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
2836
2898
  }) | undefined;
2837
2899
  hideTooltip?: boolean | undefined;
2900
+ domainSeries?: "all" | "visible" | undefined;
2838
2901
  ignoreTooltip?: boolean | undefined;
2839
2902
  offset: number;
2840
2903
  scaleType: "pow";
@@ -2879,6 +2942,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
2879
2942
  max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
2880
2943
  }) | undefined;
2881
2944
  hideTooltip?: boolean | undefined;
2945
+ domainSeries?: "all" | "visible" | undefined;
2882
2946
  ignoreTooltip?: boolean | undefined;
2883
2947
  offset: number;
2884
2948
  scaleType: "sqrt";
@@ -2923,6 +2987,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
2923
2987
  max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
2924
2988
  }) | undefined;
2925
2989
  hideTooltip?: boolean | undefined;
2990
+ domainSeries?: "all" | "visible" | undefined;
2926
2991
  ignoreTooltip?: boolean | undefined;
2927
2992
  offset: number;
2928
2993
  scaleType: "sqrt";
@@ -2967,6 +3032,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
2967
3032
  max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
2968
3033
  }) | undefined;
2969
3034
  hideTooltip?: boolean | undefined;
3035
+ domainSeries?: "all" | "visible" | undefined;
2970
3036
  ignoreTooltip?: boolean | undefined;
2971
3037
  offset: number;
2972
3038
  scaleType: "sqrt";
@@ -3011,6 +3077,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
3011
3077
  max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
3012
3078
  }) | undefined;
3013
3079
  hideTooltip?: boolean | undefined;
3080
+ domainSeries?: "all" | "visible" | undefined;
3014
3081
  ignoreTooltip?: boolean | undefined;
3015
3082
  offset: number;
3016
3083
  scaleType: "sqrt";
@@ -3055,6 +3122,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
3055
3122
  max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
3056
3123
  }) | undefined;
3057
3124
  hideTooltip?: boolean | undefined;
3125
+ domainSeries?: "all" | "visible" | undefined;
3058
3126
  ignoreTooltip?: boolean | undefined;
3059
3127
  offset: number;
3060
3128
  scaleType: "sqrt";
@@ -3099,6 +3167,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
3099
3167
  max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
3100
3168
  }) | undefined;
3101
3169
  hideTooltip?: boolean | undefined;
3170
+ domainSeries?: "all" | "visible" | undefined;
3102
3171
  ignoreTooltip?: boolean | undefined;
3103
3172
  offset: number;
3104
3173
  scaleType: "sqrt";
@@ -3143,6 +3212,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
3143
3212
  max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
3144
3213
  }) | undefined;
3145
3214
  hideTooltip?: boolean | undefined;
3215
+ domainSeries?: "all" | "visible" | undefined;
3146
3216
  ignoreTooltip?: boolean | undefined;
3147
3217
  offset: number;
3148
3218
  scaleType: "sqrt";
@@ -3187,6 +3257,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
3187
3257
  max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
3188
3258
  }) | undefined;
3189
3259
  hideTooltip?: boolean | undefined;
3260
+ domainSeries?: "all" | "visible" | undefined;
3190
3261
  ignoreTooltip?: boolean | undefined;
3191
3262
  offset: number;
3192
3263
  scaleType: "sqrt";
@@ -3231,6 +3302,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
3231
3302
  max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
3232
3303
  }) | undefined;
3233
3304
  hideTooltip?: boolean | undefined;
3305
+ domainSeries?: "all" | "visible" | undefined;
3234
3306
  ignoreTooltip?: boolean | undefined;
3235
3307
  offset: number;
3236
3308
  scaleType: "sqrt";
@@ -3275,6 +3347,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
3275
3347
  max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
3276
3348
  }) | undefined;
3277
3349
  hideTooltip?: boolean | undefined;
3350
+ domainSeries?: "all" | "visible" | undefined;
3278
3351
  ignoreTooltip?: boolean | undefined;
3279
3352
  offset: number;
3280
3353
  scaleType: "utc";
@@ -3319,6 +3392,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
3319
3392
  max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
3320
3393
  }) | undefined;
3321
3394
  hideTooltip?: boolean | undefined;
3395
+ domainSeries?: "all" | "visible" | undefined;
3322
3396
  ignoreTooltip?: boolean | undefined;
3323
3397
  offset: number;
3324
3398
  scaleType: "utc";
@@ -3363,6 +3437,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
3363
3437
  max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
3364
3438
  }) | undefined;
3365
3439
  hideTooltip?: boolean | undefined;
3440
+ domainSeries?: "all" | "visible" | undefined;
3366
3441
  ignoreTooltip?: boolean | undefined;
3367
3442
  offset: number;
3368
3443
  scaleType: "utc";
@@ -3407,6 +3482,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
3407
3482
  max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
3408
3483
  }) | undefined;
3409
3484
  hideTooltip?: boolean | undefined;
3485
+ domainSeries?: "all" | "visible" | undefined;
3410
3486
  ignoreTooltip?: boolean | undefined;
3411
3487
  offset: number;
3412
3488
  scaleType: "utc";
@@ -3451,6 +3527,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
3451
3527
  max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
3452
3528
  }) | undefined;
3453
3529
  hideTooltip?: boolean | undefined;
3530
+ domainSeries?: "all" | "visible" | undefined;
3454
3531
  ignoreTooltip?: boolean | undefined;
3455
3532
  offset: number;
3456
3533
  scaleType: "utc";
@@ -3495,6 +3572,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
3495
3572
  max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
3496
3573
  }) | undefined;
3497
3574
  hideTooltip?: boolean | undefined;
3575
+ domainSeries?: "all" | "visible" | undefined;
3498
3576
  ignoreTooltip?: boolean | undefined;
3499
3577
  offset: number;
3500
3578
  scaleType: "utc";
@@ -3539,6 +3617,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
3539
3617
  max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
3540
3618
  }) | undefined;
3541
3619
  hideTooltip?: boolean | undefined;
3620
+ domainSeries?: "all" | "visible" | undefined;
3542
3621
  ignoreTooltip?: boolean | undefined;
3543
3622
  offset: number;
3544
3623
  scaleType: "utc";
@@ -3583,6 +3662,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
3583
3662
  max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
3584
3663
  }) | undefined;
3585
3664
  hideTooltip?: boolean | undefined;
3665
+ domainSeries?: "all" | "visible" | undefined;
3586
3666
  ignoreTooltip?: boolean | undefined;
3587
3667
  offset: number;
3588
3668
  scaleType: "utc";
@@ -3627,6 +3707,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
3627
3707
  max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
3628
3708
  }) | undefined;
3629
3709
  hideTooltip?: boolean | undefined;
3710
+ domainSeries?: "all" | "visible" | undefined;
3630
3711
  ignoreTooltip?: boolean | undefined;
3631
3712
  offset: number;
3632
3713
  scaleType: "utc";
@@ -3637,8 +3718,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
3637
3718
  tickNumber: number;
3638
3719
  positionSign: number;
3639
3720
  classes: Record<"root" | "line" | "label" | "tickContainer" | "tick" | "tickLabel", string>;
3640
- Tick: string | import("react").JSXElementConstructor<import("react").SVGAttributes<SVGPathElement>>;
3641
- TickLabel: import("react").JSXElementConstructor<ChartsTextProps> | typeof ChartsText;
3721
+ Tick: string | import("react").JSXElementConstructor<import("react").SVGAttributes<SVGPathElement> & import("../index.mjs").AxisTickPropsOverrides>;
3722
+ TickLabel: import("react").JSXElementConstructor<ChartsTextProps & import("../index.mjs").AxisTickLabelPropsOverrides> | typeof ChartsText;
3642
3723
  axisTickLabelProps: {
3643
3724
  lineHeight?: number | undefined;
3644
3725
  ownerState: any;
@@ -3647,6 +3728,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
3647
3728
  type?: string | undefined | undefined;
3648
3729
  filter?: string | undefined | undefined;
3649
3730
  values?: string | undefined | undefined;
3731
+ end?: number | string | undefined | undefined;
3650
3732
  min?: number | string | undefined | undefined;
3651
3733
  max?: number | string | undefined | undefined;
3652
3734
  id?: string | undefined | undefined;
@@ -3959,7 +4041,6 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
3959
4041
  href?: string | undefined | undefined;
3960
4042
  media?: string | undefined | undefined;
3961
4043
  target?: string | undefined | undefined;
3962
- end?: number | string | undefined | undefined;
3963
4044
  ideographic?: number | string | undefined | undefined;
3964
4045
  alphabetic?: number | string | undefined | undefined;
3965
4046
  hanging?: number | string | undefined | undefined;