@mui/x-charts 9.0.4 → 9.1.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/BarChart.d.mts +1 -2
- package/BarChart/BarChart.d.ts +1 -2
- package/BarChart/BarChart.js +2 -913
- package/BarChart/BarChart.mjs +2 -913
- package/BarChart/seriesConfig/bar/seriesProcessor.js +2 -0
- package/BarChart/seriesConfig/bar/seriesProcessor.mjs +2 -0
- package/CHANGELOG.md +133 -0
- package/ChartsAxisHighlightValue/ChartsAxisHighlightValue.d.mts +55 -0
- package/ChartsAxisHighlightValue/ChartsAxisHighlightValue.d.ts +55 -0
- package/ChartsAxisHighlightValue/ChartsAxisHighlightValue.js +94 -0
- package/ChartsAxisHighlightValue/ChartsAxisHighlightValue.mjs +88 -0
- package/ChartsAxisHighlightValue/ChartsAxisHighlightValueItem.d.mts +13 -0
- package/ChartsAxisHighlightValue/ChartsAxisHighlightValueItem.d.ts +13 -0
- package/ChartsAxisHighlightValue/ChartsAxisHighlightValueItem.js +86 -0
- package/ChartsAxisHighlightValue/ChartsAxisHighlightValueItem.mjs +80 -0
- package/ChartsAxisHighlightValue/chartsAxisHighlightValueClasses.d.mts +18 -0
- package/ChartsAxisHighlightValue/chartsAxisHighlightValueClasses.d.ts +18 -0
- package/ChartsAxisHighlightValue/chartsAxisHighlightValueClasses.js +26 -0
- package/ChartsAxisHighlightValue/chartsAxisHighlightValueClasses.mjs +16 -0
- package/ChartsAxisHighlightValue/index.d.mts +1 -0
- package/ChartsAxisHighlightValue/index.d.ts +1 -0
- package/ChartsAxisHighlightValue/index.js +16 -0
- package/ChartsAxisHighlightValue/index.mjs +1 -0
- package/ChartsAxisHighlightValue/useAxisHighlightValue.d.mts +14 -0
- package/ChartsAxisHighlightValue/useAxisHighlightValue.d.ts +14 -0
- package/ChartsAxisHighlightValue/useAxisHighlightValue.js +130 -0
- package/ChartsAxisHighlightValue/useAxisHighlightValue.mjs +124 -0
- package/ChartsContainer/ChartsContainer.js +4 -1431
- package/ChartsContainer/ChartsContainer.mjs +4 -1431
- package/ChartsRadialAxisHighlight/ChartsRadialAxisHighlight.d.mts +15 -0
- package/ChartsRadialAxisHighlight/ChartsRadialAxisHighlight.d.ts +15 -0
- package/ChartsRadialAxisHighlight/ChartsRadialAxisHighlight.js +56 -0
- package/ChartsRadialAxisHighlight/ChartsRadialAxisHighlight.mjs +50 -0
- package/ChartsRadialAxisHighlight/ChartsRadialAxisHighlight.types.d.mts +6 -0
- package/ChartsRadialAxisHighlight/ChartsRadialAxisHighlight.types.d.ts +6 -0
- package/ChartsRadialAxisHighlight/ChartsRadialAxisHighlight.types.js +5 -0
- package/ChartsRadialAxisHighlight/ChartsRadialAxisHighlight.types.mjs +1 -0
- package/ChartsRadialAxisHighlight/ChartsRadialAxisHighlightPath.d.mts +11 -0
- package/ChartsRadialAxisHighlight/ChartsRadialAxisHighlightPath.d.ts +11 -0
- package/ChartsRadialAxisHighlight/ChartsRadialAxisHighlightPath.js +70 -0
- package/ChartsRadialAxisHighlight/ChartsRadialAxisHighlightPath.mjs +64 -0
- package/ChartsRadialAxisHighlight/ChartsRadiusAxisHighlight.d.mts +9 -0
- package/ChartsRadialAxisHighlight/ChartsRadiusAxisHighlight.d.ts +9 -0
- package/ChartsRadialAxisHighlight/ChartsRadiusAxisHighlight.js +87 -0
- package/ChartsRadialAxisHighlight/ChartsRadiusAxisHighlight.mjs +81 -0
- package/ChartsRadialAxisHighlight/ChartsRotationAxisHighlight.d.mts +9 -0
- package/ChartsRadialAxisHighlight/ChartsRotationAxisHighlight.d.ts +9 -0
- package/ChartsRadialAxisHighlight/ChartsRotationAxisHighlight.js +98 -0
- package/ChartsRadialAxisHighlight/ChartsRotationAxisHighlight.mjs +92 -0
- package/ChartsRadialAxisHighlight/chartsRadialAxisHighlightClasses.d.mts +7 -0
- package/ChartsRadialAxisHighlight/chartsRadialAxisHighlightClasses.d.ts +7 -0
- package/ChartsRadialAxisHighlight/chartsRadialAxisHighlightClasses.js +14 -0
- package/ChartsRadialAxisHighlight/chartsRadialAxisHighlightClasses.mjs +6 -0
- package/ChartsRadialAxisHighlight/index.d.mts +5 -0
- package/ChartsRadialAxisHighlight/index.d.ts +5 -0
- package/ChartsRadialAxisHighlight/index.js +47 -0
- package/ChartsRadialAxisHighlight/index.mjs +4 -0
- package/ChartsRadiusAxis/index.d.mts +3 -2
- package/ChartsRadiusAxis/index.d.ts +3 -2
- package/ChartsRadiusAxis/index.mjs +3 -1
- package/ChartsRotationAxis/index.d.mts +3 -2
- package/ChartsRotationAxis/index.d.ts +3 -2
- package/ChartsRotationAxis/index.mjs +3 -1
- package/ChartsXAxis/useAxisTicksProps.d.mts +162 -81
- package/ChartsXAxis/useAxisTicksProps.d.ts +162 -81
- package/ChartsYAxis/useAxisTicksProps.d.mts +162 -81
- package/ChartsYAxis/useAxisTicksProps.d.ts +162 -81
- package/LICENSE +2 -0
- package/LineChart/LineChart.js +2 -913
- package/LineChart/LineChart.mjs +2 -913
- package/LineChart/seriesConfig/curveEvaluation.d.mts +19 -1
- package/LineChart/seriesConfig/curveEvaluation.d.ts +19 -1
- package/LineChart/seriesConfig/curveEvaluation.js +132 -0
- package/LineChart/seriesConfig/curveEvaluation.mjs +131 -0
- package/LineChart/seriesConfig/getSeriesWithDefaultValues.js +2 -1
- package/LineChart/seriesConfig/getSeriesWithDefaultValues.mjs +2 -1
- package/LineChart/seriesConfig/seriesProcessor.js +4 -0
- package/LineChart/seriesConfig/seriesProcessor.mjs +4 -0
- package/LineChart/useAreaPlotData.js +4 -0
- package/LineChart/useAreaPlotData.mjs +4 -0
- package/LineChart/useLinePlotData.js +2 -0
- package/LineChart/useLinePlotData.mjs +2 -0
- package/LineChart/useMarkPlotData.js +2 -0
- package/LineChart/useMarkPlotData.mjs +2 -0
- package/ScatterChart/FocusedScatterMark.js +10 -24
- package/ScatterChart/FocusedScatterMark.mjs +10 -24
- package/ScatterChart/HighlightedScatterMark.d.mts +11 -0
- package/ScatterChart/HighlightedScatterMark.d.ts +11 -0
- package/ScatterChart/HighlightedScatterMark.js +68 -0
- package/ScatterChart/HighlightedScatterMark.mjs +62 -0
- package/ScatterChart/ScatterChart.d.mts +1 -2
- package/ScatterChart/ScatterChart.d.ts +1 -2
- package/ScatterChart/ScatterChart.js +2 -913
- package/ScatterChart/ScatterChart.mjs +2 -913
- package/ScatterChart/index.d.mts +1 -0
- package/ScatterChart/index.d.ts +1 -0
- package/ScatterChart/index.js +12 -0
- package/ScatterChart/index.mjs +1 -0
- package/ScatterChart/scatterClasses.d.mts +3 -1
- package/ScatterChart/scatterClasses.d.ts +3 -1
- package/ScatterChart/scatterClasses.js +3 -2
- package/ScatterChart/scatterClasses.mjs +3 -2
- package/ScatterChart/useScatterChartProps.js +3 -1
- package/ScatterChart/useScatterChartProps.mjs +3 -1
- package/ScatterChart/useScatterItemPosition.d.mts +16 -0
- package/ScatterChart/useScatterItemPosition.d.ts +16 -0
- package/ScatterChart/useScatterItemPosition.js +47 -0
- package/ScatterChart/useScatterItemPosition.mjs +41 -0
- package/SparkLineChart/SparkLineChart.js +2 -913
- package/SparkLineChart/SparkLineChart.mjs +2 -913
- package/hooks/useAxis.d.mts +3 -3
- package/hooks/useAxis.d.ts +3 -3
- package/hooks/useAxisSystem.d.mts +1 -1
- package/hooks/useAxisSystem.d.ts +1 -1
- package/hooks/useAxisSystem.js +1 -1
- package/hooks/useAxisSystem.mjs +1 -1
- package/index.d.mts +2 -0
- package/index.d.ts +2 -0
- package/index.js +25 -1
- package/index.mjs +3 -1
- package/internals/index.d.mts +5 -0
- package/internals/index.d.ts +5 -0
- package/internals/index.js +48 -0
- package/internals/index.mjs +5 -0
- package/internals/plugins/corePlugins/useChartInteractionListener/useChartInteractionListener.js +4 -2
- package/internals/plugins/corePlugins/useChartInteractionListener/useChartInteractionListener.mjs +4 -2
- package/internals/plugins/corePlugins/useChartSeriesConfig/types/polarExtremumGetter.types.d.mts +2 -2
- package/internals/plugins/corePlugins/useChartSeriesConfig/types/polarExtremumGetter.types.d.ts +2 -2
- package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisRendering.selectors.d.mts +3 -2
- package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisRendering.selectors.d.ts +3 -2
- package/internals/plugins/featurePlugins/useChartPolarAxis/computeAxisValue.d.mts +4 -7
- package/internals/plugins/featurePlugins/useChartPolarAxis/computeAxisValue.d.ts +4 -7
- package/internals/plugins/featurePlugins/useChartPolarAxis/defaultizeAxis.d.mts +3 -2
- package/internals/plugins/featurePlugins/useChartPolarAxis/defaultizeAxis.d.ts +3 -2
- package/internals/plugins/featurePlugins/useChartPolarAxis/getAxisExtremum.d.mts +2 -2
- package/internals/plugins/featurePlugins/useChartPolarAxis/getAxisExtremum.d.ts +2 -2
- package/internals/plugins/featurePlugins/useChartPolarAxis/getAxisIndex.d.mts +2 -2
- package/internals/plugins/featurePlugins/useChartPolarAxis/getAxisIndex.d.ts +2 -2
- package/internals/plugins/featurePlugins/useChartPolarAxis/getAxisIndex.js +20 -4
- package/internals/plugins/featurePlugins/useChartPolarAxis/getAxisIndex.mjs +20 -4
- package/internals/plugins/featurePlugins/useChartPolarAxis/index.d.mts +2 -1
- package/internals/plugins/featurePlugins/useChartPolarAxis/index.d.ts +2 -1
- package/internals/plugins/featurePlugins/useChartPolarAxis/index.js +12 -0
- package/internals/plugins/featurePlugins/useChartPolarAxis/index.mjs +2 -1
- package/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarAxis.selectors.d.mts +4 -4
- package/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarAxis.selectors.d.ts +4 -4
- package/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarAxis.types.d.mts +3 -3
- package/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarAxis.types.d.ts +3 -3
- package/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarInteraction.selectors.d.mts +1 -1
- package/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarInteraction.selectors.d.ts +1 -1
- package/models/axis.d.mts +28 -28
- package/models/axis.d.ts +28 -28
- package/models/axis.js +5 -1
- package/models/axis.mjs +5 -1
- package/models/seriesType/line.d.mts +6 -6
- package/models/seriesType/line.d.ts +6 -6
- package/package.json +31 -3
|
@@ -35,7 +35,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
35
35
|
dataKey?: string | undefined;
|
|
36
36
|
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
37
37
|
height: number;
|
|
38
|
-
position?: "
|
|
38
|
+
position?: "none" | "bottom" | "top" | undefined;
|
|
39
|
+
width?: undefined;
|
|
39
40
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
40
41
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
41
42
|
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
@@ -78,7 +79,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
78
79
|
dataKey?: string | undefined;
|
|
79
80
|
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
80
81
|
height: number;
|
|
81
|
-
position?: "
|
|
82
|
+
position?: "none" | "bottom" | "top" | undefined;
|
|
83
|
+
width?: undefined;
|
|
82
84
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
83
85
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
84
86
|
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
@@ -121,7 +123,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
121
123
|
dataKey?: string | undefined;
|
|
122
124
|
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
123
125
|
height: number;
|
|
124
|
-
position?: "
|
|
126
|
+
position?: "none" | "bottom" | "top" | undefined;
|
|
127
|
+
width?: undefined;
|
|
125
128
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
126
129
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
127
130
|
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
@@ -164,7 +167,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
164
167
|
dataKey?: string | undefined;
|
|
165
168
|
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
166
169
|
height: number;
|
|
167
|
-
position?: "
|
|
170
|
+
position?: "none" | "bottom" | "top" | undefined;
|
|
171
|
+
width?: undefined;
|
|
168
172
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
169
173
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
170
174
|
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
@@ -207,7 +211,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
207
211
|
dataKey?: string | undefined;
|
|
208
212
|
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
209
213
|
height: number;
|
|
210
|
-
position?: "
|
|
214
|
+
position?: "none" | "bottom" | "top" | undefined;
|
|
215
|
+
width?: undefined;
|
|
211
216
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
212
217
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
213
218
|
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
@@ -250,7 +255,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
250
255
|
dataKey?: string | undefined;
|
|
251
256
|
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
252
257
|
height: number;
|
|
253
|
-
position?: "
|
|
258
|
+
position?: "none" | "bottom" | "top" | undefined;
|
|
259
|
+
width?: undefined;
|
|
254
260
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
255
261
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
256
262
|
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
@@ -293,7 +299,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
293
299
|
dataKey?: string | undefined;
|
|
294
300
|
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
295
301
|
height: number;
|
|
296
|
-
position?: "
|
|
302
|
+
position?: "none" | "bottom" | "top" | undefined;
|
|
303
|
+
width?: undefined;
|
|
297
304
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
298
305
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
299
306
|
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
@@ -336,7 +343,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
336
343
|
dataKey?: string | undefined;
|
|
337
344
|
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
338
345
|
height: number;
|
|
339
|
-
position?: "
|
|
346
|
+
position?: "none" | "bottom" | "top" | undefined;
|
|
347
|
+
width?: undefined;
|
|
340
348
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
341
349
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
342
350
|
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
@@ -379,7 +387,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
379
387
|
dataKey?: string | undefined;
|
|
380
388
|
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
381
389
|
height: number;
|
|
382
|
-
position?: "
|
|
390
|
+
position?: "none" | "bottom" | "top" | undefined;
|
|
391
|
+
width?: undefined;
|
|
383
392
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
384
393
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
385
394
|
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
@@ -422,7 +431,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
422
431
|
dataKey?: string | undefined;
|
|
423
432
|
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
424
433
|
height: number;
|
|
425
|
-
position?: "
|
|
434
|
+
position?: "none" | "bottom" | "top" | undefined;
|
|
435
|
+
width?: undefined;
|
|
426
436
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
427
437
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
428
438
|
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
@@ -465,7 +475,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
465
475
|
dataKey?: string | undefined;
|
|
466
476
|
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
467
477
|
height: number;
|
|
468
|
-
position?: "
|
|
478
|
+
position?: "none" | "bottom" | "top" | undefined;
|
|
479
|
+
width?: undefined;
|
|
469
480
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
470
481
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
471
482
|
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
@@ -508,7 +519,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
508
519
|
dataKey?: string | undefined;
|
|
509
520
|
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
510
521
|
height: number;
|
|
511
|
-
position?: "
|
|
522
|
+
position?: "none" | "bottom" | "top" | undefined;
|
|
523
|
+
width?: undefined;
|
|
512
524
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
513
525
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
514
526
|
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
@@ -551,7 +563,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
551
563
|
dataKey?: string | undefined;
|
|
552
564
|
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
553
565
|
height: number;
|
|
554
|
-
position?: "
|
|
566
|
+
position?: "none" | "bottom" | "top" | undefined;
|
|
567
|
+
width?: undefined;
|
|
555
568
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
556
569
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
557
570
|
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
@@ -594,7 +607,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
594
607
|
dataKey?: string | undefined;
|
|
595
608
|
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
596
609
|
height: number;
|
|
597
|
-
position?: "
|
|
610
|
+
position?: "none" | "bottom" | "top" | undefined;
|
|
611
|
+
width?: undefined;
|
|
598
612
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
599
613
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
600
614
|
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
@@ -637,7 +651,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
637
651
|
dataKey?: string | undefined;
|
|
638
652
|
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
639
653
|
height: number;
|
|
640
|
-
position?: "
|
|
654
|
+
position?: "none" | "bottom" | "top" | undefined;
|
|
655
|
+
width?: undefined;
|
|
641
656
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
642
657
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
643
658
|
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
@@ -680,7 +695,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
680
695
|
dataKey?: string | undefined;
|
|
681
696
|
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
682
697
|
height: number;
|
|
683
|
-
position?: "
|
|
698
|
+
position?: "none" | "bottom" | "top" | undefined;
|
|
699
|
+
width?: undefined;
|
|
684
700
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
685
701
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
686
702
|
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
@@ -723,7 +739,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
723
739
|
dataKey?: string | undefined;
|
|
724
740
|
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
725
741
|
height: number;
|
|
726
|
-
position?: "
|
|
742
|
+
position?: "none" | "bottom" | "top" | undefined;
|
|
743
|
+
width?: undefined;
|
|
727
744
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
728
745
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
729
746
|
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
@@ -766,7 +783,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
766
783
|
dataKey?: string | undefined;
|
|
767
784
|
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
768
785
|
height: number;
|
|
769
|
-
position?: "
|
|
786
|
+
position?: "none" | "bottom" | "top" | undefined;
|
|
787
|
+
width?: undefined;
|
|
770
788
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
771
789
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
772
790
|
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
@@ -809,7 +827,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
809
827
|
dataKey?: string | undefined;
|
|
810
828
|
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
811
829
|
height: number;
|
|
812
|
-
position?: "
|
|
830
|
+
position?: "none" | "bottom" | "top" | undefined;
|
|
831
|
+
width?: undefined;
|
|
813
832
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
814
833
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
815
834
|
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
@@ -852,7 +871,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
852
871
|
dataKey?: string | undefined;
|
|
853
872
|
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
854
873
|
height: number;
|
|
855
|
-
position?: "
|
|
874
|
+
position?: "none" | "bottom" | "top" | undefined;
|
|
875
|
+
width?: undefined;
|
|
856
876
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
857
877
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
858
878
|
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
@@ -895,7 +915,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
895
915
|
dataKey?: string | undefined;
|
|
896
916
|
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
897
917
|
height: number;
|
|
898
|
-
position?: "
|
|
918
|
+
position?: "none" | "bottom" | "top" | undefined;
|
|
919
|
+
width?: undefined;
|
|
899
920
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
900
921
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
901
922
|
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
@@ -938,7 +959,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
938
959
|
dataKey?: string | undefined;
|
|
939
960
|
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
940
961
|
height: number;
|
|
941
|
-
position?: "
|
|
962
|
+
position?: "none" | "bottom" | "top" | undefined;
|
|
963
|
+
width?: undefined;
|
|
942
964
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
943
965
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
944
966
|
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
@@ -981,7 +1003,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
981
1003
|
dataKey?: string | undefined;
|
|
982
1004
|
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
983
1005
|
height: number;
|
|
984
|
-
position?: "
|
|
1006
|
+
position?: "none" | "bottom" | "top" | undefined;
|
|
1007
|
+
width?: undefined;
|
|
985
1008
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
986
1009
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
987
1010
|
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
@@ -1024,7 +1047,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1024
1047
|
dataKey?: string | undefined;
|
|
1025
1048
|
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
1026
1049
|
height: number;
|
|
1027
|
-
position?: "
|
|
1050
|
+
position?: "none" | "bottom" | "top" | undefined;
|
|
1051
|
+
width?: undefined;
|
|
1028
1052
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
1029
1053
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
1030
1054
|
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
@@ -1067,7 +1091,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1067
1091
|
dataKey?: string | undefined;
|
|
1068
1092
|
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
1069
1093
|
height: number;
|
|
1070
|
-
position?: "
|
|
1094
|
+
position?: "none" | "bottom" | "top" | undefined;
|
|
1095
|
+
width?: undefined;
|
|
1071
1096
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
1072
1097
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
1073
1098
|
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
@@ -1110,7 +1135,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1110
1135
|
dataKey?: string | undefined;
|
|
1111
1136
|
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
1112
1137
|
height: number;
|
|
1113
|
-
position?: "
|
|
1138
|
+
position?: "none" | "bottom" | "top" | undefined;
|
|
1139
|
+
width?: undefined;
|
|
1114
1140
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
1115
1141
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
1116
1142
|
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
@@ -1153,7 +1179,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1153
1179
|
dataKey?: string | undefined;
|
|
1154
1180
|
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
1155
1181
|
height: number;
|
|
1156
|
-
position?: "
|
|
1182
|
+
position?: "none" | "bottom" | "top" | undefined;
|
|
1183
|
+
width?: undefined;
|
|
1157
1184
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
1158
1185
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
1159
1186
|
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
@@ -1196,7 +1223,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1196
1223
|
dataKey?: string | undefined;
|
|
1197
1224
|
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
1198
1225
|
height: number;
|
|
1199
|
-
position?: "
|
|
1226
|
+
position?: "none" | "bottom" | "top" | undefined;
|
|
1227
|
+
width?: undefined;
|
|
1200
1228
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
1201
1229
|
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
1202
1230
|
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
@@ -1243,7 +1271,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1243
1271
|
dataKey?: string | undefined;
|
|
1244
1272
|
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
1245
1273
|
height: number;
|
|
1246
|
-
position?: "
|
|
1274
|
+
position?: "none" | "bottom" | "top" | undefined;
|
|
1275
|
+
width?: undefined;
|
|
1247
1276
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
1248
1277
|
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
1249
1278
|
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
@@ -1290,7 +1319,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1290
1319
|
dataKey?: string | undefined;
|
|
1291
1320
|
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
1292
1321
|
height: number;
|
|
1293
|
-
position?: "
|
|
1322
|
+
position?: "none" | "bottom" | "top" | undefined;
|
|
1323
|
+
width?: undefined;
|
|
1294
1324
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
1295
1325
|
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
1296
1326
|
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
@@ -1337,7 +1367,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1337
1367
|
dataKey?: string | undefined;
|
|
1338
1368
|
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
1339
1369
|
height: number;
|
|
1340
|
-
position?: "
|
|
1370
|
+
position?: "none" | "bottom" | "top" | undefined;
|
|
1371
|
+
width?: undefined;
|
|
1341
1372
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
1342
1373
|
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
1343
1374
|
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
@@ -1384,7 +1415,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1384
1415
|
dataKey?: string | undefined;
|
|
1385
1416
|
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
1386
1417
|
height: number;
|
|
1387
|
-
position?: "
|
|
1418
|
+
position?: "none" | "bottom" | "top" | undefined;
|
|
1419
|
+
width?: undefined;
|
|
1388
1420
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
1389
1421
|
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
1390
1422
|
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
@@ -1431,7 +1463,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1431
1463
|
dataKey?: string | undefined;
|
|
1432
1464
|
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
1433
1465
|
height: number;
|
|
1434
|
-
position?: "
|
|
1466
|
+
position?: "none" | "bottom" | "top" | undefined;
|
|
1467
|
+
width?: undefined;
|
|
1435
1468
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
1436
1469
|
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
1437
1470
|
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
@@ -1478,7 +1511,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1478
1511
|
dataKey?: string | undefined;
|
|
1479
1512
|
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
1480
1513
|
height: number;
|
|
1481
|
-
position?: "
|
|
1514
|
+
position?: "none" | "bottom" | "top" | undefined;
|
|
1515
|
+
width?: undefined;
|
|
1482
1516
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
1483
1517
|
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
1484
1518
|
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
@@ -1525,7 +1559,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1525
1559
|
dataKey?: string | undefined;
|
|
1526
1560
|
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
1527
1561
|
height: number;
|
|
1528
|
-
position?: "
|
|
1562
|
+
position?: "none" | "bottom" | "top" | undefined;
|
|
1563
|
+
width?: undefined;
|
|
1529
1564
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
1530
1565
|
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
1531
1566
|
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
@@ -1572,7 +1607,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1572
1607
|
dataKey?: string | undefined;
|
|
1573
1608
|
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
1574
1609
|
height: number;
|
|
1575
|
-
position?: "
|
|
1610
|
+
position?: "none" | "bottom" | "top" | undefined;
|
|
1611
|
+
width?: undefined;
|
|
1576
1612
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
1577
1613
|
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
1578
1614
|
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
@@ -1619,7 +1655,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1619
1655
|
dataKey?: string | undefined;
|
|
1620
1656
|
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
1621
1657
|
height: number;
|
|
1622
|
-
position?: "
|
|
1658
|
+
position?: "none" | "bottom" | "top" | undefined;
|
|
1659
|
+
width?: undefined;
|
|
1623
1660
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
1624
1661
|
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
1625
1662
|
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
@@ -1664,7 +1701,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1664
1701
|
dataKey?: string | undefined;
|
|
1665
1702
|
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
1666
1703
|
height: number;
|
|
1667
|
-
position?: "
|
|
1704
|
+
position?: "none" | "bottom" | "top" | undefined;
|
|
1705
|
+
width?: undefined;
|
|
1668
1706
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
1669
1707
|
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
1670
1708
|
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
@@ -1709,7 +1747,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1709
1747
|
dataKey?: string | undefined;
|
|
1710
1748
|
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
1711
1749
|
height: number;
|
|
1712
|
-
position?: "
|
|
1750
|
+
position?: "none" | "bottom" | "top" | undefined;
|
|
1751
|
+
width?: undefined;
|
|
1713
1752
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
1714
1753
|
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
1715
1754
|
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
@@ -1754,7 +1793,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1754
1793
|
dataKey?: string | undefined;
|
|
1755
1794
|
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
1756
1795
|
height: number;
|
|
1757
|
-
position?: "
|
|
1796
|
+
position?: "none" | "bottom" | "top" | undefined;
|
|
1797
|
+
width?: undefined;
|
|
1758
1798
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
1759
1799
|
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
1760
1800
|
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
@@ -1799,7 +1839,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1799
1839
|
dataKey?: string | undefined;
|
|
1800
1840
|
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
1801
1841
|
height: number;
|
|
1802
|
-
position?: "
|
|
1842
|
+
position?: "none" | "bottom" | "top" | undefined;
|
|
1843
|
+
width?: undefined;
|
|
1803
1844
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
1804
1845
|
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
1805
1846
|
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
@@ -1844,7 +1885,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1844
1885
|
dataKey?: string | undefined;
|
|
1845
1886
|
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
1846
1887
|
height: number;
|
|
1847
|
-
position?: "
|
|
1888
|
+
position?: "none" | "bottom" | "top" | undefined;
|
|
1889
|
+
width?: undefined;
|
|
1848
1890
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
1849
1891
|
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
1850
1892
|
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
@@ -1889,7 +1931,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1889
1931
|
dataKey?: string | undefined;
|
|
1890
1932
|
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
1891
1933
|
height: number;
|
|
1892
|
-
position?: "
|
|
1934
|
+
position?: "none" | "bottom" | "top" | undefined;
|
|
1935
|
+
width?: undefined;
|
|
1893
1936
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
1894
1937
|
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
1895
1938
|
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
@@ -1934,7 +1977,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1934
1977
|
dataKey?: string | undefined;
|
|
1935
1978
|
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
1936
1979
|
height: number;
|
|
1937
|
-
position?: "
|
|
1980
|
+
position?: "none" | "bottom" | "top" | undefined;
|
|
1981
|
+
width?: undefined;
|
|
1938
1982
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
1939
1983
|
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
1940
1984
|
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
@@ -1979,7 +2023,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1979
2023
|
dataKey?: string | undefined;
|
|
1980
2024
|
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
1981
2025
|
height: number;
|
|
1982
|
-
position?: "
|
|
2026
|
+
position?: "none" | "bottom" | "top" | undefined;
|
|
2027
|
+
width?: undefined;
|
|
1983
2028
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
1984
2029
|
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
1985
2030
|
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
@@ -2024,7 +2069,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
2024
2069
|
dataKey?: string | undefined;
|
|
2025
2070
|
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
2026
2071
|
height: number;
|
|
2027
|
-
position?: "
|
|
2072
|
+
position?: "none" | "bottom" | "top" | undefined;
|
|
2073
|
+
width?: undefined;
|
|
2028
2074
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
2029
2075
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2030
2076
|
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
@@ -2068,7 +2114,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
2068
2114
|
dataKey?: string | undefined;
|
|
2069
2115
|
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
2070
2116
|
height: number;
|
|
2071
|
-
position?: "
|
|
2117
|
+
position?: "none" | "bottom" | "top" | undefined;
|
|
2118
|
+
width?: undefined;
|
|
2072
2119
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
2073
2120
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2074
2121
|
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
@@ -2112,7 +2159,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
2112
2159
|
dataKey?: string | undefined;
|
|
2113
2160
|
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
2114
2161
|
height: number;
|
|
2115
|
-
position?: "
|
|
2162
|
+
position?: "none" | "bottom" | "top" | undefined;
|
|
2163
|
+
width?: undefined;
|
|
2116
2164
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
2117
2165
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2118
2166
|
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
@@ -2156,7 +2204,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
2156
2204
|
dataKey?: string | undefined;
|
|
2157
2205
|
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
2158
2206
|
height: number;
|
|
2159
|
-
position?: "
|
|
2207
|
+
position?: "none" | "bottom" | "top" | undefined;
|
|
2208
|
+
width?: undefined;
|
|
2160
2209
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
2161
2210
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2162
2211
|
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
@@ -2200,7 +2249,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
2200
2249
|
dataKey?: string | undefined;
|
|
2201
2250
|
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
2202
2251
|
height: number;
|
|
2203
|
-
position?: "
|
|
2252
|
+
position?: "none" | "bottom" | "top" | undefined;
|
|
2253
|
+
width?: undefined;
|
|
2204
2254
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
2205
2255
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2206
2256
|
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
@@ -2244,7 +2294,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
2244
2294
|
dataKey?: string | undefined;
|
|
2245
2295
|
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
2246
2296
|
height: number;
|
|
2247
|
-
position?: "
|
|
2297
|
+
position?: "none" | "bottom" | "top" | undefined;
|
|
2298
|
+
width?: undefined;
|
|
2248
2299
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
2249
2300
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2250
2301
|
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
@@ -2288,7 +2339,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
2288
2339
|
dataKey?: string | undefined;
|
|
2289
2340
|
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
2290
2341
|
height: number;
|
|
2291
|
-
position?: "
|
|
2342
|
+
position?: "none" | "bottom" | "top" | undefined;
|
|
2343
|
+
width?: undefined;
|
|
2292
2344
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
2293
2345
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2294
2346
|
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
@@ -2332,7 +2384,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
2332
2384
|
dataKey?: string | undefined;
|
|
2333
2385
|
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
2334
2386
|
height: number;
|
|
2335
|
-
position?: "
|
|
2387
|
+
position?: "none" | "bottom" | "top" | undefined;
|
|
2388
|
+
width?: undefined;
|
|
2336
2389
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
2337
2390
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2338
2391
|
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
@@ -2376,7 +2429,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
2376
2429
|
dataKey?: string | undefined;
|
|
2377
2430
|
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
2378
2431
|
height: number;
|
|
2379
|
-
position?: "
|
|
2432
|
+
position?: "none" | "bottom" | "top" | undefined;
|
|
2433
|
+
width?: undefined;
|
|
2380
2434
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
2381
2435
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2382
2436
|
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
@@ -2420,7 +2474,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
2420
2474
|
dataKey?: string | undefined;
|
|
2421
2475
|
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
2422
2476
|
height: number;
|
|
2423
|
-
position?: "
|
|
2477
|
+
position?: "none" | "bottom" | "top" | undefined;
|
|
2478
|
+
width?: undefined;
|
|
2424
2479
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
2425
2480
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2426
2481
|
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
@@ -2463,7 +2518,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
2463
2518
|
dataKey?: string | undefined;
|
|
2464
2519
|
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
2465
2520
|
height: number;
|
|
2466
|
-
position?: "
|
|
2521
|
+
position?: "none" | "bottom" | "top" | undefined;
|
|
2522
|
+
width?: undefined;
|
|
2467
2523
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
2468
2524
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2469
2525
|
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
@@ -2506,7 +2562,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
2506
2562
|
dataKey?: string | undefined;
|
|
2507
2563
|
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
2508
2564
|
height: number;
|
|
2509
|
-
position?: "
|
|
2565
|
+
position?: "none" | "bottom" | "top" | undefined;
|
|
2566
|
+
width?: undefined;
|
|
2510
2567
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
2511
2568
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2512
2569
|
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
@@ -2549,7 +2606,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
2549
2606
|
dataKey?: string | undefined;
|
|
2550
2607
|
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
2551
2608
|
height: number;
|
|
2552
|
-
position?: "
|
|
2609
|
+
position?: "none" | "bottom" | "top" | undefined;
|
|
2610
|
+
width?: undefined;
|
|
2553
2611
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
2554
2612
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2555
2613
|
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
@@ -2592,7 +2650,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
2592
2650
|
dataKey?: string | undefined;
|
|
2593
2651
|
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
2594
2652
|
height: number;
|
|
2595
|
-
position?: "
|
|
2653
|
+
position?: "none" | "bottom" | "top" | undefined;
|
|
2654
|
+
width?: undefined;
|
|
2596
2655
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
2597
2656
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2598
2657
|
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
@@ -2635,7 +2694,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
2635
2694
|
dataKey?: string | undefined;
|
|
2636
2695
|
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
2637
2696
|
height: number;
|
|
2638
|
-
position?: "
|
|
2697
|
+
position?: "none" | "bottom" | "top" | undefined;
|
|
2698
|
+
width?: undefined;
|
|
2639
2699
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
2640
2700
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2641
2701
|
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
@@ -2678,7 +2738,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
2678
2738
|
dataKey?: string | undefined;
|
|
2679
2739
|
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
2680
2740
|
height: number;
|
|
2681
|
-
position?: "
|
|
2741
|
+
position?: "none" | "bottom" | "top" | undefined;
|
|
2742
|
+
width?: undefined;
|
|
2682
2743
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
2683
2744
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2684
2745
|
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
@@ -2721,7 +2782,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
2721
2782
|
dataKey?: string | undefined;
|
|
2722
2783
|
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
2723
2784
|
height: number;
|
|
2724
|
-
position?: "
|
|
2785
|
+
position?: "none" | "bottom" | "top" | undefined;
|
|
2786
|
+
width?: undefined;
|
|
2725
2787
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
2726
2788
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2727
2789
|
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
@@ -2764,7 +2826,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
2764
2826
|
dataKey?: string | undefined;
|
|
2765
2827
|
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
2766
2828
|
height: number;
|
|
2767
|
-
position?: "
|
|
2829
|
+
position?: "none" | "bottom" | "top" | undefined;
|
|
2830
|
+
width?: undefined;
|
|
2768
2831
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
2769
2832
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2770
2833
|
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
@@ -2807,7 +2870,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
2807
2870
|
dataKey?: string | undefined;
|
|
2808
2871
|
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
2809
2872
|
height: number;
|
|
2810
|
-
position?: "
|
|
2873
|
+
position?: "none" | "bottom" | "top" | undefined;
|
|
2874
|
+
width?: undefined;
|
|
2811
2875
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
2812
2876
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2813
2877
|
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
@@ -2850,7 +2914,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
2850
2914
|
dataKey?: string | undefined;
|
|
2851
2915
|
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
2852
2916
|
height: number;
|
|
2853
|
-
position?: "
|
|
2917
|
+
position?: "none" | "bottom" | "top" | undefined;
|
|
2918
|
+
width?: undefined;
|
|
2854
2919
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
2855
2920
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2856
2921
|
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
@@ -2893,7 +2958,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
2893
2958
|
dataKey?: string | undefined;
|
|
2894
2959
|
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
2895
2960
|
height: number;
|
|
2896
|
-
position?: "
|
|
2961
|
+
position?: "none" | "bottom" | "top" | undefined;
|
|
2962
|
+
width?: undefined;
|
|
2897
2963
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
2898
2964
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2899
2965
|
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
@@ -2936,7 +3002,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
2936
3002
|
dataKey?: string | undefined;
|
|
2937
3003
|
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
2938
3004
|
height: number;
|
|
2939
|
-
position?: "
|
|
3005
|
+
position?: "none" | "bottom" | "top" | undefined;
|
|
3006
|
+
width?: undefined;
|
|
2940
3007
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
2941
3008
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2942
3009
|
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
@@ -2979,7 +3046,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
2979
3046
|
dataKey?: string | undefined;
|
|
2980
3047
|
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
2981
3048
|
height: number;
|
|
2982
|
-
position?: "
|
|
3049
|
+
position?: "none" | "bottom" | "top" | undefined;
|
|
3050
|
+
width?: undefined;
|
|
2983
3051
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
2984
3052
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2985
3053
|
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
@@ -3022,7 +3090,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
3022
3090
|
dataKey?: string | undefined;
|
|
3023
3091
|
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
3024
3092
|
height: number;
|
|
3025
|
-
position?: "
|
|
3093
|
+
position?: "none" | "bottom" | "top" | undefined;
|
|
3094
|
+
width?: undefined;
|
|
3026
3095
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
3027
3096
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
3028
3097
|
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
@@ -3065,7 +3134,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
3065
3134
|
dataKey?: string | undefined;
|
|
3066
3135
|
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
3067
3136
|
height: number;
|
|
3068
|
-
position?: "
|
|
3137
|
+
position?: "none" | "bottom" | "top" | undefined;
|
|
3138
|
+
width?: undefined;
|
|
3069
3139
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
3070
3140
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
3071
3141
|
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
@@ -3108,7 +3178,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
3108
3178
|
dataKey?: string | undefined;
|
|
3109
3179
|
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
3110
3180
|
height: number;
|
|
3111
|
-
position?: "
|
|
3181
|
+
position?: "none" | "bottom" | "top" | undefined;
|
|
3182
|
+
width?: undefined;
|
|
3112
3183
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
3113
3184
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
3114
3185
|
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
@@ -3151,7 +3222,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
3151
3222
|
dataKey?: string | undefined;
|
|
3152
3223
|
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
3153
3224
|
height: number;
|
|
3154
|
-
position?: "
|
|
3225
|
+
position?: "none" | "bottom" | "top" | undefined;
|
|
3226
|
+
width?: undefined;
|
|
3155
3227
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
3156
3228
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
3157
3229
|
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
@@ -3194,7 +3266,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
3194
3266
|
dataKey?: string | undefined;
|
|
3195
3267
|
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
3196
3268
|
height: number;
|
|
3197
|
-
position?: "
|
|
3269
|
+
position?: "none" | "bottom" | "top" | undefined;
|
|
3270
|
+
width?: undefined;
|
|
3198
3271
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
3199
3272
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
3200
3273
|
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
@@ -3237,7 +3310,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
3237
3310
|
dataKey?: string | undefined;
|
|
3238
3311
|
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
3239
3312
|
height: number;
|
|
3240
|
-
position?: "
|
|
3313
|
+
position?: "none" | "bottom" | "top" | undefined;
|
|
3314
|
+
width?: undefined;
|
|
3241
3315
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
3242
3316
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
3243
3317
|
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
@@ -3280,7 +3354,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
3280
3354
|
dataKey?: string | undefined;
|
|
3281
3355
|
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
3282
3356
|
height: number;
|
|
3283
|
-
position?: "
|
|
3357
|
+
position?: "none" | "bottom" | "top" | undefined;
|
|
3358
|
+
width?: undefined;
|
|
3284
3359
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
3285
3360
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
3286
3361
|
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
@@ -3323,7 +3398,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
3323
3398
|
dataKey?: string | undefined;
|
|
3324
3399
|
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
3325
3400
|
height: number;
|
|
3326
|
-
position?: "
|
|
3401
|
+
position?: "none" | "bottom" | "top" | undefined;
|
|
3402
|
+
width?: undefined;
|
|
3327
3403
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
3328
3404
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
3329
3405
|
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
@@ -3366,7 +3442,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
3366
3442
|
dataKey?: string | undefined;
|
|
3367
3443
|
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
3368
3444
|
height: number;
|
|
3369
|
-
position?: "
|
|
3445
|
+
position?: "none" | "bottom" | "top" | undefined;
|
|
3446
|
+
width?: undefined;
|
|
3370
3447
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
3371
3448
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
3372
3449
|
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
@@ -3409,7 +3486,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
3409
3486
|
dataKey?: string | undefined;
|
|
3410
3487
|
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
3411
3488
|
height: number;
|
|
3412
|
-
position?: "
|
|
3489
|
+
position?: "none" | "bottom" | "top" | undefined;
|
|
3490
|
+
width?: undefined;
|
|
3413
3491
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
3414
3492
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
3415
3493
|
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
@@ -3452,7 +3530,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
3452
3530
|
dataKey?: string | undefined;
|
|
3453
3531
|
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
3454
3532
|
height: number;
|
|
3455
|
-
position?: "
|
|
3533
|
+
position?: "none" | "bottom" | "top" | undefined;
|
|
3534
|
+
width?: undefined;
|
|
3456
3535
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
3457
3536
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
3458
3537
|
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
@@ -3495,7 +3574,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
3495
3574
|
dataKey?: string | undefined;
|
|
3496
3575
|
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
3497
3576
|
height: number;
|
|
3498
|
-
position?: "
|
|
3577
|
+
position?: "none" | "bottom" | "top" | undefined;
|
|
3578
|
+
width?: undefined;
|
|
3499
3579
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
3500
3580
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
3501
3581
|
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
@@ -3538,7 +3618,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
3538
3618
|
dataKey?: string | undefined;
|
|
3539
3619
|
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
3540
3620
|
height: number;
|
|
3541
|
-
position?: "
|
|
3621
|
+
position?: "none" | "bottom" | "top" | undefined;
|
|
3622
|
+
width?: undefined;
|
|
3542
3623
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
3543
3624
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
3544
3625
|
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|