@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.
- package/BarChart/BarElement.d.mts +3 -2
- package/BarChart/BarElement.d.ts +3 -2
- package/BarChart/BarLabel/BarLabelItem.d.mts +3 -2
- package/BarChart/BarLabel/BarLabelItem.d.ts +3 -2
- package/BarChart/seriesConfig/bar/extremums.js +7 -2
- package/BarChart/seriesConfig/bar/extremums.mjs +7 -2
- package/CHANGELOG.md +196 -0
- package/ChartsContainer/ChartsContainer.js +21 -0
- package/ChartsContainer/ChartsContainer.mjs +21 -0
- package/ChartsLabel/ChartsLabelMark.js +1 -21
- package/ChartsLabel/ChartsLabelMark.mjs +0 -20
- package/ChartsLegend/chartsLegend.types.d.mts +3 -2
- package/ChartsLegend/chartsLegend.types.d.ts +3 -2
- package/ChartsLegend/piecewiseColorLegendClasses.js +8 -2
- package/ChartsLegend/piecewiseColorLegendClasses.mjs +8 -2
- package/ChartsOverlay/ChartsOverlay.d.mts +5 -4
- package/ChartsOverlay/ChartsOverlay.d.ts +5 -4
- package/ChartsReferenceLine/ChartsXReferenceLine.js +6 -1
- package/ChartsReferenceLine/ChartsXReferenceLine.mjs +6 -1
- package/ChartsReferenceLine/ChartsYReferenceLine.js +5 -0
- package/ChartsReferenceLine/ChartsYReferenceLine.mjs +5 -0
- package/ChartsTooltip/ChartTooltip.types.d.mts +3 -2
- package/ChartsTooltip/ChartTooltip.types.d.ts +3 -2
- package/ChartsTooltip/useAxesTooltip.js +2 -2
- package/ChartsTooltip/useAxesTooltip.mjs +2 -2
- package/ChartsTooltip/useItemTooltip.js +2 -2
- package/ChartsTooltip/useItemTooltip.mjs +2 -2
- package/ChartsXAxis/useAxisTicksProps.d.mts +84 -3
- package/ChartsXAxis/useAxisTicksProps.d.ts +84 -3
- package/ChartsYAxis/useAxisTicksProps.d.mts +84 -3
- package/ChartsYAxis/useAxisTicksProps.d.ts +84 -3
- package/LineChart/AreaElement.d.mts +3 -2
- package/LineChart/AreaElement.d.ts +3 -2
- package/LineChart/LineElement.d.mts +3 -2
- package/LineChart/LineElement.d.ts +3 -2
- package/LineChart/LineHighlightPlot.d.mts +3 -2
- package/LineChart/LineHighlightPlot.d.ts +3 -2
- package/LineChart/LineHighlightPlot.js +65 -45
- package/LineChart/LineHighlightPlot.mjs +65 -45
- package/LineChart/MarkPlot.d.mts +3 -2
- package/LineChart/MarkPlot.d.ts +3 -2
- package/LineChart/seriesConfig/curveEvaluation.js +28 -14
- package/LineChart/seriesConfig/curveEvaluation.mjs +27 -14
- package/LineChart/seriesConfig/extremums.js +5 -1
- package/LineChart/seriesConfig/extremums.mjs +5 -1
- package/LineChart/useMarkPlotData.js +3 -1
- package/LineChart/useMarkPlotData.mjs +3 -1
- package/PieChart/PieArcLabelPlot.d.mts +3 -2
- package/PieChart/PieArcLabelPlot.d.ts +3 -2
- package/PieChart/PieArcPlot.d.mts +3 -2
- package/PieChart/PieArcPlot.d.ts +3 -2
- package/RadarChart/RadarAxis/RadarAxis.utils.d.mts +2 -2
- package/RadarChart/RadarAxis/RadarAxis.utils.d.ts +2 -2
- package/ScatterChart/BatchScatter.d.mts +2 -8
- package/ScatterChart/BatchScatter.d.ts +2 -8
- package/ScatterChart/BatchScatter.js +17 -12
- package/ScatterChart/BatchScatter.mjs +17 -12
- package/ScatterChart/FocusedScatterMark.js +2 -2
- package/ScatterChart/FocusedScatterMark.mjs +2 -2
- package/ScatterChart/HighlightedScatterMark.js +3 -3
- package/ScatterChart/HighlightedScatterMark.mjs +3 -3
- package/ScatterChart/Scatter.d.mts +5 -0
- package/ScatterChart/Scatter.d.ts +5 -0
- package/ScatterChart/Scatter.js +7 -2
- package/ScatterChart/Scatter.mjs +7 -2
- package/ScatterChart/ScatterChart.d.mts +2 -1
- package/ScatterChart/ScatterChart.d.ts +2 -1
- package/ScatterChart/ScatterChart.js +21 -0
- package/ScatterChart/ScatterChart.mjs +21 -0
- package/ScatterChart/ScatterMarker.types.d.mts +3 -2
- package/ScatterChart/ScatterMarker.types.d.ts +3 -2
- package/ScatterChart/ScatterPlot.d.mts +3 -2
- package/ScatterChart/ScatterPlot.d.ts +3 -2
- package/ScatterChart/ScatterPlot.js +6 -1
- package/ScatterChart/ScatterPlot.mjs +6 -1
- package/ScatterChart/seriesConfig/extremums.js +6 -0
- package/ScatterChart/seriesConfig/extremums.mjs +6 -0
- package/ScatterChart/seriesConfig/getColor.js +1 -1
- package/ScatterChart/seriesConfig/getColor.mjs +1 -1
- package/ScatterChart/seriesConfig/getMarkerSize.d.mts +18 -0
- package/ScatterChart/seriesConfig/getMarkerSize.d.ts +18 -0
- package/ScatterChart/seriesConfig/getMarkerSize.js +43 -0
- package/ScatterChart/seriesConfig/getMarkerSize.mjs +37 -0
- package/ScatterChart/seriesConfig/seriesProcessor.js +23 -8
- package/ScatterChart/seriesConfig/seriesProcessor.mjs +23 -8
- package/ScatterChart/useScatterItemPosition.d.mts +4 -0
- package/ScatterChart/useScatterItemPosition.d.ts +4 -0
- package/ScatterChart/useScatterItemPosition.js +9 -0
- package/ScatterChart/useScatterItemPosition.mjs +8 -0
- package/Toolbar/Toolbar.types.d.mts +3 -2
- package/Toolbar/Toolbar.types.d.ts +3 -2
- package/index.js +1 -1
- package/index.mjs +1 -1
- package/internals/animation/animation.d.mts +1 -2
- package/internals/animation/animation.d.ts +1 -2
- package/internals/commonNextFocusItem.d.mts +10 -2
- package/internals/commonNextFocusItem.d.ts +10 -2
- package/internals/commonNextFocusItem.js +12 -4
- package/internals/commonNextFocusItem.mjs +12 -4
- package/internals/createCommonKeyboardFocusHandler.d.mts +1 -1
- package/internals/createCommonKeyboardFocusHandler.d.ts +1 -1
- package/internals/createCommonKeyboardFocusHandler.js +3 -3
- package/internals/createCommonKeyboardFocusHandler.mjs +3 -3
- package/internals/incompleteDatasetKeysError.d.mts +1 -0
- package/internals/incompleteDatasetKeysError.d.ts +1 -0
- package/internals/incompleteDatasetKeysError.js +11 -0
- package/internals/incompleteDatasetKeysError.mjs +4 -0
- package/internals/index.d.mts +2 -0
- package/internals/index.d.ts +2 -0
- package/internals/index.js +24 -0
- package/internals/index.mjs +2 -0
- package/internals/plugins/featurePlugins/useChartCartesianAxis/createZoomLookup.js +3 -2
- package/internals/plugins/featurePlugins/useChartCartesianAxis/createZoomLookup.mjs +4 -3
- package/internals/plugins/featurePlugins/useChartCartesianAxis/defaultizeAxis.js +2 -2
- package/internals/plugins/featurePlugins/useChartCartesianAxis/defaultizeAxis.mjs +3 -3
- package/internals/plugins/featurePlugins/useChartCartesianAxis/defaultizeZoom.d.mts +10 -1
- package/internals/plugins/featurePlugins/useChartCartesianAxis/defaultizeZoom.d.ts +10 -1
- package/internals/plugins/featurePlugins/useChartCartesianAxis/defaultizeZoom.js +18 -1
- package/internals/plugins/featurePlugins/useChartCartesianAxis/defaultizeZoom.mjs +16 -0
- package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisRendering.selectors.d.mts +11 -3
- package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisRendering.selectors.d.ts +11 -3
- package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisRendering.selectors.js +24 -5
- package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisRendering.selectors.mjs +24 -5
- package/internals/plugins/featurePlugins/useChartClosestPoint/findClosestPoints.d.mts +1 -1
- package/internals/plugins/featurePlugins/useChartClosestPoint/findClosestPoints.d.ts +1 -1
- package/internals/plugins/featurePlugins/useChartClosestPoint/findClosestPoints.js +46 -2
- package/internals/plugins/featurePlugins/useChartClosestPoint/findClosestPoints.mjs +47 -2
- package/internals/plugins/featurePlugins/useChartClosestPoint/useChartClosestPoint.js +46 -11
- package/internals/plugins/featurePlugins/useChartClosestPoint/useChartClosestPoint.mjs +46 -11
- package/internals/plugins/featurePlugins/useChartClosestPoint/useChartClosestPoint.types.d.mts +2 -1
- package/internals/plugins/featurePlugins/useChartClosestPoint/useChartClosestPoint.types.d.ts +2 -1
- package/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.js +3 -2
- package/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.mjs +3 -2
- package/internals/plugins/featurePlugins/useChartPolarAxis/coordinateTransformation.d.mts +4 -0
- package/internals/plugins/featurePlugins/useChartPolarAxis/coordinateTransformation.d.ts +4 -0
- package/internals/plugins/featurePlugins/useChartPolarAxis/coordinateTransformation.js +3 -1
- package/internals/plugins/featurePlugins/useChartPolarAxis/coordinateTransformation.mjs +1 -0
- package/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarAxis.js +5 -3
- package/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarAxis.mjs +7 -5
- package/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.js +17 -3
- package/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.mjs +17 -3
- package/internals/sizeScale.d.mts +6 -0
- package/internals/sizeScale.d.ts +6 -0
- package/internals/sizeScale.js +46 -0
- package/internals/sizeScale.mjs +38 -0
- package/models/axis.d.mts +18 -12
- package/models/axis.d.ts +18 -12
- package/models/chartsSlotsComponentsProps.d.mts +25 -0
- package/models/chartsSlotsComponentsProps.d.ts +25 -0
- package/models/chartsSlotsComponentsProps.js +5 -0
- package/models/chartsSlotsComponentsProps.mjs +1 -0
- package/models/index.d.mts +1 -0
- package/models/index.d.ts +1 -0
- package/models/index.js +11 -0
- package/models/index.mjs +1 -0
- package/models/seriesType/line.d.mts +5 -2
- package/models/seriesType/line.d.ts +5 -2
- package/models/seriesType/scatter.d.mts +34 -2
- package/models/seriesType/scatter.d.ts +34 -2
- package/models/sizeMapping.d.mts +64 -0
- package/models/sizeMapping.d.ts +64 -0
- package/models/sizeMapping.js +5 -0
- package/models/sizeMapping.mjs +1 -0
- package/models/slots/chartsBaseSlots.d.mts +6 -5
- package/models/slots/chartsBaseSlots.d.ts +6 -5
- package/models/z-axis.d.mts +10 -1
- package/models/z-axis.d.ts +10 -1
- package/package.json +6 -6
|
@@ -43,6 +43,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
43
43
|
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
44
44
|
}) | undefined;
|
|
45
45
|
hideTooltip?: boolean | undefined;
|
|
46
|
+
domainSeries?: "all" | "visible" | undefined;
|
|
46
47
|
ignoreTooltip?: boolean | undefined;
|
|
47
48
|
offset: number;
|
|
48
49
|
scaleType: "linear";
|
|
@@ -86,6 +87,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
86
87
|
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
87
88
|
}) | undefined;
|
|
88
89
|
hideTooltip?: boolean | undefined;
|
|
90
|
+
domainSeries?: "all" | "visible" | undefined;
|
|
89
91
|
ignoreTooltip?: boolean | undefined;
|
|
90
92
|
offset: number;
|
|
91
93
|
scaleType: "linear";
|
|
@@ -129,6 +131,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
129
131
|
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
130
132
|
}) | undefined;
|
|
131
133
|
hideTooltip?: boolean | undefined;
|
|
134
|
+
domainSeries?: "all" | "visible" | undefined;
|
|
132
135
|
ignoreTooltip?: boolean | undefined;
|
|
133
136
|
offset: number;
|
|
134
137
|
scaleType: "linear";
|
|
@@ -172,6 +175,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
172
175
|
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
173
176
|
}) | undefined;
|
|
174
177
|
hideTooltip?: boolean | undefined;
|
|
178
|
+
domainSeries?: "all" | "visible" | undefined;
|
|
175
179
|
ignoreTooltip?: boolean | undefined;
|
|
176
180
|
offset: number;
|
|
177
181
|
scaleType: "linear";
|
|
@@ -215,6 +219,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
215
219
|
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
216
220
|
}) | undefined;
|
|
217
221
|
hideTooltip?: boolean | undefined;
|
|
222
|
+
domainSeries?: "all" | "visible" | undefined;
|
|
218
223
|
ignoreTooltip?: boolean | undefined;
|
|
219
224
|
offset: number;
|
|
220
225
|
scaleType: "linear";
|
|
@@ -258,6 +263,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
258
263
|
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
259
264
|
}) | undefined;
|
|
260
265
|
hideTooltip?: boolean | undefined;
|
|
266
|
+
domainSeries?: "all" | "visible" | undefined;
|
|
261
267
|
ignoreTooltip?: boolean | undefined;
|
|
262
268
|
offset: number;
|
|
263
269
|
scaleType: "linear";
|
|
@@ -301,6 +307,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
301
307
|
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
302
308
|
}) | undefined;
|
|
303
309
|
hideTooltip?: boolean | undefined;
|
|
310
|
+
domainSeries?: "all" | "visible" | undefined;
|
|
304
311
|
ignoreTooltip?: boolean | undefined;
|
|
305
312
|
offset: number;
|
|
306
313
|
scaleType: "linear";
|
|
@@ -344,6 +351,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
344
351
|
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
345
352
|
}) | undefined;
|
|
346
353
|
hideTooltip?: boolean | undefined;
|
|
354
|
+
domainSeries?: "all" | "visible" | undefined;
|
|
347
355
|
ignoreTooltip?: boolean | undefined;
|
|
348
356
|
offset: number;
|
|
349
357
|
scaleType: "linear";
|
|
@@ -387,6 +395,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
387
395
|
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
388
396
|
}) | undefined;
|
|
389
397
|
hideTooltip?: boolean | undefined;
|
|
398
|
+
domainSeries?: "all" | "visible" | undefined;
|
|
390
399
|
ignoreTooltip?: boolean | undefined;
|
|
391
400
|
offset: number;
|
|
392
401
|
scaleType: "linear";
|
|
@@ -430,6 +439,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
430
439
|
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
431
440
|
}) | undefined;
|
|
432
441
|
hideTooltip?: boolean | undefined;
|
|
442
|
+
domainSeries?: "all" | "visible" | undefined;
|
|
433
443
|
ignoreTooltip?: boolean | undefined;
|
|
434
444
|
offset: number;
|
|
435
445
|
scaleType: "time";
|
|
@@ -473,6 +483,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
473
483
|
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
474
484
|
}) | undefined;
|
|
475
485
|
hideTooltip?: boolean | undefined;
|
|
486
|
+
domainSeries?: "all" | "visible" | undefined;
|
|
476
487
|
ignoreTooltip?: boolean | undefined;
|
|
477
488
|
offset: number;
|
|
478
489
|
scaleType: "time";
|
|
@@ -516,6 +527,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
516
527
|
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
517
528
|
}) | undefined;
|
|
518
529
|
hideTooltip?: boolean | undefined;
|
|
530
|
+
domainSeries?: "all" | "visible" | undefined;
|
|
519
531
|
ignoreTooltip?: boolean | undefined;
|
|
520
532
|
offset: number;
|
|
521
533
|
scaleType: "time";
|
|
@@ -559,6 +571,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
559
571
|
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
560
572
|
}) | undefined;
|
|
561
573
|
hideTooltip?: boolean | undefined;
|
|
574
|
+
domainSeries?: "all" | "visible" | undefined;
|
|
562
575
|
ignoreTooltip?: boolean | undefined;
|
|
563
576
|
offset: number;
|
|
564
577
|
scaleType: "time";
|
|
@@ -602,6 +615,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
602
615
|
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
603
616
|
}) | undefined;
|
|
604
617
|
hideTooltip?: boolean | undefined;
|
|
618
|
+
domainSeries?: "all" | "visible" | undefined;
|
|
605
619
|
ignoreTooltip?: boolean | undefined;
|
|
606
620
|
offset: number;
|
|
607
621
|
scaleType: "time";
|
|
@@ -645,6 +659,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
645
659
|
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
646
660
|
}) | undefined;
|
|
647
661
|
hideTooltip?: boolean | undefined;
|
|
662
|
+
domainSeries?: "all" | "visible" | undefined;
|
|
648
663
|
ignoreTooltip?: boolean | undefined;
|
|
649
664
|
offset: number;
|
|
650
665
|
scaleType: "time";
|
|
@@ -688,6 +703,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
688
703
|
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
689
704
|
}) | undefined;
|
|
690
705
|
hideTooltip?: boolean | undefined;
|
|
706
|
+
domainSeries?: "all" | "visible" | undefined;
|
|
691
707
|
ignoreTooltip?: boolean | undefined;
|
|
692
708
|
offset: number;
|
|
693
709
|
scaleType: "time";
|
|
@@ -731,6 +747,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
731
747
|
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
732
748
|
}) | undefined;
|
|
733
749
|
hideTooltip?: boolean | undefined;
|
|
750
|
+
domainSeries?: "all" | "visible" | undefined;
|
|
734
751
|
ignoreTooltip?: boolean | undefined;
|
|
735
752
|
offset: number;
|
|
736
753
|
scaleType: "time";
|
|
@@ -774,6 +791,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
774
791
|
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
775
792
|
}) | undefined;
|
|
776
793
|
hideTooltip?: boolean | undefined;
|
|
794
|
+
domainSeries?: "all" | "visible" | undefined;
|
|
777
795
|
ignoreTooltip?: boolean | undefined;
|
|
778
796
|
offset: number;
|
|
779
797
|
scaleType: "time";
|
|
@@ -817,6 +835,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
817
835
|
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
818
836
|
}) | undefined;
|
|
819
837
|
hideTooltip?: boolean | undefined;
|
|
838
|
+
domainSeries?: "all" | "visible" | undefined;
|
|
820
839
|
ignoreTooltip?: boolean | undefined;
|
|
821
840
|
offset: number;
|
|
822
841
|
scaleType: "log";
|
|
@@ -860,6 +879,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
860
879
|
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
861
880
|
}) | undefined;
|
|
862
881
|
hideTooltip?: boolean | undefined;
|
|
882
|
+
domainSeries?: "all" | "visible" | undefined;
|
|
863
883
|
ignoreTooltip?: boolean | undefined;
|
|
864
884
|
offset: number;
|
|
865
885
|
scaleType: "log";
|
|
@@ -903,6 +923,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
903
923
|
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
904
924
|
}) | undefined;
|
|
905
925
|
hideTooltip?: boolean | undefined;
|
|
926
|
+
domainSeries?: "all" | "visible" | undefined;
|
|
906
927
|
ignoreTooltip?: boolean | undefined;
|
|
907
928
|
offset: number;
|
|
908
929
|
scaleType: "log";
|
|
@@ -946,6 +967,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
946
967
|
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
947
968
|
}) | undefined;
|
|
948
969
|
hideTooltip?: boolean | undefined;
|
|
970
|
+
domainSeries?: "all" | "visible" | undefined;
|
|
949
971
|
ignoreTooltip?: boolean | undefined;
|
|
950
972
|
offset: number;
|
|
951
973
|
scaleType: "log";
|
|
@@ -989,6 +1011,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
989
1011
|
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
990
1012
|
}) | undefined;
|
|
991
1013
|
hideTooltip?: boolean | undefined;
|
|
1014
|
+
domainSeries?: "all" | "visible" | undefined;
|
|
992
1015
|
ignoreTooltip?: boolean | undefined;
|
|
993
1016
|
offset: number;
|
|
994
1017
|
scaleType: "log";
|
|
@@ -1032,6 +1055,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1032
1055
|
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1033
1056
|
}) | undefined;
|
|
1034
1057
|
hideTooltip?: boolean | undefined;
|
|
1058
|
+
domainSeries?: "all" | "visible" | undefined;
|
|
1035
1059
|
ignoreTooltip?: boolean | undefined;
|
|
1036
1060
|
offset: number;
|
|
1037
1061
|
scaleType: "log";
|
|
@@ -1075,6 +1099,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1075
1099
|
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1076
1100
|
}) | undefined;
|
|
1077
1101
|
hideTooltip?: boolean | undefined;
|
|
1102
|
+
domainSeries?: "all" | "visible" | undefined;
|
|
1078
1103
|
ignoreTooltip?: boolean | undefined;
|
|
1079
1104
|
offset: number;
|
|
1080
1105
|
scaleType: "log";
|
|
@@ -1118,6 +1143,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1118
1143
|
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1119
1144
|
}) | undefined;
|
|
1120
1145
|
hideTooltip?: boolean | undefined;
|
|
1146
|
+
domainSeries?: "all" | "visible" | undefined;
|
|
1121
1147
|
ignoreTooltip?: boolean | undefined;
|
|
1122
1148
|
offset: number;
|
|
1123
1149
|
scaleType: "log";
|
|
@@ -1161,6 +1187,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1161
1187
|
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1162
1188
|
}) | undefined;
|
|
1163
1189
|
hideTooltip?: boolean | undefined;
|
|
1190
|
+
domainSeries?: "all" | "visible" | undefined;
|
|
1164
1191
|
ignoreTooltip?: boolean | undefined;
|
|
1165
1192
|
offset: number;
|
|
1166
1193
|
scaleType: "log";
|
|
@@ -1204,6 +1231,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1204
1231
|
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1205
1232
|
}) | undefined;
|
|
1206
1233
|
hideTooltip?: boolean | undefined;
|
|
1234
|
+
domainSeries?: "all" | "visible" | undefined;
|
|
1207
1235
|
ignoreTooltip?: boolean | undefined;
|
|
1208
1236
|
offset: number;
|
|
1209
1237
|
scaleType: "band";
|
|
@@ -1251,6 +1279,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1251
1279
|
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1252
1280
|
}) | undefined;
|
|
1253
1281
|
hideTooltip?: boolean | undefined;
|
|
1282
|
+
domainSeries?: "all" | "visible" | undefined;
|
|
1254
1283
|
ignoreTooltip?: boolean | undefined;
|
|
1255
1284
|
offset: number;
|
|
1256
1285
|
scaleType: "band";
|
|
@@ -1298,6 +1327,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1298
1327
|
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1299
1328
|
}) | undefined;
|
|
1300
1329
|
hideTooltip?: boolean | undefined;
|
|
1330
|
+
domainSeries?: "all" | "visible" | undefined;
|
|
1301
1331
|
ignoreTooltip?: boolean | undefined;
|
|
1302
1332
|
offset: number;
|
|
1303
1333
|
scaleType: "band";
|
|
@@ -1345,6 +1375,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1345
1375
|
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1346
1376
|
}) | undefined;
|
|
1347
1377
|
hideTooltip?: boolean | undefined;
|
|
1378
|
+
domainSeries?: "all" | "visible" | undefined;
|
|
1348
1379
|
ignoreTooltip?: boolean | undefined;
|
|
1349
1380
|
offset: number;
|
|
1350
1381
|
scaleType: "band";
|
|
@@ -1392,6 +1423,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1392
1423
|
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1393
1424
|
}) | undefined;
|
|
1394
1425
|
hideTooltip?: boolean | undefined;
|
|
1426
|
+
domainSeries?: "all" | "visible" | undefined;
|
|
1395
1427
|
ignoreTooltip?: boolean | undefined;
|
|
1396
1428
|
offset: number;
|
|
1397
1429
|
scaleType: "band";
|
|
@@ -1439,6 +1471,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1439
1471
|
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1440
1472
|
}) | undefined;
|
|
1441
1473
|
hideTooltip?: boolean | undefined;
|
|
1474
|
+
domainSeries?: "all" | "visible" | undefined;
|
|
1442
1475
|
ignoreTooltip?: boolean | undefined;
|
|
1443
1476
|
offset: number;
|
|
1444
1477
|
scaleType: "band";
|
|
@@ -1486,6 +1519,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1486
1519
|
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1487
1520
|
}) | undefined;
|
|
1488
1521
|
hideTooltip?: boolean | undefined;
|
|
1522
|
+
domainSeries?: "all" | "visible" | undefined;
|
|
1489
1523
|
ignoreTooltip?: boolean | undefined;
|
|
1490
1524
|
offset: number;
|
|
1491
1525
|
scaleType: "band";
|
|
@@ -1533,6 +1567,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1533
1567
|
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1534
1568
|
}) | undefined;
|
|
1535
1569
|
hideTooltip?: boolean | undefined;
|
|
1570
|
+
domainSeries?: "all" | "visible" | undefined;
|
|
1536
1571
|
ignoreTooltip?: boolean | undefined;
|
|
1537
1572
|
offset: number;
|
|
1538
1573
|
scaleType: "band";
|
|
@@ -1580,6 +1615,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1580
1615
|
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1581
1616
|
}) | undefined;
|
|
1582
1617
|
hideTooltip?: boolean | undefined;
|
|
1618
|
+
domainSeries?: "all" | "visible" | undefined;
|
|
1583
1619
|
ignoreTooltip?: boolean | undefined;
|
|
1584
1620
|
offset: number;
|
|
1585
1621
|
scaleType: "band";
|
|
@@ -1627,6 +1663,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1627
1663
|
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1628
1664
|
}) | undefined;
|
|
1629
1665
|
hideTooltip?: boolean | undefined;
|
|
1666
|
+
domainSeries?: "all" | "visible" | undefined;
|
|
1630
1667
|
ignoreTooltip?: boolean | undefined;
|
|
1631
1668
|
offset: number;
|
|
1632
1669
|
scaleType: "point";
|
|
@@ -1672,6 +1709,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1672
1709
|
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1673
1710
|
}) | undefined;
|
|
1674
1711
|
hideTooltip?: boolean | undefined;
|
|
1712
|
+
domainSeries?: "all" | "visible" | undefined;
|
|
1675
1713
|
ignoreTooltip?: boolean | undefined;
|
|
1676
1714
|
offset: number;
|
|
1677
1715
|
scaleType: "point";
|
|
@@ -1717,6 +1755,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1717
1755
|
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1718
1756
|
}) | undefined;
|
|
1719
1757
|
hideTooltip?: boolean | undefined;
|
|
1758
|
+
domainSeries?: "all" | "visible" | undefined;
|
|
1720
1759
|
ignoreTooltip?: boolean | undefined;
|
|
1721
1760
|
offset: number;
|
|
1722
1761
|
scaleType: "point";
|
|
@@ -1762,6 +1801,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1762
1801
|
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1763
1802
|
}) | undefined;
|
|
1764
1803
|
hideTooltip?: boolean | undefined;
|
|
1804
|
+
domainSeries?: "all" | "visible" | undefined;
|
|
1765
1805
|
ignoreTooltip?: boolean | undefined;
|
|
1766
1806
|
offset: number;
|
|
1767
1807
|
scaleType: "point";
|
|
@@ -1807,6 +1847,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1807
1847
|
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1808
1848
|
}) | undefined;
|
|
1809
1849
|
hideTooltip?: boolean | undefined;
|
|
1850
|
+
domainSeries?: "all" | "visible" | undefined;
|
|
1810
1851
|
ignoreTooltip?: boolean | undefined;
|
|
1811
1852
|
offset: number;
|
|
1812
1853
|
scaleType: "point";
|
|
@@ -1852,6 +1893,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1852
1893
|
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1853
1894
|
}) | undefined;
|
|
1854
1895
|
hideTooltip?: boolean | undefined;
|
|
1896
|
+
domainSeries?: "all" | "visible" | undefined;
|
|
1855
1897
|
ignoreTooltip?: boolean | undefined;
|
|
1856
1898
|
offset: number;
|
|
1857
1899
|
scaleType: "point";
|
|
@@ -1897,6 +1939,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1897
1939
|
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1898
1940
|
}) | undefined;
|
|
1899
1941
|
hideTooltip?: boolean | undefined;
|
|
1942
|
+
domainSeries?: "all" | "visible" | undefined;
|
|
1900
1943
|
ignoreTooltip?: boolean | undefined;
|
|
1901
1944
|
offset: number;
|
|
1902
1945
|
scaleType: "point";
|
|
@@ -1942,6 +1985,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1942
1985
|
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1943
1986
|
}) | undefined;
|
|
1944
1987
|
hideTooltip?: boolean | undefined;
|
|
1988
|
+
domainSeries?: "all" | "visible" | undefined;
|
|
1945
1989
|
ignoreTooltip?: boolean | undefined;
|
|
1946
1990
|
offset: number;
|
|
1947
1991
|
scaleType: "point";
|
|
@@ -1987,6 +2031,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1987
2031
|
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1988
2032
|
}) | undefined;
|
|
1989
2033
|
hideTooltip?: boolean | undefined;
|
|
2034
|
+
domainSeries?: "all" | "visible" | undefined;
|
|
1990
2035
|
ignoreTooltip?: boolean | undefined;
|
|
1991
2036
|
offset: number;
|
|
1992
2037
|
scaleType: "point";
|
|
@@ -2032,6 +2077,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2032
2077
|
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2033
2078
|
}) | undefined;
|
|
2034
2079
|
hideTooltip?: boolean | undefined;
|
|
2080
|
+
domainSeries?: "all" | "visible" | undefined;
|
|
2035
2081
|
ignoreTooltip?: boolean | undefined;
|
|
2036
2082
|
offset: number;
|
|
2037
2083
|
scaleType: "symlog";
|
|
@@ -2076,6 +2122,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2076
2122
|
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2077
2123
|
}) | undefined;
|
|
2078
2124
|
hideTooltip?: boolean | undefined;
|
|
2125
|
+
domainSeries?: "all" | "visible" | undefined;
|
|
2079
2126
|
ignoreTooltip?: boolean | undefined;
|
|
2080
2127
|
offset: number;
|
|
2081
2128
|
scaleType: "symlog";
|
|
@@ -2120,6 +2167,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2120
2167
|
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2121
2168
|
}) | undefined;
|
|
2122
2169
|
hideTooltip?: boolean | undefined;
|
|
2170
|
+
domainSeries?: "all" | "visible" | undefined;
|
|
2123
2171
|
ignoreTooltip?: boolean | undefined;
|
|
2124
2172
|
offset: number;
|
|
2125
2173
|
scaleType: "symlog";
|
|
@@ -2164,6 +2212,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2164
2212
|
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2165
2213
|
}) | undefined;
|
|
2166
2214
|
hideTooltip?: boolean | undefined;
|
|
2215
|
+
domainSeries?: "all" | "visible" | undefined;
|
|
2167
2216
|
ignoreTooltip?: boolean | undefined;
|
|
2168
2217
|
offset: number;
|
|
2169
2218
|
scaleType: "symlog";
|
|
@@ -2208,6 +2257,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2208
2257
|
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2209
2258
|
}) | undefined;
|
|
2210
2259
|
hideTooltip?: boolean | undefined;
|
|
2260
|
+
domainSeries?: "all" | "visible" | undefined;
|
|
2211
2261
|
ignoreTooltip?: boolean | undefined;
|
|
2212
2262
|
offset: number;
|
|
2213
2263
|
scaleType: "symlog";
|
|
@@ -2252,6 +2302,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2252
2302
|
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2253
2303
|
}) | undefined;
|
|
2254
2304
|
hideTooltip?: boolean | undefined;
|
|
2305
|
+
domainSeries?: "all" | "visible" | undefined;
|
|
2255
2306
|
ignoreTooltip?: boolean | undefined;
|
|
2256
2307
|
offset: number;
|
|
2257
2308
|
scaleType: "symlog";
|
|
@@ -2296,6 +2347,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2296
2347
|
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2297
2348
|
}) | undefined;
|
|
2298
2349
|
hideTooltip?: boolean | undefined;
|
|
2350
|
+
domainSeries?: "all" | "visible" | undefined;
|
|
2299
2351
|
ignoreTooltip?: boolean | undefined;
|
|
2300
2352
|
offset: number;
|
|
2301
2353
|
scaleType: "symlog";
|
|
@@ -2340,6 +2392,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2340
2392
|
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2341
2393
|
}) | undefined;
|
|
2342
2394
|
hideTooltip?: boolean | undefined;
|
|
2395
|
+
domainSeries?: "all" | "visible" | undefined;
|
|
2343
2396
|
ignoreTooltip?: boolean | undefined;
|
|
2344
2397
|
offset: number;
|
|
2345
2398
|
scaleType: "symlog";
|
|
@@ -2384,6 +2437,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2384
2437
|
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2385
2438
|
}) | undefined;
|
|
2386
2439
|
hideTooltip?: boolean | undefined;
|
|
2440
|
+
domainSeries?: "all" | "visible" | undefined;
|
|
2387
2441
|
ignoreTooltip?: boolean | undefined;
|
|
2388
2442
|
offset: number;
|
|
2389
2443
|
scaleType: "symlog";
|
|
@@ -2428,6 +2482,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2428
2482
|
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2429
2483
|
}) | undefined;
|
|
2430
2484
|
hideTooltip?: boolean | undefined;
|
|
2485
|
+
domainSeries?: "all" | "visible" | undefined;
|
|
2431
2486
|
ignoreTooltip?: boolean | undefined;
|
|
2432
2487
|
offset: number;
|
|
2433
2488
|
scaleType: "pow";
|
|
@@ -2471,6 +2526,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2471
2526
|
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2472
2527
|
}) | undefined;
|
|
2473
2528
|
hideTooltip?: boolean | undefined;
|
|
2529
|
+
domainSeries?: "all" | "visible" | undefined;
|
|
2474
2530
|
ignoreTooltip?: boolean | undefined;
|
|
2475
2531
|
offset: number;
|
|
2476
2532
|
scaleType: "pow";
|
|
@@ -2514,6 +2570,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2514
2570
|
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2515
2571
|
}) | undefined;
|
|
2516
2572
|
hideTooltip?: boolean | undefined;
|
|
2573
|
+
domainSeries?: "all" | "visible" | undefined;
|
|
2517
2574
|
ignoreTooltip?: boolean | undefined;
|
|
2518
2575
|
offset: number;
|
|
2519
2576
|
scaleType: "pow";
|
|
@@ -2557,6 +2614,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2557
2614
|
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2558
2615
|
}) | undefined;
|
|
2559
2616
|
hideTooltip?: boolean | undefined;
|
|
2617
|
+
domainSeries?: "all" | "visible" | undefined;
|
|
2560
2618
|
ignoreTooltip?: boolean | undefined;
|
|
2561
2619
|
offset: number;
|
|
2562
2620
|
scaleType: "pow";
|
|
@@ -2600,6 +2658,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2600
2658
|
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2601
2659
|
}) | undefined;
|
|
2602
2660
|
hideTooltip?: boolean | undefined;
|
|
2661
|
+
domainSeries?: "all" | "visible" | undefined;
|
|
2603
2662
|
ignoreTooltip?: boolean | undefined;
|
|
2604
2663
|
offset: number;
|
|
2605
2664
|
scaleType: "pow";
|
|
@@ -2643,6 +2702,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2643
2702
|
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2644
2703
|
}) | undefined;
|
|
2645
2704
|
hideTooltip?: boolean | undefined;
|
|
2705
|
+
domainSeries?: "all" | "visible" | undefined;
|
|
2646
2706
|
ignoreTooltip?: boolean | undefined;
|
|
2647
2707
|
offset: number;
|
|
2648
2708
|
scaleType: "pow";
|
|
@@ -2686,6 +2746,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2686
2746
|
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2687
2747
|
}) | undefined;
|
|
2688
2748
|
hideTooltip?: boolean | undefined;
|
|
2749
|
+
domainSeries?: "all" | "visible" | undefined;
|
|
2689
2750
|
ignoreTooltip?: boolean | undefined;
|
|
2690
2751
|
offset: number;
|
|
2691
2752
|
scaleType: "pow";
|
|
@@ -2729,6 +2790,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2729
2790
|
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2730
2791
|
}) | undefined;
|
|
2731
2792
|
hideTooltip?: boolean | undefined;
|
|
2793
|
+
domainSeries?: "all" | "visible" | undefined;
|
|
2732
2794
|
ignoreTooltip?: boolean | undefined;
|
|
2733
2795
|
offset: number;
|
|
2734
2796
|
scaleType: "pow";
|
|
@@ -2772,6 +2834,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2772
2834
|
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2773
2835
|
}) | undefined;
|
|
2774
2836
|
hideTooltip?: boolean | undefined;
|
|
2837
|
+
domainSeries?: "all" | "visible" | undefined;
|
|
2775
2838
|
ignoreTooltip?: boolean | undefined;
|
|
2776
2839
|
offset: number;
|
|
2777
2840
|
scaleType: "pow";
|
|
@@ -2815,6 +2878,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2815
2878
|
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2816
2879
|
}) | undefined;
|
|
2817
2880
|
hideTooltip?: boolean | undefined;
|
|
2881
|
+
domainSeries?: "all" | "visible" | undefined;
|
|
2818
2882
|
ignoreTooltip?: boolean | undefined;
|
|
2819
2883
|
offset: number;
|
|
2820
2884
|
scaleType: "sqrt";
|
|
@@ -2858,6 +2922,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2858
2922
|
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2859
2923
|
}) | undefined;
|
|
2860
2924
|
hideTooltip?: boolean | undefined;
|
|
2925
|
+
domainSeries?: "all" | "visible" | undefined;
|
|
2861
2926
|
ignoreTooltip?: boolean | undefined;
|
|
2862
2927
|
offset: number;
|
|
2863
2928
|
scaleType: "sqrt";
|
|
@@ -2901,6 +2966,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2901
2966
|
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2902
2967
|
}) | undefined;
|
|
2903
2968
|
hideTooltip?: boolean | undefined;
|
|
2969
|
+
domainSeries?: "all" | "visible" | undefined;
|
|
2904
2970
|
ignoreTooltip?: boolean | undefined;
|
|
2905
2971
|
offset: number;
|
|
2906
2972
|
scaleType: "sqrt";
|
|
@@ -2944,6 +3010,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2944
3010
|
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2945
3011
|
}) | undefined;
|
|
2946
3012
|
hideTooltip?: boolean | undefined;
|
|
3013
|
+
domainSeries?: "all" | "visible" | undefined;
|
|
2947
3014
|
ignoreTooltip?: boolean | undefined;
|
|
2948
3015
|
offset: number;
|
|
2949
3016
|
scaleType: "sqrt";
|
|
@@ -2987,6 +3054,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2987
3054
|
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2988
3055
|
}) | undefined;
|
|
2989
3056
|
hideTooltip?: boolean | undefined;
|
|
3057
|
+
domainSeries?: "all" | "visible" | undefined;
|
|
2990
3058
|
ignoreTooltip?: boolean | undefined;
|
|
2991
3059
|
offset: number;
|
|
2992
3060
|
scaleType: "sqrt";
|
|
@@ -3030,6 +3098,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
3030
3098
|
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
3031
3099
|
}) | undefined;
|
|
3032
3100
|
hideTooltip?: boolean | undefined;
|
|
3101
|
+
domainSeries?: "all" | "visible" | undefined;
|
|
3033
3102
|
ignoreTooltip?: boolean | undefined;
|
|
3034
3103
|
offset: number;
|
|
3035
3104
|
scaleType: "sqrt";
|
|
@@ -3073,6 +3142,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
3073
3142
|
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
3074
3143
|
}) | undefined;
|
|
3075
3144
|
hideTooltip?: boolean | undefined;
|
|
3145
|
+
domainSeries?: "all" | "visible" | undefined;
|
|
3076
3146
|
ignoreTooltip?: boolean | undefined;
|
|
3077
3147
|
offset: number;
|
|
3078
3148
|
scaleType: "sqrt";
|
|
@@ -3116,6 +3186,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
3116
3186
|
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
3117
3187
|
}) | undefined;
|
|
3118
3188
|
hideTooltip?: boolean | undefined;
|
|
3189
|
+
domainSeries?: "all" | "visible" | undefined;
|
|
3119
3190
|
ignoreTooltip?: boolean | undefined;
|
|
3120
3191
|
offset: number;
|
|
3121
3192
|
scaleType: "sqrt";
|
|
@@ -3159,6 +3230,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
3159
3230
|
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
3160
3231
|
}) | undefined;
|
|
3161
3232
|
hideTooltip?: boolean | undefined;
|
|
3233
|
+
domainSeries?: "all" | "visible" | undefined;
|
|
3162
3234
|
ignoreTooltip?: boolean | undefined;
|
|
3163
3235
|
offset: number;
|
|
3164
3236
|
scaleType: "sqrt";
|
|
@@ -3202,6 +3274,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
3202
3274
|
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
3203
3275
|
}) | undefined;
|
|
3204
3276
|
hideTooltip?: boolean | undefined;
|
|
3277
|
+
domainSeries?: "all" | "visible" | undefined;
|
|
3205
3278
|
ignoreTooltip?: boolean | undefined;
|
|
3206
3279
|
offset: number;
|
|
3207
3280
|
scaleType: "utc";
|
|
@@ -3245,6 +3318,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
3245
3318
|
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
3246
3319
|
}) | undefined;
|
|
3247
3320
|
hideTooltip?: boolean | undefined;
|
|
3321
|
+
domainSeries?: "all" | "visible" | undefined;
|
|
3248
3322
|
ignoreTooltip?: boolean | undefined;
|
|
3249
3323
|
offset: number;
|
|
3250
3324
|
scaleType: "utc";
|
|
@@ -3288,6 +3362,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
3288
3362
|
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
3289
3363
|
}) | undefined;
|
|
3290
3364
|
hideTooltip?: boolean | undefined;
|
|
3365
|
+
domainSeries?: "all" | "visible" | undefined;
|
|
3291
3366
|
ignoreTooltip?: boolean | undefined;
|
|
3292
3367
|
offset: number;
|
|
3293
3368
|
scaleType: "utc";
|
|
@@ -3331,6 +3406,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
3331
3406
|
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
3332
3407
|
}) | undefined;
|
|
3333
3408
|
hideTooltip?: boolean | undefined;
|
|
3409
|
+
domainSeries?: "all" | "visible" | undefined;
|
|
3334
3410
|
ignoreTooltip?: boolean | undefined;
|
|
3335
3411
|
offset: number;
|
|
3336
3412
|
scaleType: "utc";
|
|
@@ -3374,6 +3450,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
3374
3450
|
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
3375
3451
|
}) | undefined;
|
|
3376
3452
|
hideTooltip?: boolean | undefined;
|
|
3453
|
+
domainSeries?: "all" | "visible" | undefined;
|
|
3377
3454
|
ignoreTooltip?: boolean | undefined;
|
|
3378
3455
|
offset: number;
|
|
3379
3456
|
scaleType: "utc";
|
|
@@ -3417,6 +3494,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
3417
3494
|
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
3418
3495
|
}) | undefined;
|
|
3419
3496
|
hideTooltip?: boolean | undefined;
|
|
3497
|
+
domainSeries?: "all" | "visible" | undefined;
|
|
3420
3498
|
ignoreTooltip?: boolean | undefined;
|
|
3421
3499
|
offset: number;
|
|
3422
3500
|
scaleType: "utc";
|
|
@@ -3460,6 +3538,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
3460
3538
|
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
3461
3539
|
}) | undefined;
|
|
3462
3540
|
hideTooltip?: boolean | undefined;
|
|
3541
|
+
domainSeries?: "all" | "visible" | undefined;
|
|
3463
3542
|
ignoreTooltip?: boolean | undefined;
|
|
3464
3543
|
offset: number;
|
|
3465
3544
|
scaleType: "utc";
|
|
@@ -3503,6 +3582,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
3503
3582
|
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
3504
3583
|
}) | undefined;
|
|
3505
3584
|
hideTooltip?: boolean | undefined;
|
|
3585
|
+
domainSeries?: "all" | "visible" | undefined;
|
|
3506
3586
|
ignoreTooltip?: boolean | undefined;
|
|
3507
3587
|
offset: number;
|
|
3508
3588
|
scaleType: "utc";
|
|
@@ -3546,6 +3626,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
3546
3626
|
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
3547
3627
|
}) | undefined;
|
|
3548
3628
|
hideTooltip?: boolean | undefined;
|
|
3629
|
+
domainSeries?: "all" | "visible" | undefined;
|
|
3549
3630
|
ignoreTooltip?: boolean | undefined;
|
|
3550
3631
|
offset: number;
|
|
3551
3632
|
scaleType: "utc";
|
|
@@ -3556,8 +3637,8 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
3556
3637
|
tickNumber: number;
|
|
3557
3638
|
positionSign: number;
|
|
3558
3639
|
classes: Record<"root" | "line" | "label" | "tickContainer" | "tick" | "tickLabel", string>;
|
|
3559
|
-
Tick: string | import("react").JSXElementConstructor<import("react").SVGAttributes<SVGPathElement
|
|
3560
|
-
TickLabel: import("react").JSXElementConstructor<ChartsTextProps> | typeof ChartsText;
|
|
3640
|
+
Tick: string | import("react").JSXElementConstructor<import("react").SVGAttributes<SVGPathElement> & import("../index.js").AxisTickPropsOverrides>;
|
|
3641
|
+
TickLabel: import("react").JSXElementConstructor<ChartsTextProps & import("../index.js").AxisTickLabelPropsOverrides> | typeof ChartsText;
|
|
3561
3642
|
axisTickLabelProps: {
|
|
3562
3643
|
lineHeight?: number | undefined;
|
|
3563
3644
|
ownerState: any;
|
|
@@ -3566,6 +3647,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
3566
3647
|
type?: string | undefined | undefined;
|
|
3567
3648
|
filter?: string | undefined | undefined;
|
|
3568
3649
|
values?: string | undefined | undefined;
|
|
3650
|
+
end?: number | string | undefined | undefined;
|
|
3569
3651
|
min?: number | string | undefined | undefined;
|
|
3570
3652
|
max?: number | string | undefined | undefined;
|
|
3571
3653
|
id?: string | undefined | undefined;
|
|
@@ -3878,7 +3960,6 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
3878
3960
|
href?: string | undefined | undefined;
|
|
3879
3961
|
media?: string | undefined | undefined;
|
|
3880
3962
|
target?: string | undefined | undefined;
|
|
3881
|
-
end?: number | string | undefined | undefined;
|
|
3882
3963
|
ideographic?: number | string | undefined | undefined;
|
|
3883
3964
|
alphabetic?: number | string | undefined | undefined;
|
|
3884
3965
|
hanging?: number | string | undefined | undefined;
|
|
@@ -3,6 +3,7 @@ import { type SlotComponentPropsFromProps } from '@mui/x-internals/types';
|
|
|
3
3
|
import { type AnimatedAreaProps } from "./AnimatedArea.mjs";
|
|
4
4
|
import { type SeriesId } from "../models/seriesType/common.mjs";
|
|
5
5
|
import { type LineClasses } from "./lineClasses.mjs";
|
|
6
|
+
import type { AreaPropsOverrides } from "../models/chartsSlotsComponentsProps.mjs";
|
|
6
7
|
export interface AreaElementOwnerState {
|
|
7
8
|
seriesId: SeriesId;
|
|
8
9
|
color: string;
|
|
@@ -16,10 +17,10 @@ export interface AreaElementSlots {
|
|
|
16
17
|
* The component that renders the area.
|
|
17
18
|
* @default AnimatedArea
|
|
18
19
|
*/
|
|
19
|
-
area?: React.JSXElementConstructor<AnimatedAreaProps>;
|
|
20
|
+
area?: React.JSXElementConstructor<AnimatedAreaProps & AreaPropsOverrides>;
|
|
20
21
|
}
|
|
21
22
|
export interface AreaElementSlotProps {
|
|
22
|
-
area?: SlotComponentPropsFromProps<AnimatedAreaProps,
|
|
23
|
+
area?: SlotComponentPropsFromProps<AnimatedAreaProps, AreaPropsOverrides, AreaElementOwnerState>;
|
|
23
24
|
}
|
|
24
25
|
export interface AreaElementProps extends Omit<AreaElementOwnerState, 'isFaded' | 'isHighlighted'>, Pick<AnimatedAreaProps, 'skipAnimation'>, Omit<React.SVGProps<SVGPathElement>, 'ref' | 'color'> {
|
|
25
26
|
d: string;
|