@mui/x-charts 9.0.1 → 9.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/BarChart/BarChart.js +27 -9
- package/BarChart/BarChart.mjs +27 -9
- package/BarChart/BarElement.js +1 -5
- package/BarChart/BarElement.mjs +1 -5
- package/BarChart/seriesConfig/bar/getSeriesWithDefaultValues.d.mts +1 -0
- package/BarChart/seriesConfig/bar/getSeriesWithDefaultValues.d.ts +1 -0
- package/BarChart/seriesConfig/bar/seriesProcessor.js +37 -13
- package/BarChart/seriesConfig/bar/seriesProcessor.mjs +37 -13
- package/CHANGELOG.md +121 -0
- package/ChartsContainer/ChartsContainer.js +59 -30
- package/ChartsContainer/ChartsContainer.mjs +59 -30
- package/ChartsDataProvider/useChartsDataProviderProps.js +1 -6
- package/ChartsDataProvider/useChartsDataProviderProps.mjs +1 -6
- package/ChartsGrid/styledComponents.js +2 -2
- package/ChartsGrid/styledComponents.mjs +2 -2
- package/ChartsRadialDataProvider/ChartsRadialDataProvider.d.mts +38 -0
- package/ChartsRadialDataProvider/ChartsRadialDataProvider.d.ts +38 -0
- package/ChartsRadialDataProvider/ChartsRadialDataProvider.js +115 -0
- package/ChartsRadialDataProvider/ChartsRadialDataProvider.mjs +109 -0
- package/ChartsRadialDataProvider/ChartsRadialDataProvider.plugins.d.mts +9 -0
- package/ChartsRadialDataProvider/ChartsRadialDataProvider.plugins.d.ts +9 -0
- package/ChartsRadialDataProvider/ChartsRadialDataProvider.plugins.js +13 -0
- package/ChartsRadialDataProvider/ChartsRadialDataProvider.plugins.mjs +7 -0
- package/ChartsRadialDataProvider/index.d.mts +2 -0
- package/ChartsRadialDataProvider/index.d.ts +2 -0
- package/ChartsRadialDataProvider/index.js +27 -0
- package/ChartsRadialDataProvider/index.mjs +2 -0
- package/ChartsRadialDataProvider/useChartsRadialDataProviderProps.d.mts +13 -0
- package/ChartsRadialDataProvider/useChartsRadialDataProviderProps.d.ts +13 -0
- package/ChartsRadialDataProvider/useChartsRadialDataProviderProps.js +46 -0
- package/ChartsRadialDataProvider/useChartsRadialDataProviderProps.mjs +39 -0
- package/ChartsRadialGrid/ChartsRadialGrid.d.mts +33 -0
- package/ChartsRadialGrid/ChartsRadialGrid.d.ts +33 -0
- package/ChartsRadialGrid/ChartsRadialGrid.js +99 -0
- package/ChartsRadialGrid/ChartsRadialGrid.mjs +94 -0
- package/ChartsRadialGrid/ChartsRadiusGrid.d.mts +13 -0
- package/ChartsRadialGrid/ChartsRadiusGrid.d.ts +13 -0
- package/ChartsRadialGrid/ChartsRadiusGrid.js +73 -0
- package/ChartsRadialGrid/ChartsRadiusGrid.mjs +66 -0
- package/ChartsRadialGrid/ChartsRotationGrid.d.mts +13 -0
- package/ChartsRadialGrid/ChartsRotationGrid.d.ts +13 -0
- package/ChartsRadialGrid/ChartsRotationGrid.js +65 -0
- package/ChartsRadialGrid/ChartsRotationGrid.mjs +58 -0
- package/ChartsRadialGrid/chartsRadialGridClasses.d.mts +13 -0
- package/ChartsRadialGrid/chartsRadialGridClasses.d.ts +13 -0
- package/ChartsRadialGrid/chartsRadialGridClasses.js +14 -0
- package/ChartsRadialGrid/chartsRadialGridClasses.mjs +6 -0
- package/ChartsRadialGrid/index.d.mts +3 -0
- package/ChartsRadialGrid/index.d.ts +3 -0
- package/ChartsRadialGrid/index.js +19 -0
- package/ChartsRadialGrid/index.mjs +2 -0
- package/ChartsRadialGrid/styledComponents.d.mts +4 -0
- package/ChartsRadialGrid/styledComponents.d.ts +4 -0
- package/ChartsRadialGrid/styledComponents.js +50 -0
- package/ChartsRadialGrid/styledComponents.mjs +44 -0
- package/ChartsXAxis/useAxisTicksProps.d.mts +407 -326
- package/ChartsXAxis/useAxisTicksProps.d.ts +407 -326
- package/ChartsYAxis/useAxisTicksProps.d.mts +407 -326
- package/ChartsYAxis/useAxisTicksProps.d.ts +407 -326
- package/LineChart/LineChart.js +27 -9
- package/LineChart/LineChart.mjs +27 -9
- package/LineChart/seriesConfig/seriesProcessor.js +37 -13
- package/LineChart/seriesConfig/seriesProcessor.mjs +37 -13
- package/ScatterChart/Scatter.d.mts +11 -0
- package/ScatterChart/Scatter.d.ts +11 -0
- package/ScatterChart/Scatter.js +11 -0
- package/ScatterChart/Scatter.mjs +14 -0
- package/ScatterChart/ScatterChart.js +29 -10
- package/ScatterChart/ScatterChart.mjs +29 -10
- package/ScatterChart/seriesConfig/seriesProcessor.js +9 -4
- package/ScatterChart/seriesConfig/seriesProcessor.mjs +9 -4
- package/SparkLineChart/SparkLineChart.js +27 -9
- package/SparkLineChart/SparkLineChart.mjs +27 -9
- package/hooks/useTicks.d.mts +1 -1
- package/hooks/useTicks.d.ts +1 -1
- package/hooks/useTicks.js +21 -3
- package/hooks/useTicks.mjs +21 -3
- package/index.d.mts +2 -0
- package/index.d.ts +2 -0
- package/index.js +25 -1
- package/index.mjs +3 -1
- package/internals/material/index.js +6 -1
- package/internals/material/index.mjs +6 -1
- package/internals/plugins/featurePlugins/useChartCartesianAxis/defaultizeAxis.js +8 -12
- package/internals/plugins/featurePlugins/useChartCartesianAxis/defaultizeAxis.mjs +8 -12
- package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisRendering.selectors.d.mts +1 -0
- package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisRendering.selectors.d.ts +1 -0
- package/internals/plugins/featurePlugins/useChartPolarAxis/computeAxisValue.js +7 -4
- package/internals/plugins/featurePlugins/useChartPolarAxis/computeAxisValue.mjs +8 -5
- package/internals/plugins/featurePlugins/useChartPolarAxis/defaultizeAxis.js +3 -3
- package/internals/plugins/featurePlugins/useChartPolarAxis/defaultizeAxis.mjs +3 -3
- package/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.js +3 -3
- package/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.mjs +3 -3
- package/models/axis.d.mts +11 -2
- package/models/axis.d.ts +11 -2
- package/models/seriesType/bar.d.mts +9 -0
- package/models/seriesType/bar.d.ts +9 -0
- package/models/seriesType/line.d.mts +9 -0
- package/models/seriesType/line.d.ts +9 -0
- package/models/seriesType/scatter.d.mts +9 -0
- package/models/seriesType/scatter.d.ts +9 -0
- package/models/slots/chartsBaseSlotProps.d.mts +17 -0
- package/models/slots/chartsBaseSlotProps.d.ts +17 -0
- package/models/slots/chartsBaseSlots.d.mts +7 -1
- package/models/slots/chartsBaseSlots.d.ts +7 -1
- package/models/z-axis.d.mts +9 -0
- package/models/z-axis.d.ts +9 -0
- package/package.json +31 -3
- package/themeAugmentation/components.d.mts +4 -0
- package/themeAugmentation/components.d.ts +4 -0
- package/themeAugmentation/overrides.d.mts +2 -0
- package/themeAugmentation/overrides.d.ts +2 -0
- package/themeAugmentation/props.d.mts +2 -0
- package/themeAugmentation/props.d.ts +2 -0
- package/utils/epsilon.d.mts +1 -0
- package/utils/epsilon.d.ts +1 -0
- package/utils/epsilon.js +7 -0
- package/utils/epsilon.mjs +1 -0
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { type ChartsYAxisProps } from "../models/axis.mjs";
|
|
2
2
|
import { ChartsText, type ChartsTextProps } from "../ChartsText/index.mjs";
|
|
3
3
|
export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
4
|
-
yScale: import("
|
|
4
|
+
yScale: import("@mui/x-charts-vendor/d3-scale").ScaleLinear<number, number, never> | import("@mui/x-charts-vendor/d3-scale").ScaleSymLog<number, number, never> | import("@mui/x-charts-vendor/d3-scale").ScaleLogarithmic<number, number, never> | import("@mui/x-charts-vendor/d3-scale").ScalePower<number, number, never> | import("@mui/x-charts-vendor/d3-scale").ScaleTime<number, number, never> | import("@mui/x-charts-vendor/d3-scale").ScaleBand<{
|
|
5
5
|
toString(): string;
|
|
6
|
-
}> | import("
|
|
6
|
+
}> | import("@mui/x-charts-vendor/d3-scale").ScalePoint<{
|
|
7
7
|
toString(): string;
|
|
8
8
|
}>;
|
|
9
9
|
defaultizedProps: {
|
|
@@ -30,21 +30,22 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
30
30
|
tickLabelPlacement?: "middle" | "tick";
|
|
31
31
|
data?: readonly any[] | undefined;
|
|
32
32
|
dataKey?: string | undefined;
|
|
33
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
33
34
|
id: import("../internals/index.mjs").AxisId;
|
|
34
35
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
35
36
|
position?: "left" | "right" | "none";
|
|
36
37
|
width: number;
|
|
37
38
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
38
39
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
39
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
40
|
-
min: import("
|
|
41
|
-
max: import("
|
|
40
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
41
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
42
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
42
43
|
}) | undefined;
|
|
43
44
|
hideTooltip?: boolean | undefined;
|
|
44
45
|
ignoreTooltip?: boolean | undefined;
|
|
45
46
|
offset: number;
|
|
46
47
|
scaleType: "linear";
|
|
47
|
-
colorScale?: import("
|
|
48
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
48
49
|
triggerTooltip?: boolean;
|
|
49
50
|
} | {
|
|
50
51
|
axis?: "y";
|
|
@@ -70,21 +71,22 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
70
71
|
tickLabelPlacement?: "middle" | "tick";
|
|
71
72
|
data?: readonly any[] | undefined;
|
|
72
73
|
dataKey?: string | undefined;
|
|
74
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
73
75
|
id: import("../internals/index.mjs").AxisId;
|
|
74
76
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
75
77
|
position?: "left" | "right" | "none";
|
|
76
78
|
width: number;
|
|
77
79
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
78
80
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
79
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
80
|
-
min: import("
|
|
81
|
-
max: import("
|
|
81
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
82
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
83
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
82
84
|
}) | undefined;
|
|
83
85
|
hideTooltip?: boolean | undefined;
|
|
84
86
|
ignoreTooltip?: boolean | undefined;
|
|
85
87
|
offset: number;
|
|
86
88
|
scaleType: "linear";
|
|
87
|
-
colorScale?: import("
|
|
89
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
88
90
|
triggerTooltip?: boolean;
|
|
89
91
|
} | {
|
|
90
92
|
axis?: "y";
|
|
@@ -110,21 +112,22 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
110
112
|
tickLabelPlacement?: "middle" | "tick";
|
|
111
113
|
data?: readonly any[] | undefined;
|
|
112
114
|
dataKey?: string | undefined;
|
|
115
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
113
116
|
id: import("../internals/index.mjs").AxisId;
|
|
114
117
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
115
118
|
position?: "left" | "right" | "none";
|
|
116
119
|
width: number;
|
|
117
120
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
118
121
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
119
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
120
|
-
min: import("
|
|
121
|
-
max: import("
|
|
122
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
123
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
124
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
122
125
|
}) | undefined;
|
|
123
126
|
hideTooltip?: boolean | undefined;
|
|
124
127
|
ignoreTooltip?: boolean | undefined;
|
|
125
128
|
offset: number;
|
|
126
129
|
scaleType: "linear";
|
|
127
|
-
colorScale?: import("
|
|
130
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
128
131
|
triggerTooltip?: boolean;
|
|
129
132
|
} | {
|
|
130
133
|
axis?: "y";
|
|
@@ -150,21 +153,22 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
150
153
|
tickLabelPlacement?: "middle" | "tick";
|
|
151
154
|
data?: readonly any[] | undefined;
|
|
152
155
|
dataKey?: string | undefined;
|
|
156
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
153
157
|
id: import("../internals/index.mjs").AxisId;
|
|
154
158
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
155
159
|
position?: "left" | "right" | "none";
|
|
156
160
|
width: number;
|
|
157
161
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
158
162
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
159
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
160
|
-
min: import("
|
|
161
|
-
max: import("
|
|
163
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
164
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
165
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
162
166
|
}) | undefined;
|
|
163
167
|
hideTooltip?: boolean | undefined;
|
|
164
168
|
ignoreTooltip?: boolean | undefined;
|
|
165
169
|
offset: number;
|
|
166
170
|
scaleType: "linear";
|
|
167
|
-
colorScale?: import("
|
|
171
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<string | number | Date, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<number, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
168
172
|
triggerTooltip?: boolean;
|
|
169
173
|
} | {
|
|
170
174
|
axis?: "y";
|
|
@@ -190,21 +194,22 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
190
194
|
tickLabelPlacement?: "middle" | "tick";
|
|
191
195
|
data?: readonly any[] | undefined;
|
|
192
196
|
dataKey?: string | undefined;
|
|
197
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
193
198
|
id: import("../internals/index.mjs").AxisId;
|
|
194
199
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
195
200
|
position?: "left" | "right" | "none";
|
|
196
201
|
width: number;
|
|
197
202
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
198
203
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
199
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
200
|
-
min: import("
|
|
201
|
-
max: import("
|
|
204
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
205
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
206
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
202
207
|
}) | undefined;
|
|
203
208
|
hideTooltip?: boolean | undefined;
|
|
204
209
|
ignoreTooltip?: boolean | undefined;
|
|
205
210
|
offset: number;
|
|
206
211
|
scaleType: "linear";
|
|
207
|
-
colorScale?: import("
|
|
212
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<string | number | Date, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<number, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
208
213
|
triggerTooltip?: boolean;
|
|
209
214
|
} | {
|
|
210
215
|
axis?: "y";
|
|
@@ -230,21 +235,22 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
230
235
|
tickLabelPlacement?: "middle" | "tick";
|
|
231
236
|
data?: readonly any[] | undefined;
|
|
232
237
|
dataKey?: string | undefined;
|
|
238
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
233
239
|
id: import("../internals/index.mjs").AxisId;
|
|
234
240
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
235
241
|
position?: "left" | "right" | "none";
|
|
236
242
|
width: number;
|
|
237
243
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
238
244
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
239
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
240
|
-
min: import("
|
|
241
|
-
max: import("
|
|
245
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
246
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
247
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
242
248
|
}) | undefined;
|
|
243
249
|
hideTooltip?: boolean | undefined;
|
|
244
250
|
ignoreTooltip?: boolean | undefined;
|
|
245
251
|
offset: number;
|
|
246
252
|
scaleType: "linear";
|
|
247
|
-
colorScale?: import("
|
|
253
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
248
254
|
triggerTooltip?: boolean;
|
|
249
255
|
} | {
|
|
250
256
|
axis?: "y";
|
|
@@ -270,21 +276,22 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
270
276
|
tickLabelPlacement?: "middle" | "tick";
|
|
271
277
|
data?: readonly any[] | undefined;
|
|
272
278
|
dataKey?: string | undefined;
|
|
279
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
273
280
|
id: import("../internals/index.mjs").AxisId;
|
|
274
281
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
275
282
|
position?: "left" | "right" | "none";
|
|
276
283
|
width: number;
|
|
277
284
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
278
285
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
279
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
280
|
-
min: import("
|
|
281
|
-
max: import("
|
|
286
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
287
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
288
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
282
289
|
}) | undefined;
|
|
283
290
|
hideTooltip?: boolean | undefined;
|
|
284
291
|
ignoreTooltip?: boolean | undefined;
|
|
285
292
|
offset: number;
|
|
286
293
|
scaleType: "linear";
|
|
287
|
-
colorScale?: import("
|
|
294
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
288
295
|
triggerTooltip?: boolean;
|
|
289
296
|
} | {
|
|
290
297
|
axis?: "y";
|
|
@@ -310,21 +317,22 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
310
317
|
tickLabelPlacement?: "middle" | "tick";
|
|
311
318
|
data?: readonly any[] | undefined;
|
|
312
319
|
dataKey?: string | undefined;
|
|
320
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
313
321
|
id: import("../internals/index.mjs").AxisId;
|
|
314
322
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
315
323
|
position?: "left" | "right" | "none";
|
|
316
324
|
width: number;
|
|
317
325
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
318
326
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
319
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
320
|
-
min: import("
|
|
321
|
-
max: import("
|
|
327
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
328
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
329
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
322
330
|
}) | undefined;
|
|
323
331
|
hideTooltip?: boolean | undefined;
|
|
324
332
|
ignoreTooltip?: boolean | undefined;
|
|
325
333
|
offset: number;
|
|
326
334
|
scaleType: "linear";
|
|
327
|
-
colorScale?: import("
|
|
335
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
328
336
|
triggerTooltip?: boolean;
|
|
329
337
|
} | {
|
|
330
338
|
axis?: "y";
|
|
@@ -350,21 +358,22 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
350
358
|
tickLabelPlacement?: "middle" | "tick";
|
|
351
359
|
data?: readonly any[] | undefined;
|
|
352
360
|
dataKey?: string | undefined;
|
|
361
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
353
362
|
id: import("../internals/index.mjs").AxisId;
|
|
354
363
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
355
364
|
position?: "left" | "right" | "none";
|
|
356
365
|
width: number;
|
|
357
366
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
358
367
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
359
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
360
|
-
min: import("
|
|
361
|
-
max: import("
|
|
368
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
369
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
370
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
362
371
|
}) | undefined;
|
|
363
372
|
hideTooltip?: boolean | undefined;
|
|
364
373
|
ignoreTooltip?: boolean | undefined;
|
|
365
374
|
offset: number;
|
|
366
375
|
scaleType: "linear";
|
|
367
|
-
colorScale?: import("
|
|
376
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
368
377
|
triggerTooltip?: boolean;
|
|
369
378
|
} | {
|
|
370
379
|
axis?: "y";
|
|
@@ -390,21 +399,22 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
390
399
|
tickLabelPlacement?: "middle" | "tick";
|
|
391
400
|
data?: readonly any[] | undefined;
|
|
392
401
|
dataKey?: string | undefined;
|
|
402
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
393
403
|
id: import("../internals/index.mjs").AxisId;
|
|
394
404
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
395
405
|
position?: "left" | "right" | "none";
|
|
396
406
|
width: number;
|
|
397
407
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
398
408
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
399
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
400
|
-
min: import("
|
|
401
|
-
max: import("
|
|
409
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
410
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
411
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
402
412
|
}) | undefined;
|
|
403
413
|
hideTooltip?: boolean | undefined;
|
|
404
414
|
ignoreTooltip?: boolean | undefined;
|
|
405
415
|
offset: number;
|
|
406
416
|
scaleType: "time";
|
|
407
|
-
colorScale?: import("
|
|
417
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
408
418
|
triggerTooltip?: boolean;
|
|
409
419
|
} | {
|
|
410
420
|
axis?: "y";
|
|
@@ -430,21 +440,22 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
430
440
|
tickLabelPlacement?: "middle" | "tick";
|
|
431
441
|
data?: readonly any[] | undefined;
|
|
432
442
|
dataKey?: string | undefined;
|
|
443
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
433
444
|
id: import("../internals/index.mjs").AxisId;
|
|
434
445
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
435
446
|
position?: "left" | "right" | "none";
|
|
436
447
|
width: number;
|
|
437
448
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
438
449
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
439
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
440
|
-
min: import("
|
|
441
|
-
max: import("
|
|
450
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
451
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
452
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
442
453
|
}) | undefined;
|
|
443
454
|
hideTooltip?: boolean | undefined;
|
|
444
455
|
ignoreTooltip?: boolean | undefined;
|
|
445
456
|
offset: number;
|
|
446
457
|
scaleType: "time";
|
|
447
|
-
colorScale?: import("
|
|
458
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
448
459
|
triggerTooltip?: boolean;
|
|
449
460
|
} | {
|
|
450
461
|
axis?: "y";
|
|
@@ -470,21 +481,22 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
470
481
|
tickLabelPlacement?: "middle" | "tick";
|
|
471
482
|
data?: readonly any[] | undefined;
|
|
472
483
|
dataKey?: string | undefined;
|
|
484
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
473
485
|
id: import("../internals/index.mjs").AxisId;
|
|
474
486
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
475
487
|
position?: "left" | "right" | "none";
|
|
476
488
|
width: number;
|
|
477
489
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
478
490
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
479
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
480
|
-
min: import("
|
|
481
|
-
max: import("
|
|
491
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
492
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
493
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
482
494
|
}) | undefined;
|
|
483
495
|
hideTooltip?: boolean | undefined;
|
|
484
496
|
ignoreTooltip?: boolean | undefined;
|
|
485
497
|
offset: number;
|
|
486
498
|
scaleType: "time";
|
|
487
|
-
colorScale?: import("
|
|
499
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
488
500
|
triggerTooltip?: boolean;
|
|
489
501
|
} | {
|
|
490
502
|
axis?: "y";
|
|
@@ -510,21 +522,22 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
510
522
|
tickLabelPlacement?: "middle" | "tick";
|
|
511
523
|
data?: readonly any[] | undefined;
|
|
512
524
|
dataKey?: string | undefined;
|
|
525
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
513
526
|
id: import("../internals/index.mjs").AxisId;
|
|
514
527
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
515
528
|
position?: "left" | "right" | "none";
|
|
516
529
|
width: number;
|
|
517
530
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
518
531
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
519
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
520
|
-
min: import("
|
|
521
|
-
max: import("
|
|
532
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
533
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
534
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
522
535
|
}) | undefined;
|
|
523
536
|
hideTooltip?: boolean | undefined;
|
|
524
537
|
ignoreTooltip?: boolean | undefined;
|
|
525
538
|
offset: number;
|
|
526
539
|
scaleType: "time";
|
|
527
|
-
colorScale?: import("
|
|
540
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<string | number | Date, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<number, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
528
541
|
triggerTooltip?: boolean;
|
|
529
542
|
} | {
|
|
530
543
|
axis?: "y";
|
|
@@ -550,21 +563,22 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
550
563
|
tickLabelPlacement?: "middle" | "tick";
|
|
551
564
|
data?: readonly any[] | undefined;
|
|
552
565
|
dataKey?: string | undefined;
|
|
566
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
553
567
|
id: import("../internals/index.mjs").AxisId;
|
|
554
568
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
555
569
|
position?: "left" | "right" | "none";
|
|
556
570
|
width: number;
|
|
557
571
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
558
572
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
559
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
560
|
-
min: import("
|
|
561
|
-
max: import("
|
|
573
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
574
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
575
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
562
576
|
}) | undefined;
|
|
563
577
|
hideTooltip?: boolean | undefined;
|
|
564
578
|
ignoreTooltip?: boolean | undefined;
|
|
565
579
|
offset: number;
|
|
566
580
|
scaleType: "time";
|
|
567
|
-
colorScale?: import("
|
|
581
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<string | number | Date, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<number, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
568
582
|
triggerTooltip?: boolean;
|
|
569
583
|
} | {
|
|
570
584
|
axis?: "y";
|
|
@@ -590,21 +604,22 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
590
604
|
tickLabelPlacement?: "middle" | "tick";
|
|
591
605
|
data?: readonly any[] | undefined;
|
|
592
606
|
dataKey?: string | undefined;
|
|
607
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
593
608
|
id: import("../internals/index.mjs").AxisId;
|
|
594
609
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
595
610
|
position?: "left" | "right" | "none";
|
|
596
611
|
width: number;
|
|
597
612
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
598
613
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
599
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
600
|
-
min: import("
|
|
601
|
-
max: import("
|
|
614
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
615
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
616
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
602
617
|
}) | undefined;
|
|
603
618
|
hideTooltip?: boolean | undefined;
|
|
604
619
|
ignoreTooltip?: boolean | undefined;
|
|
605
620
|
offset: number;
|
|
606
621
|
scaleType: "time";
|
|
607
|
-
colorScale?: import("
|
|
622
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
608
623
|
triggerTooltip?: boolean;
|
|
609
624
|
} | {
|
|
610
625
|
axis?: "y";
|
|
@@ -630,21 +645,22 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
630
645
|
tickLabelPlacement?: "middle" | "tick";
|
|
631
646
|
data?: readonly any[] | undefined;
|
|
632
647
|
dataKey?: string | undefined;
|
|
648
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
633
649
|
id: import("../internals/index.mjs").AxisId;
|
|
634
650
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
635
651
|
position?: "left" | "right" | "none";
|
|
636
652
|
width: number;
|
|
637
653
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
638
654
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
639
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
640
|
-
min: import("
|
|
641
|
-
max: import("
|
|
655
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
656
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
657
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
642
658
|
}) | undefined;
|
|
643
659
|
hideTooltip?: boolean | undefined;
|
|
644
660
|
ignoreTooltip?: boolean | undefined;
|
|
645
661
|
offset: number;
|
|
646
662
|
scaleType: "time";
|
|
647
|
-
colorScale?: import("
|
|
663
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
648
664
|
triggerTooltip?: boolean;
|
|
649
665
|
} | {
|
|
650
666
|
axis?: "y";
|
|
@@ -670,21 +686,22 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
670
686
|
tickLabelPlacement?: "middle" | "tick";
|
|
671
687
|
data?: readonly any[] | undefined;
|
|
672
688
|
dataKey?: string | undefined;
|
|
689
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
673
690
|
id: import("../internals/index.mjs").AxisId;
|
|
674
691
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
675
692
|
position?: "left" | "right" | "none";
|
|
676
693
|
width: number;
|
|
677
694
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
678
695
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
679
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
680
|
-
min: import("
|
|
681
|
-
max: import("
|
|
696
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
697
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
698
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
682
699
|
}) | undefined;
|
|
683
700
|
hideTooltip?: boolean | undefined;
|
|
684
701
|
ignoreTooltip?: boolean | undefined;
|
|
685
702
|
offset: number;
|
|
686
703
|
scaleType: "time";
|
|
687
|
-
colorScale?: import("
|
|
704
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
688
705
|
triggerTooltip?: boolean;
|
|
689
706
|
} | {
|
|
690
707
|
axis?: "y";
|
|
@@ -710,21 +727,22 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
710
727
|
tickLabelPlacement?: "middle" | "tick";
|
|
711
728
|
data?: readonly any[] | undefined;
|
|
712
729
|
dataKey?: string | undefined;
|
|
730
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
713
731
|
id: import("../internals/index.mjs").AxisId;
|
|
714
732
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
715
733
|
position?: "left" | "right" | "none";
|
|
716
734
|
width: number;
|
|
717
735
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
718
736
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
719
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
720
|
-
min: import("
|
|
721
|
-
max: import("
|
|
737
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
738
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
739
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
722
740
|
}) | undefined;
|
|
723
741
|
hideTooltip?: boolean | undefined;
|
|
724
742
|
ignoreTooltip?: boolean | undefined;
|
|
725
743
|
offset: number;
|
|
726
744
|
scaleType: "time";
|
|
727
|
-
colorScale?: import("
|
|
745
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
728
746
|
triggerTooltip?: boolean;
|
|
729
747
|
} | {
|
|
730
748
|
axis?: "y";
|
|
@@ -750,21 +768,22 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
750
768
|
tickLabelPlacement?: "middle" | "tick";
|
|
751
769
|
data?: readonly any[] | undefined;
|
|
752
770
|
dataKey?: string | undefined;
|
|
771
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
753
772
|
id: import("../internals/index.mjs").AxisId;
|
|
754
773
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
755
774
|
position?: "left" | "right" | "none";
|
|
756
775
|
width: number;
|
|
757
776
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
758
777
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
759
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
760
|
-
min: import("
|
|
761
|
-
max: import("
|
|
778
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
779
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
780
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
762
781
|
}) | undefined;
|
|
763
782
|
hideTooltip?: boolean | undefined;
|
|
764
783
|
ignoreTooltip?: boolean | undefined;
|
|
765
784
|
offset: number;
|
|
766
785
|
scaleType: "log";
|
|
767
|
-
colorScale?: import("
|
|
786
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
768
787
|
triggerTooltip?: boolean;
|
|
769
788
|
} | {
|
|
770
789
|
axis?: "y";
|
|
@@ -790,21 +809,22 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
790
809
|
tickLabelPlacement?: "middle" | "tick";
|
|
791
810
|
data?: readonly any[] | undefined;
|
|
792
811
|
dataKey?: string | undefined;
|
|
812
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
793
813
|
id: import("../internals/index.mjs").AxisId;
|
|
794
814
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
795
815
|
position?: "left" | "right" | "none";
|
|
796
816
|
width: number;
|
|
797
817
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
798
818
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
799
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
800
|
-
min: import("
|
|
801
|
-
max: import("
|
|
819
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
820
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
821
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
802
822
|
}) | undefined;
|
|
803
823
|
hideTooltip?: boolean | undefined;
|
|
804
824
|
ignoreTooltip?: boolean | undefined;
|
|
805
825
|
offset: number;
|
|
806
826
|
scaleType: "log";
|
|
807
|
-
colorScale?: import("
|
|
827
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
808
828
|
triggerTooltip?: boolean;
|
|
809
829
|
} | {
|
|
810
830
|
axis?: "y";
|
|
@@ -830,21 +850,22 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
830
850
|
tickLabelPlacement?: "middle" | "tick";
|
|
831
851
|
data?: readonly any[] | undefined;
|
|
832
852
|
dataKey?: string | undefined;
|
|
853
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
833
854
|
id: import("../internals/index.mjs").AxisId;
|
|
834
855
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
835
856
|
position?: "left" | "right" | "none";
|
|
836
857
|
width: number;
|
|
837
858
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
838
859
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
839
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
840
|
-
min: import("
|
|
841
|
-
max: import("
|
|
860
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
861
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
862
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
842
863
|
}) | undefined;
|
|
843
864
|
hideTooltip?: boolean | undefined;
|
|
844
865
|
ignoreTooltip?: boolean | undefined;
|
|
845
866
|
offset: number;
|
|
846
867
|
scaleType: "log";
|
|
847
|
-
colorScale?: import("
|
|
868
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
848
869
|
triggerTooltip?: boolean;
|
|
849
870
|
} | {
|
|
850
871
|
axis?: "y";
|
|
@@ -870,21 +891,22 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
870
891
|
tickLabelPlacement?: "middle" | "tick";
|
|
871
892
|
data?: readonly any[] | undefined;
|
|
872
893
|
dataKey?: string | undefined;
|
|
894
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
873
895
|
id: import("../internals/index.mjs").AxisId;
|
|
874
896
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
875
897
|
position?: "left" | "right" | "none";
|
|
876
898
|
width: number;
|
|
877
899
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
878
900
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
879
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
880
|
-
min: import("
|
|
881
|
-
max: import("
|
|
901
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
902
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
903
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
882
904
|
}) | undefined;
|
|
883
905
|
hideTooltip?: boolean | undefined;
|
|
884
906
|
ignoreTooltip?: boolean | undefined;
|
|
885
907
|
offset: number;
|
|
886
908
|
scaleType: "log";
|
|
887
|
-
colorScale?: import("
|
|
909
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<string | number | Date, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<number, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
888
910
|
triggerTooltip?: boolean;
|
|
889
911
|
} | {
|
|
890
912
|
axis?: "y";
|
|
@@ -910,21 +932,22 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
910
932
|
tickLabelPlacement?: "middle" | "tick";
|
|
911
933
|
data?: readonly any[] | undefined;
|
|
912
934
|
dataKey?: string | undefined;
|
|
935
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
913
936
|
id: import("../internals/index.mjs").AxisId;
|
|
914
937
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
915
938
|
position?: "left" | "right" | "none";
|
|
916
939
|
width: number;
|
|
917
940
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
918
941
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
919
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
920
|
-
min: import("
|
|
921
|
-
max: import("
|
|
942
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
943
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
944
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
922
945
|
}) | undefined;
|
|
923
946
|
hideTooltip?: boolean | undefined;
|
|
924
947
|
ignoreTooltip?: boolean | undefined;
|
|
925
948
|
offset: number;
|
|
926
949
|
scaleType: "log";
|
|
927
|
-
colorScale?: import("
|
|
950
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<string | number | Date, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<number, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
928
951
|
triggerTooltip?: boolean;
|
|
929
952
|
} | {
|
|
930
953
|
axis?: "y";
|
|
@@ -950,21 +973,22 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
950
973
|
tickLabelPlacement?: "middle" | "tick";
|
|
951
974
|
data?: readonly any[] | undefined;
|
|
952
975
|
dataKey?: string | undefined;
|
|
976
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
953
977
|
id: import("../internals/index.mjs").AxisId;
|
|
954
978
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
955
979
|
position?: "left" | "right" | "none";
|
|
956
980
|
width: number;
|
|
957
981
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
958
982
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
959
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
960
|
-
min: import("
|
|
961
|
-
max: import("
|
|
983
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
984
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
985
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
962
986
|
}) | undefined;
|
|
963
987
|
hideTooltip?: boolean | undefined;
|
|
964
988
|
ignoreTooltip?: boolean | undefined;
|
|
965
989
|
offset: number;
|
|
966
990
|
scaleType: "log";
|
|
967
|
-
colorScale?: import("
|
|
991
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
968
992
|
triggerTooltip?: boolean;
|
|
969
993
|
} | {
|
|
970
994
|
axis?: "y";
|
|
@@ -990,21 +1014,22 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
990
1014
|
tickLabelPlacement?: "middle" | "tick";
|
|
991
1015
|
data?: readonly any[] | undefined;
|
|
992
1016
|
dataKey?: string | undefined;
|
|
1017
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
993
1018
|
id: import("../internals/index.mjs").AxisId;
|
|
994
1019
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
995
1020
|
position?: "left" | "right" | "none";
|
|
996
1021
|
width: number;
|
|
997
1022
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
998
1023
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
999
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
1000
|
-
min: import("
|
|
1001
|
-
max: import("
|
|
1024
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
1025
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1026
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1002
1027
|
}) | undefined;
|
|
1003
1028
|
hideTooltip?: boolean | undefined;
|
|
1004
1029
|
ignoreTooltip?: boolean | undefined;
|
|
1005
1030
|
offset: number;
|
|
1006
1031
|
scaleType: "log";
|
|
1007
|
-
colorScale?: import("
|
|
1032
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
1008
1033
|
triggerTooltip?: boolean;
|
|
1009
1034
|
} | {
|
|
1010
1035
|
axis?: "y";
|
|
@@ -1030,21 +1055,22 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1030
1055
|
tickLabelPlacement?: "middle" | "tick";
|
|
1031
1056
|
data?: readonly any[] | undefined;
|
|
1032
1057
|
dataKey?: string | undefined;
|
|
1058
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
1033
1059
|
id: import("../internals/index.mjs").AxisId;
|
|
1034
1060
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1035
1061
|
position?: "left" | "right" | "none";
|
|
1036
1062
|
width: number;
|
|
1037
1063
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
1038
1064
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
1039
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
1040
|
-
min: import("
|
|
1041
|
-
max: import("
|
|
1065
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
1066
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1067
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1042
1068
|
}) | undefined;
|
|
1043
1069
|
hideTooltip?: boolean | undefined;
|
|
1044
1070
|
ignoreTooltip?: boolean | undefined;
|
|
1045
1071
|
offset: number;
|
|
1046
1072
|
scaleType: "log";
|
|
1047
|
-
colorScale?: import("
|
|
1073
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
1048
1074
|
triggerTooltip?: boolean;
|
|
1049
1075
|
} | {
|
|
1050
1076
|
axis?: "y";
|
|
@@ -1070,21 +1096,22 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1070
1096
|
tickLabelPlacement?: "middle" | "tick";
|
|
1071
1097
|
data?: readonly any[] | undefined;
|
|
1072
1098
|
dataKey?: string | undefined;
|
|
1099
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
1073
1100
|
id: import("../internals/index.mjs").AxisId;
|
|
1074
1101
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1075
1102
|
position?: "left" | "right" | "none";
|
|
1076
1103
|
width: number;
|
|
1077
1104
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
1078
1105
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
1079
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
1080
|
-
min: import("
|
|
1081
|
-
max: import("
|
|
1106
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
1107
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1108
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1082
1109
|
}) | undefined;
|
|
1083
1110
|
hideTooltip?: boolean | undefined;
|
|
1084
1111
|
ignoreTooltip?: boolean | undefined;
|
|
1085
1112
|
offset: number;
|
|
1086
1113
|
scaleType: "log";
|
|
1087
|
-
colorScale?: import("
|
|
1114
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
1088
1115
|
triggerTooltip?: boolean;
|
|
1089
1116
|
} | {
|
|
1090
1117
|
axis?: "y";
|
|
@@ -1110,15 +1137,16 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1110
1137
|
tickLabelPlacement?: "middle" | "tick";
|
|
1111
1138
|
data?: readonly any[] | undefined;
|
|
1112
1139
|
dataKey?: string | undefined;
|
|
1140
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
1113
1141
|
id: import("../internals/index.mjs").AxisId;
|
|
1114
1142
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1115
1143
|
position?: "left" | "right" | "none";
|
|
1116
1144
|
width: number;
|
|
1117
1145
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
1118
1146
|
colorMap?: import("../models/colorMapping.mjs").OrdinalColorConfig | import("../models/colorMapping.mjs").ContinuousColorConfig | import("../models/colorMapping.mjs").PiecewiseColorConfig;
|
|
1119
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
1120
|
-
min: import("
|
|
1121
|
-
max: import("
|
|
1147
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
1148
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1149
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1122
1150
|
}) | undefined;
|
|
1123
1151
|
hideTooltip?: boolean | undefined;
|
|
1124
1152
|
ignoreTooltip?: boolean | undefined;
|
|
@@ -1128,7 +1156,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1128
1156
|
categoryGapRatio: number;
|
|
1129
1157
|
barGapRatio: number;
|
|
1130
1158
|
groups?: import("../internals/index.mjs").AxisGroup[];
|
|
1131
|
-
colorScale?: import("
|
|
1159
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
1132
1160
|
triggerTooltip?: boolean;
|
|
1133
1161
|
} | {
|
|
1134
1162
|
axis?: "y";
|
|
@@ -1154,15 +1182,16 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1154
1182
|
tickLabelPlacement?: "middle" | "tick";
|
|
1155
1183
|
data?: readonly any[] | undefined;
|
|
1156
1184
|
dataKey?: string | undefined;
|
|
1185
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
1157
1186
|
id: import("../internals/index.mjs").AxisId;
|
|
1158
1187
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1159
1188
|
position?: "left" | "right" | "none";
|
|
1160
1189
|
width: number;
|
|
1161
1190
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
1162
1191
|
colorMap?: import("../models/colorMapping.mjs").OrdinalColorConfig | import("../models/colorMapping.mjs").ContinuousColorConfig | import("../models/colorMapping.mjs").PiecewiseColorConfig;
|
|
1163
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
1164
|
-
min: import("
|
|
1165
|
-
max: import("
|
|
1192
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
1193
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1194
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1166
1195
|
}) | undefined;
|
|
1167
1196
|
hideTooltip?: boolean | undefined;
|
|
1168
1197
|
ignoreTooltip?: boolean | undefined;
|
|
@@ -1172,7 +1201,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1172
1201
|
categoryGapRatio: number;
|
|
1173
1202
|
barGapRatio: number;
|
|
1174
1203
|
groups?: import("../internals/index.mjs").AxisGroup[];
|
|
1175
|
-
colorScale?: import("
|
|
1204
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
1176
1205
|
triggerTooltip?: boolean;
|
|
1177
1206
|
} | {
|
|
1178
1207
|
axis?: "y";
|
|
@@ -1198,15 +1227,16 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1198
1227
|
tickLabelPlacement?: "middle" | "tick";
|
|
1199
1228
|
data?: readonly any[] | undefined;
|
|
1200
1229
|
dataKey?: string | undefined;
|
|
1230
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
1201
1231
|
id: import("../internals/index.mjs").AxisId;
|
|
1202
1232
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1203
1233
|
position?: "left" | "right" | "none";
|
|
1204
1234
|
width: number;
|
|
1205
1235
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
1206
1236
|
colorMap?: import("../models/colorMapping.mjs").OrdinalColorConfig | import("../models/colorMapping.mjs").ContinuousColorConfig | import("../models/colorMapping.mjs").PiecewiseColorConfig;
|
|
1207
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
1208
|
-
min: import("
|
|
1209
|
-
max: import("
|
|
1237
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
1238
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1239
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1210
1240
|
}) | undefined;
|
|
1211
1241
|
hideTooltip?: boolean | undefined;
|
|
1212
1242
|
ignoreTooltip?: boolean | undefined;
|
|
@@ -1216,7 +1246,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1216
1246
|
categoryGapRatio: number;
|
|
1217
1247
|
barGapRatio: number;
|
|
1218
1248
|
groups?: import("../internals/index.mjs").AxisGroup[];
|
|
1219
|
-
colorScale?: import("
|
|
1249
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
1220
1250
|
triggerTooltip?: boolean;
|
|
1221
1251
|
} | {
|
|
1222
1252
|
axis?: "y";
|
|
@@ -1242,15 +1272,16 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1242
1272
|
tickLabelPlacement?: "middle" | "tick";
|
|
1243
1273
|
data?: readonly any[] | undefined;
|
|
1244
1274
|
dataKey?: string | undefined;
|
|
1275
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
1245
1276
|
id: import("../internals/index.mjs").AxisId;
|
|
1246
1277
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1247
1278
|
position?: "left" | "right" | "none";
|
|
1248
1279
|
width: number;
|
|
1249
1280
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
1250
1281
|
colorMap?: import("../models/colorMapping.mjs").OrdinalColorConfig | import("../models/colorMapping.mjs").ContinuousColorConfig | import("../models/colorMapping.mjs").PiecewiseColorConfig;
|
|
1251
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
1252
|
-
min: import("
|
|
1253
|
-
max: import("
|
|
1282
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
1283
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1284
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1254
1285
|
}) | undefined;
|
|
1255
1286
|
hideTooltip?: boolean | undefined;
|
|
1256
1287
|
ignoreTooltip?: boolean | undefined;
|
|
@@ -1260,7 +1291,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1260
1291
|
categoryGapRatio: number;
|
|
1261
1292
|
barGapRatio: number;
|
|
1262
1293
|
groups?: import("../internals/index.mjs").AxisGroup[];
|
|
1263
|
-
colorScale?: import("
|
|
1294
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<string | number | Date, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<number, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
1264
1295
|
triggerTooltip?: boolean;
|
|
1265
1296
|
} | {
|
|
1266
1297
|
axis?: "y";
|
|
@@ -1286,15 +1317,16 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1286
1317
|
tickLabelPlacement?: "middle" | "tick";
|
|
1287
1318
|
data?: readonly any[] | undefined;
|
|
1288
1319
|
dataKey?: string | undefined;
|
|
1320
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
1289
1321
|
id: import("../internals/index.mjs").AxisId;
|
|
1290
1322
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1291
1323
|
position?: "left" | "right" | "none";
|
|
1292
1324
|
width: number;
|
|
1293
1325
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
1294
1326
|
colorMap?: import("../models/colorMapping.mjs").OrdinalColorConfig | import("../models/colorMapping.mjs").ContinuousColorConfig | import("../models/colorMapping.mjs").PiecewiseColorConfig;
|
|
1295
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
1296
|
-
min: import("
|
|
1297
|
-
max: import("
|
|
1327
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
1328
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1329
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1298
1330
|
}) | undefined;
|
|
1299
1331
|
hideTooltip?: boolean | undefined;
|
|
1300
1332
|
ignoreTooltip?: boolean | undefined;
|
|
@@ -1304,7 +1336,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1304
1336
|
categoryGapRatio: number;
|
|
1305
1337
|
barGapRatio: number;
|
|
1306
1338
|
groups?: import("../internals/index.mjs").AxisGroup[];
|
|
1307
|
-
colorScale?: import("
|
|
1339
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<string | number | Date, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<number, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
1308
1340
|
triggerTooltip?: boolean;
|
|
1309
1341
|
} | {
|
|
1310
1342
|
axis?: "y";
|
|
@@ -1330,15 +1362,16 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1330
1362
|
tickLabelPlacement?: "middle" | "tick";
|
|
1331
1363
|
data?: readonly any[] | undefined;
|
|
1332
1364
|
dataKey?: string | undefined;
|
|
1365
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
1333
1366
|
id: import("../internals/index.mjs").AxisId;
|
|
1334
1367
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1335
1368
|
position?: "left" | "right" | "none";
|
|
1336
1369
|
width: number;
|
|
1337
1370
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
1338
1371
|
colorMap?: import("../models/colorMapping.mjs").OrdinalColorConfig | import("../models/colorMapping.mjs").ContinuousColorConfig | import("../models/colorMapping.mjs").PiecewiseColorConfig;
|
|
1339
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
1340
|
-
min: import("
|
|
1341
|
-
max: import("
|
|
1372
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
1373
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1374
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1342
1375
|
}) | undefined;
|
|
1343
1376
|
hideTooltip?: boolean | undefined;
|
|
1344
1377
|
ignoreTooltip?: boolean | undefined;
|
|
@@ -1348,7 +1381,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1348
1381
|
categoryGapRatio: number;
|
|
1349
1382
|
barGapRatio: number;
|
|
1350
1383
|
groups?: import("../internals/index.mjs").AxisGroup[];
|
|
1351
|
-
colorScale?: import("
|
|
1384
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
1352
1385
|
triggerTooltip?: boolean;
|
|
1353
1386
|
} | {
|
|
1354
1387
|
axis?: "y";
|
|
@@ -1374,15 +1407,16 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1374
1407
|
tickLabelPlacement?: "middle" | "tick";
|
|
1375
1408
|
data?: readonly any[] | undefined;
|
|
1376
1409
|
dataKey?: string | undefined;
|
|
1410
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
1377
1411
|
id: import("../internals/index.mjs").AxisId;
|
|
1378
1412
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1379
1413
|
position?: "left" | "right" | "none";
|
|
1380
1414
|
width: number;
|
|
1381
1415
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
1382
1416
|
colorMap?: import("../models/colorMapping.mjs").OrdinalColorConfig | import("../models/colorMapping.mjs").ContinuousColorConfig | import("../models/colorMapping.mjs").PiecewiseColorConfig;
|
|
1383
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
1384
|
-
min: import("
|
|
1385
|
-
max: import("
|
|
1417
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
1418
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1419
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1386
1420
|
}) | undefined;
|
|
1387
1421
|
hideTooltip?: boolean | undefined;
|
|
1388
1422
|
ignoreTooltip?: boolean | undefined;
|
|
@@ -1392,7 +1426,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1392
1426
|
categoryGapRatio: number;
|
|
1393
1427
|
barGapRatio: number;
|
|
1394
1428
|
groups?: import("../internals/index.mjs").AxisGroup[];
|
|
1395
|
-
colorScale?: import("
|
|
1429
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
1396
1430
|
triggerTooltip?: boolean;
|
|
1397
1431
|
} | {
|
|
1398
1432
|
axis?: "y";
|
|
@@ -1418,15 +1452,16 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1418
1452
|
tickLabelPlacement?: "middle" | "tick";
|
|
1419
1453
|
data?: readonly any[] | undefined;
|
|
1420
1454
|
dataKey?: string | undefined;
|
|
1455
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
1421
1456
|
id: import("../internals/index.mjs").AxisId;
|
|
1422
1457
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1423
1458
|
position?: "left" | "right" | "none";
|
|
1424
1459
|
width: number;
|
|
1425
1460
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
1426
1461
|
colorMap?: import("../models/colorMapping.mjs").OrdinalColorConfig | import("../models/colorMapping.mjs").ContinuousColorConfig | import("../models/colorMapping.mjs").PiecewiseColorConfig;
|
|
1427
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
1428
|
-
min: import("
|
|
1429
|
-
max: import("
|
|
1462
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
1463
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1464
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1430
1465
|
}) | undefined;
|
|
1431
1466
|
hideTooltip?: boolean | undefined;
|
|
1432
1467
|
ignoreTooltip?: boolean | undefined;
|
|
@@ -1436,7 +1471,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1436
1471
|
categoryGapRatio: number;
|
|
1437
1472
|
barGapRatio: number;
|
|
1438
1473
|
groups?: import("../internals/index.mjs").AxisGroup[];
|
|
1439
|
-
colorScale?: import("
|
|
1474
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
1440
1475
|
triggerTooltip?: boolean;
|
|
1441
1476
|
} | {
|
|
1442
1477
|
axis?: "y";
|
|
@@ -1462,15 +1497,16 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1462
1497
|
tickLabelPlacement?: "middle" | "tick";
|
|
1463
1498
|
data?: readonly any[] | undefined;
|
|
1464
1499
|
dataKey?: string | undefined;
|
|
1500
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
1465
1501
|
id: import("../internals/index.mjs").AxisId;
|
|
1466
1502
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1467
1503
|
position?: "left" | "right" | "none";
|
|
1468
1504
|
width: number;
|
|
1469
1505
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
1470
1506
|
colorMap?: import("../models/colorMapping.mjs").OrdinalColorConfig | import("../models/colorMapping.mjs").ContinuousColorConfig | import("../models/colorMapping.mjs").PiecewiseColorConfig;
|
|
1471
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
1472
|
-
min: import("
|
|
1473
|
-
max: import("
|
|
1507
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
1508
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1509
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1474
1510
|
}) | undefined;
|
|
1475
1511
|
hideTooltip?: boolean | undefined;
|
|
1476
1512
|
ignoreTooltip?: boolean | undefined;
|
|
@@ -1480,7 +1516,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1480
1516
|
categoryGapRatio: number;
|
|
1481
1517
|
barGapRatio: number;
|
|
1482
1518
|
groups?: import("../internals/index.mjs").AxisGroup[];
|
|
1483
|
-
colorScale?: import("
|
|
1519
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
1484
1520
|
triggerTooltip?: boolean;
|
|
1485
1521
|
} | {
|
|
1486
1522
|
axis?: "y";
|
|
@@ -1506,15 +1542,16 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1506
1542
|
tickLabelPlacement?: "middle" | "tick";
|
|
1507
1543
|
data?: readonly any[] | undefined;
|
|
1508
1544
|
dataKey?: string | undefined;
|
|
1545
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
1509
1546
|
id: import("../internals/index.mjs").AxisId;
|
|
1510
1547
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1511
1548
|
position?: "left" | "right" | "none";
|
|
1512
1549
|
width: number;
|
|
1513
1550
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
1514
1551
|
colorMap?: import("../models/colorMapping.mjs").OrdinalColorConfig | import("../models/colorMapping.mjs").ContinuousColorConfig | import("../models/colorMapping.mjs").PiecewiseColorConfig;
|
|
1515
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
1516
|
-
min: import("
|
|
1517
|
-
max: import("
|
|
1552
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
1553
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1554
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1518
1555
|
}) | undefined;
|
|
1519
1556
|
hideTooltip?: boolean | undefined;
|
|
1520
1557
|
ignoreTooltip?: boolean | undefined;
|
|
@@ -1522,7 +1559,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1522
1559
|
scaleType: "point";
|
|
1523
1560
|
ordinalTimeTicks?: import("../index.mjs").OrdinalTimeTicks;
|
|
1524
1561
|
groups?: import("../internals/index.mjs").AxisGroup[];
|
|
1525
|
-
colorScale?: import("
|
|
1562
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
1526
1563
|
triggerTooltip?: boolean;
|
|
1527
1564
|
} | {
|
|
1528
1565
|
axis?: "y";
|
|
@@ -1548,15 +1585,16 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1548
1585
|
tickLabelPlacement?: "middle" | "tick";
|
|
1549
1586
|
data?: readonly any[] | undefined;
|
|
1550
1587
|
dataKey?: string | undefined;
|
|
1588
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
1551
1589
|
id: import("../internals/index.mjs").AxisId;
|
|
1552
1590
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1553
1591
|
position?: "left" | "right" | "none";
|
|
1554
1592
|
width: number;
|
|
1555
1593
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
1556
1594
|
colorMap?: import("../models/colorMapping.mjs").OrdinalColorConfig | import("../models/colorMapping.mjs").ContinuousColorConfig | import("../models/colorMapping.mjs").PiecewiseColorConfig;
|
|
1557
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
1558
|
-
min: import("
|
|
1559
|
-
max: import("
|
|
1595
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
1596
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1597
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1560
1598
|
}) | undefined;
|
|
1561
1599
|
hideTooltip?: boolean | undefined;
|
|
1562
1600
|
ignoreTooltip?: boolean | undefined;
|
|
@@ -1564,7 +1602,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1564
1602
|
scaleType: "point";
|
|
1565
1603
|
ordinalTimeTicks?: import("../index.mjs").OrdinalTimeTicks;
|
|
1566
1604
|
groups?: import("../internals/index.mjs").AxisGroup[];
|
|
1567
|
-
colorScale?: import("
|
|
1605
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
1568
1606
|
triggerTooltip?: boolean;
|
|
1569
1607
|
} | {
|
|
1570
1608
|
axis?: "y";
|
|
@@ -1590,15 +1628,16 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1590
1628
|
tickLabelPlacement?: "middle" | "tick";
|
|
1591
1629
|
data?: readonly any[] | undefined;
|
|
1592
1630
|
dataKey?: string | undefined;
|
|
1631
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
1593
1632
|
id: import("../internals/index.mjs").AxisId;
|
|
1594
1633
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1595
1634
|
position?: "left" | "right" | "none";
|
|
1596
1635
|
width: number;
|
|
1597
1636
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
1598
1637
|
colorMap?: import("../models/colorMapping.mjs").OrdinalColorConfig | import("../models/colorMapping.mjs").ContinuousColorConfig | import("../models/colorMapping.mjs").PiecewiseColorConfig;
|
|
1599
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
1600
|
-
min: import("
|
|
1601
|
-
max: import("
|
|
1638
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
1639
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1640
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1602
1641
|
}) | undefined;
|
|
1603
1642
|
hideTooltip?: boolean | undefined;
|
|
1604
1643
|
ignoreTooltip?: boolean | undefined;
|
|
@@ -1606,7 +1645,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1606
1645
|
scaleType: "point";
|
|
1607
1646
|
ordinalTimeTicks?: import("../index.mjs").OrdinalTimeTicks;
|
|
1608
1647
|
groups?: import("../internals/index.mjs").AxisGroup[];
|
|
1609
|
-
colorScale?: import("
|
|
1648
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
1610
1649
|
triggerTooltip?: boolean;
|
|
1611
1650
|
} | {
|
|
1612
1651
|
axis?: "y";
|
|
@@ -1632,15 +1671,16 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1632
1671
|
tickLabelPlacement?: "middle" | "tick";
|
|
1633
1672
|
data?: readonly any[] | undefined;
|
|
1634
1673
|
dataKey?: string | undefined;
|
|
1674
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
1635
1675
|
id: import("../internals/index.mjs").AxisId;
|
|
1636
1676
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1637
1677
|
position?: "left" | "right" | "none";
|
|
1638
1678
|
width: number;
|
|
1639
1679
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
1640
1680
|
colorMap?: import("../models/colorMapping.mjs").OrdinalColorConfig | import("../models/colorMapping.mjs").ContinuousColorConfig | import("../models/colorMapping.mjs").PiecewiseColorConfig;
|
|
1641
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
1642
|
-
min: import("
|
|
1643
|
-
max: import("
|
|
1681
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
1682
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1683
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1644
1684
|
}) | undefined;
|
|
1645
1685
|
hideTooltip?: boolean | undefined;
|
|
1646
1686
|
ignoreTooltip?: boolean | undefined;
|
|
@@ -1648,7 +1688,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1648
1688
|
scaleType: "point";
|
|
1649
1689
|
ordinalTimeTicks?: import("../index.mjs").OrdinalTimeTicks;
|
|
1650
1690
|
groups?: import("../internals/index.mjs").AxisGroup[];
|
|
1651
|
-
colorScale?: import("
|
|
1691
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<string | number | Date, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<number, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
1652
1692
|
triggerTooltip?: boolean;
|
|
1653
1693
|
} | {
|
|
1654
1694
|
axis?: "y";
|
|
@@ -1674,15 +1714,16 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1674
1714
|
tickLabelPlacement?: "middle" | "tick";
|
|
1675
1715
|
data?: readonly any[] | undefined;
|
|
1676
1716
|
dataKey?: string | undefined;
|
|
1717
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
1677
1718
|
id: import("../internals/index.mjs").AxisId;
|
|
1678
1719
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1679
1720
|
position?: "left" | "right" | "none";
|
|
1680
1721
|
width: number;
|
|
1681
1722
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
1682
1723
|
colorMap?: import("../models/colorMapping.mjs").OrdinalColorConfig | import("../models/colorMapping.mjs").ContinuousColorConfig | import("../models/colorMapping.mjs").PiecewiseColorConfig;
|
|
1683
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
1684
|
-
min: import("
|
|
1685
|
-
max: import("
|
|
1724
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
1725
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1726
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1686
1727
|
}) | undefined;
|
|
1687
1728
|
hideTooltip?: boolean | undefined;
|
|
1688
1729
|
ignoreTooltip?: boolean | undefined;
|
|
@@ -1690,7 +1731,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1690
1731
|
scaleType: "point";
|
|
1691
1732
|
ordinalTimeTicks?: import("../index.mjs").OrdinalTimeTicks;
|
|
1692
1733
|
groups?: import("../internals/index.mjs").AxisGroup[];
|
|
1693
|
-
colorScale?: import("
|
|
1734
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<string | number | Date, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<number, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
1694
1735
|
triggerTooltip?: boolean;
|
|
1695
1736
|
} | {
|
|
1696
1737
|
axis?: "y";
|
|
@@ -1716,15 +1757,16 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1716
1757
|
tickLabelPlacement?: "middle" | "tick";
|
|
1717
1758
|
data?: readonly any[] | undefined;
|
|
1718
1759
|
dataKey?: string | undefined;
|
|
1760
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
1719
1761
|
id: import("../internals/index.mjs").AxisId;
|
|
1720
1762
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1721
1763
|
position?: "left" | "right" | "none";
|
|
1722
1764
|
width: number;
|
|
1723
1765
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
1724
1766
|
colorMap?: import("../models/colorMapping.mjs").OrdinalColorConfig | import("../models/colorMapping.mjs").ContinuousColorConfig | import("../models/colorMapping.mjs").PiecewiseColorConfig;
|
|
1725
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
1726
|
-
min: import("
|
|
1727
|
-
max: import("
|
|
1767
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
1768
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1769
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1728
1770
|
}) | undefined;
|
|
1729
1771
|
hideTooltip?: boolean | undefined;
|
|
1730
1772
|
ignoreTooltip?: boolean | undefined;
|
|
@@ -1732,7 +1774,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1732
1774
|
scaleType: "point";
|
|
1733
1775
|
ordinalTimeTicks?: import("../index.mjs").OrdinalTimeTicks;
|
|
1734
1776
|
groups?: import("../internals/index.mjs").AxisGroup[];
|
|
1735
|
-
colorScale?: import("
|
|
1777
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
1736
1778
|
triggerTooltip?: boolean;
|
|
1737
1779
|
} | {
|
|
1738
1780
|
axis?: "y";
|
|
@@ -1758,15 +1800,16 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1758
1800
|
tickLabelPlacement?: "middle" | "tick";
|
|
1759
1801
|
data?: readonly any[] | undefined;
|
|
1760
1802
|
dataKey?: string | undefined;
|
|
1803
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
1761
1804
|
id: import("../internals/index.mjs").AxisId;
|
|
1762
1805
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1763
1806
|
position?: "left" | "right" | "none";
|
|
1764
1807
|
width: number;
|
|
1765
1808
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
1766
1809
|
colorMap?: import("../models/colorMapping.mjs").OrdinalColorConfig | import("../models/colorMapping.mjs").ContinuousColorConfig | import("../models/colorMapping.mjs").PiecewiseColorConfig;
|
|
1767
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
1768
|
-
min: import("
|
|
1769
|
-
max: import("
|
|
1810
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
1811
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1812
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1770
1813
|
}) | undefined;
|
|
1771
1814
|
hideTooltip?: boolean | undefined;
|
|
1772
1815
|
ignoreTooltip?: boolean | undefined;
|
|
@@ -1774,7 +1817,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1774
1817
|
scaleType: "point";
|
|
1775
1818
|
ordinalTimeTicks?: import("../index.mjs").OrdinalTimeTicks;
|
|
1776
1819
|
groups?: import("../internals/index.mjs").AxisGroup[];
|
|
1777
|
-
colorScale?: import("
|
|
1820
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
1778
1821
|
triggerTooltip?: boolean;
|
|
1779
1822
|
} | {
|
|
1780
1823
|
axis?: "y";
|
|
@@ -1800,15 +1843,16 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1800
1843
|
tickLabelPlacement?: "middle" | "tick";
|
|
1801
1844
|
data?: readonly any[] | undefined;
|
|
1802
1845
|
dataKey?: string | undefined;
|
|
1846
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
1803
1847
|
id: import("../internals/index.mjs").AxisId;
|
|
1804
1848
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1805
1849
|
position?: "left" | "right" | "none";
|
|
1806
1850
|
width: number;
|
|
1807
1851
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
1808
1852
|
colorMap?: import("../models/colorMapping.mjs").OrdinalColorConfig | import("../models/colorMapping.mjs").ContinuousColorConfig | import("../models/colorMapping.mjs").PiecewiseColorConfig;
|
|
1809
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
1810
|
-
min: import("
|
|
1811
|
-
max: import("
|
|
1853
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
1854
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1855
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1812
1856
|
}) | undefined;
|
|
1813
1857
|
hideTooltip?: boolean | undefined;
|
|
1814
1858
|
ignoreTooltip?: boolean | undefined;
|
|
@@ -1816,7 +1860,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1816
1860
|
scaleType: "point";
|
|
1817
1861
|
ordinalTimeTicks?: import("../index.mjs").OrdinalTimeTicks;
|
|
1818
1862
|
groups?: import("../internals/index.mjs").AxisGroup[];
|
|
1819
|
-
colorScale?: import("
|
|
1863
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
1820
1864
|
triggerTooltip?: boolean;
|
|
1821
1865
|
} | {
|
|
1822
1866
|
axis?: "y";
|
|
@@ -1842,15 +1886,16 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1842
1886
|
tickLabelPlacement?: "middle" | "tick";
|
|
1843
1887
|
data?: readonly any[] | undefined;
|
|
1844
1888
|
dataKey?: string | undefined;
|
|
1889
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
1845
1890
|
id: import("../internals/index.mjs").AxisId;
|
|
1846
1891
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1847
1892
|
position?: "left" | "right" | "none";
|
|
1848
1893
|
width: number;
|
|
1849
1894
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
1850
1895
|
colorMap?: import("../models/colorMapping.mjs").OrdinalColorConfig | import("../models/colorMapping.mjs").ContinuousColorConfig | import("../models/colorMapping.mjs").PiecewiseColorConfig;
|
|
1851
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
1852
|
-
min: import("
|
|
1853
|
-
max: import("
|
|
1896
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
1897
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1898
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1854
1899
|
}) | undefined;
|
|
1855
1900
|
hideTooltip?: boolean | undefined;
|
|
1856
1901
|
ignoreTooltip?: boolean | undefined;
|
|
@@ -1858,7 +1903,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1858
1903
|
scaleType: "point";
|
|
1859
1904
|
ordinalTimeTicks?: import("../index.mjs").OrdinalTimeTicks;
|
|
1860
1905
|
groups?: import("../internals/index.mjs").AxisGroup[];
|
|
1861
|
-
colorScale?: import("
|
|
1906
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
1862
1907
|
triggerTooltip?: boolean;
|
|
1863
1908
|
} | {
|
|
1864
1909
|
axis?: "y";
|
|
@@ -1884,22 +1929,23 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1884
1929
|
tickLabelPlacement?: "middle" | "tick";
|
|
1885
1930
|
data?: readonly any[] | undefined;
|
|
1886
1931
|
dataKey?: string | undefined;
|
|
1932
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
1887
1933
|
id: import("../internals/index.mjs").AxisId;
|
|
1888
1934
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1889
1935
|
position?: "left" | "right" | "none";
|
|
1890
1936
|
width: number;
|
|
1891
1937
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
1892
1938
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
1893
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
1894
|
-
min: import("
|
|
1895
|
-
max: import("
|
|
1939
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
1940
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1941
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1896
1942
|
}) | undefined;
|
|
1897
1943
|
hideTooltip?: boolean | undefined;
|
|
1898
1944
|
ignoreTooltip?: boolean | undefined;
|
|
1899
1945
|
offset: number;
|
|
1900
1946
|
scaleType: "symlog";
|
|
1901
1947
|
constant?: number;
|
|
1902
|
-
colorScale?: import("
|
|
1948
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
1903
1949
|
triggerTooltip?: boolean;
|
|
1904
1950
|
} | {
|
|
1905
1951
|
axis?: "y";
|
|
@@ -1925,22 +1971,23 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1925
1971
|
tickLabelPlacement?: "middle" | "tick";
|
|
1926
1972
|
data?: readonly any[] | undefined;
|
|
1927
1973
|
dataKey?: string | undefined;
|
|
1974
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
1928
1975
|
id: import("../internals/index.mjs").AxisId;
|
|
1929
1976
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1930
1977
|
position?: "left" | "right" | "none";
|
|
1931
1978
|
width: number;
|
|
1932
1979
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
1933
1980
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
1934
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
1935
|
-
min: import("
|
|
1936
|
-
max: import("
|
|
1981
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
1982
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1983
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1937
1984
|
}) | undefined;
|
|
1938
1985
|
hideTooltip?: boolean | undefined;
|
|
1939
1986
|
ignoreTooltip?: boolean | undefined;
|
|
1940
1987
|
offset: number;
|
|
1941
1988
|
scaleType: "symlog";
|
|
1942
1989
|
constant?: number;
|
|
1943
|
-
colorScale?: import("
|
|
1990
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
1944
1991
|
triggerTooltip?: boolean;
|
|
1945
1992
|
} | {
|
|
1946
1993
|
axis?: "y";
|
|
@@ -1966,22 +2013,23 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1966
2013
|
tickLabelPlacement?: "middle" | "tick";
|
|
1967
2014
|
data?: readonly any[] | undefined;
|
|
1968
2015
|
dataKey?: string | undefined;
|
|
2016
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
1969
2017
|
id: import("../internals/index.mjs").AxisId;
|
|
1970
2018
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1971
2019
|
position?: "left" | "right" | "none";
|
|
1972
2020
|
width: number;
|
|
1973
2021
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
1974
2022
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
1975
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
1976
|
-
min: import("
|
|
1977
|
-
max: import("
|
|
2023
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
2024
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2025
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1978
2026
|
}) | undefined;
|
|
1979
2027
|
hideTooltip?: boolean | undefined;
|
|
1980
2028
|
ignoreTooltip?: boolean | undefined;
|
|
1981
2029
|
offset: number;
|
|
1982
2030
|
scaleType: "symlog";
|
|
1983
2031
|
constant?: number;
|
|
1984
|
-
colorScale?: import("
|
|
2032
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
1985
2033
|
triggerTooltip?: boolean;
|
|
1986
2034
|
} | {
|
|
1987
2035
|
axis?: "y";
|
|
@@ -2007,22 +2055,23 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2007
2055
|
tickLabelPlacement?: "middle" | "tick";
|
|
2008
2056
|
data?: readonly any[] | undefined;
|
|
2009
2057
|
dataKey?: string | undefined;
|
|
2058
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
2010
2059
|
id: import("../internals/index.mjs").AxisId;
|
|
2011
2060
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2012
2061
|
position?: "left" | "right" | "none";
|
|
2013
2062
|
width: number;
|
|
2014
2063
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
2015
2064
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
2016
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
2017
|
-
min: import("
|
|
2018
|
-
max: import("
|
|
2065
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
2066
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2067
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2019
2068
|
}) | undefined;
|
|
2020
2069
|
hideTooltip?: boolean | undefined;
|
|
2021
2070
|
ignoreTooltip?: boolean | undefined;
|
|
2022
2071
|
offset: number;
|
|
2023
2072
|
scaleType: "symlog";
|
|
2024
2073
|
constant?: number;
|
|
2025
|
-
colorScale?: import("
|
|
2074
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<string | number | Date, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<number, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
2026
2075
|
triggerTooltip?: boolean;
|
|
2027
2076
|
} | {
|
|
2028
2077
|
axis?: "y";
|
|
@@ -2048,22 +2097,23 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2048
2097
|
tickLabelPlacement?: "middle" | "tick";
|
|
2049
2098
|
data?: readonly any[] | undefined;
|
|
2050
2099
|
dataKey?: string | undefined;
|
|
2100
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
2051
2101
|
id: import("../internals/index.mjs").AxisId;
|
|
2052
2102
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2053
2103
|
position?: "left" | "right" | "none";
|
|
2054
2104
|
width: number;
|
|
2055
2105
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
2056
2106
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
2057
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
2058
|
-
min: import("
|
|
2059
|
-
max: import("
|
|
2107
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
2108
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2109
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2060
2110
|
}) | undefined;
|
|
2061
2111
|
hideTooltip?: boolean | undefined;
|
|
2062
2112
|
ignoreTooltip?: boolean | undefined;
|
|
2063
2113
|
offset: number;
|
|
2064
2114
|
scaleType: "symlog";
|
|
2065
2115
|
constant?: number;
|
|
2066
|
-
colorScale?: import("
|
|
2116
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<string | number | Date, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<number, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
2067
2117
|
triggerTooltip?: boolean;
|
|
2068
2118
|
} | {
|
|
2069
2119
|
axis?: "y";
|
|
@@ -2089,22 +2139,23 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2089
2139
|
tickLabelPlacement?: "middle" | "tick";
|
|
2090
2140
|
data?: readonly any[] | undefined;
|
|
2091
2141
|
dataKey?: string | undefined;
|
|
2142
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
2092
2143
|
id: import("../internals/index.mjs").AxisId;
|
|
2093
2144
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2094
2145
|
position?: "left" | "right" | "none";
|
|
2095
2146
|
width: number;
|
|
2096
2147
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
2097
2148
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
2098
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
2099
|
-
min: import("
|
|
2100
|
-
max: import("
|
|
2149
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
2150
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2151
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2101
2152
|
}) | undefined;
|
|
2102
2153
|
hideTooltip?: boolean | undefined;
|
|
2103
2154
|
ignoreTooltip?: boolean | undefined;
|
|
2104
2155
|
offset: number;
|
|
2105
2156
|
scaleType: "symlog";
|
|
2106
2157
|
constant?: number;
|
|
2107
|
-
colorScale?: import("
|
|
2158
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
2108
2159
|
triggerTooltip?: boolean;
|
|
2109
2160
|
} | {
|
|
2110
2161
|
axis?: "y";
|
|
@@ -2130,22 +2181,23 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2130
2181
|
tickLabelPlacement?: "middle" | "tick";
|
|
2131
2182
|
data?: readonly any[] | undefined;
|
|
2132
2183
|
dataKey?: string | undefined;
|
|
2184
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
2133
2185
|
id: import("../internals/index.mjs").AxisId;
|
|
2134
2186
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2135
2187
|
position?: "left" | "right" | "none";
|
|
2136
2188
|
width: number;
|
|
2137
2189
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
2138
2190
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
2139
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
2140
|
-
min: import("
|
|
2141
|
-
max: import("
|
|
2191
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
2192
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2193
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2142
2194
|
}) | undefined;
|
|
2143
2195
|
hideTooltip?: boolean | undefined;
|
|
2144
2196
|
ignoreTooltip?: boolean | undefined;
|
|
2145
2197
|
offset: number;
|
|
2146
2198
|
scaleType: "symlog";
|
|
2147
2199
|
constant?: number;
|
|
2148
|
-
colorScale?: import("
|
|
2200
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
2149
2201
|
triggerTooltip?: boolean;
|
|
2150
2202
|
} | {
|
|
2151
2203
|
axis?: "y";
|
|
@@ -2171,22 +2223,23 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2171
2223
|
tickLabelPlacement?: "middle" | "tick";
|
|
2172
2224
|
data?: readonly any[] | undefined;
|
|
2173
2225
|
dataKey?: string | undefined;
|
|
2226
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
2174
2227
|
id: import("../internals/index.mjs").AxisId;
|
|
2175
2228
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2176
2229
|
position?: "left" | "right" | "none";
|
|
2177
2230
|
width: number;
|
|
2178
2231
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
2179
2232
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
2180
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
2181
|
-
min: import("
|
|
2182
|
-
max: import("
|
|
2233
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
2234
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2235
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2183
2236
|
}) | undefined;
|
|
2184
2237
|
hideTooltip?: boolean | undefined;
|
|
2185
2238
|
ignoreTooltip?: boolean | undefined;
|
|
2186
2239
|
offset: number;
|
|
2187
2240
|
scaleType: "symlog";
|
|
2188
2241
|
constant?: number;
|
|
2189
|
-
colorScale?: import("
|
|
2242
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
2190
2243
|
triggerTooltip?: boolean;
|
|
2191
2244
|
} | {
|
|
2192
2245
|
axis?: "y";
|
|
@@ -2212,22 +2265,23 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2212
2265
|
tickLabelPlacement?: "middle" | "tick";
|
|
2213
2266
|
data?: readonly any[] | undefined;
|
|
2214
2267
|
dataKey?: string | undefined;
|
|
2268
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
2215
2269
|
id: import("../internals/index.mjs").AxisId;
|
|
2216
2270
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2217
2271
|
position?: "left" | "right" | "none";
|
|
2218
2272
|
width: number;
|
|
2219
2273
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
2220
2274
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
2221
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
2222
|
-
min: import("
|
|
2223
|
-
max: import("
|
|
2275
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
2276
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2277
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2224
2278
|
}) | undefined;
|
|
2225
2279
|
hideTooltip?: boolean | undefined;
|
|
2226
2280
|
ignoreTooltip?: boolean | undefined;
|
|
2227
2281
|
offset: number;
|
|
2228
2282
|
scaleType: "symlog";
|
|
2229
2283
|
constant?: number;
|
|
2230
|
-
colorScale?: import("
|
|
2284
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
2231
2285
|
triggerTooltip?: boolean;
|
|
2232
2286
|
} | {
|
|
2233
2287
|
axis?: "y";
|
|
@@ -2253,21 +2307,22 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2253
2307
|
tickLabelPlacement?: "middle" | "tick";
|
|
2254
2308
|
data?: readonly any[] | undefined;
|
|
2255
2309
|
dataKey?: string | undefined;
|
|
2310
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
2256
2311
|
id: import("../internals/index.mjs").AxisId;
|
|
2257
2312
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2258
2313
|
position?: "left" | "right" | "none";
|
|
2259
2314
|
width: number;
|
|
2260
2315
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
2261
2316
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
2262
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
2263
|
-
min: import("
|
|
2264
|
-
max: import("
|
|
2317
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
2318
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2319
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2265
2320
|
}) | undefined;
|
|
2266
2321
|
hideTooltip?: boolean | undefined;
|
|
2267
2322
|
ignoreTooltip?: boolean | undefined;
|
|
2268
2323
|
offset: number;
|
|
2269
2324
|
scaleType: "pow";
|
|
2270
|
-
colorScale?: import("
|
|
2325
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
2271
2326
|
triggerTooltip?: boolean;
|
|
2272
2327
|
} | {
|
|
2273
2328
|
axis?: "y";
|
|
@@ -2293,21 +2348,22 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2293
2348
|
tickLabelPlacement?: "middle" | "tick";
|
|
2294
2349
|
data?: readonly any[] | undefined;
|
|
2295
2350
|
dataKey?: string | undefined;
|
|
2351
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
2296
2352
|
id: import("../internals/index.mjs").AxisId;
|
|
2297
2353
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2298
2354
|
position?: "left" | "right" | "none";
|
|
2299
2355
|
width: number;
|
|
2300
2356
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
2301
2357
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
2302
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
2303
|
-
min: import("
|
|
2304
|
-
max: import("
|
|
2358
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
2359
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2360
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2305
2361
|
}) | undefined;
|
|
2306
2362
|
hideTooltip?: boolean | undefined;
|
|
2307
2363
|
ignoreTooltip?: boolean | undefined;
|
|
2308
2364
|
offset: number;
|
|
2309
2365
|
scaleType: "pow";
|
|
2310
|
-
colorScale?: import("
|
|
2366
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
2311
2367
|
triggerTooltip?: boolean;
|
|
2312
2368
|
} | {
|
|
2313
2369
|
axis?: "y";
|
|
@@ -2333,21 +2389,22 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2333
2389
|
tickLabelPlacement?: "middle" | "tick";
|
|
2334
2390
|
data?: readonly any[] | undefined;
|
|
2335
2391
|
dataKey?: string | undefined;
|
|
2392
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
2336
2393
|
id: import("../internals/index.mjs").AxisId;
|
|
2337
2394
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2338
2395
|
position?: "left" | "right" | "none";
|
|
2339
2396
|
width: number;
|
|
2340
2397
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
2341
2398
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
2342
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
2343
|
-
min: import("
|
|
2344
|
-
max: import("
|
|
2399
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
2400
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2401
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2345
2402
|
}) | undefined;
|
|
2346
2403
|
hideTooltip?: boolean | undefined;
|
|
2347
2404
|
ignoreTooltip?: boolean | undefined;
|
|
2348
2405
|
offset: number;
|
|
2349
2406
|
scaleType: "pow";
|
|
2350
|
-
colorScale?: import("
|
|
2407
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
2351
2408
|
triggerTooltip?: boolean;
|
|
2352
2409
|
} | {
|
|
2353
2410
|
axis?: "y";
|
|
@@ -2373,21 +2430,22 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2373
2430
|
tickLabelPlacement?: "middle" | "tick";
|
|
2374
2431
|
data?: readonly any[] | undefined;
|
|
2375
2432
|
dataKey?: string | undefined;
|
|
2433
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
2376
2434
|
id: import("../internals/index.mjs").AxisId;
|
|
2377
2435
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2378
2436
|
position?: "left" | "right" | "none";
|
|
2379
2437
|
width: number;
|
|
2380
2438
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
2381
2439
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
2382
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
2383
|
-
min: import("
|
|
2384
|
-
max: import("
|
|
2440
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
2441
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2442
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2385
2443
|
}) | undefined;
|
|
2386
2444
|
hideTooltip?: boolean | undefined;
|
|
2387
2445
|
ignoreTooltip?: boolean | undefined;
|
|
2388
2446
|
offset: number;
|
|
2389
2447
|
scaleType: "pow";
|
|
2390
|
-
colorScale?: import("
|
|
2448
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<string | number | Date, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<number, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
2391
2449
|
triggerTooltip?: boolean;
|
|
2392
2450
|
} | {
|
|
2393
2451
|
axis?: "y";
|
|
@@ -2413,21 +2471,22 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2413
2471
|
tickLabelPlacement?: "middle" | "tick";
|
|
2414
2472
|
data?: readonly any[] | undefined;
|
|
2415
2473
|
dataKey?: string | undefined;
|
|
2474
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
2416
2475
|
id: import("../internals/index.mjs").AxisId;
|
|
2417
2476
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2418
2477
|
position?: "left" | "right" | "none";
|
|
2419
2478
|
width: number;
|
|
2420
2479
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
2421
2480
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
2422
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
2423
|
-
min: import("
|
|
2424
|
-
max: import("
|
|
2481
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
2482
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2483
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2425
2484
|
}) | undefined;
|
|
2426
2485
|
hideTooltip?: boolean | undefined;
|
|
2427
2486
|
ignoreTooltip?: boolean | undefined;
|
|
2428
2487
|
offset: number;
|
|
2429
2488
|
scaleType: "pow";
|
|
2430
|
-
colorScale?: import("
|
|
2489
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<string | number | Date, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<number, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
2431
2490
|
triggerTooltip?: boolean;
|
|
2432
2491
|
} | {
|
|
2433
2492
|
axis?: "y";
|
|
@@ -2453,21 +2512,22 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2453
2512
|
tickLabelPlacement?: "middle" | "tick";
|
|
2454
2513
|
data?: readonly any[] | undefined;
|
|
2455
2514
|
dataKey?: string | undefined;
|
|
2515
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
2456
2516
|
id: import("../internals/index.mjs").AxisId;
|
|
2457
2517
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2458
2518
|
position?: "left" | "right" | "none";
|
|
2459
2519
|
width: number;
|
|
2460
2520
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
2461
2521
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
2462
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
2463
|
-
min: import("
|
|
2464
|
-
max: import("
|
|
2522
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
2523
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2524
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2465
2525
|
}) | undefined;
|
|
2466
2526
|
hideTooltip?: boolean | undefined;
|
|
2467
2527
|
ignoreTooltip?: boolean | undefined;
|
|
2468
2528
|
offset: number;
|
|
2469
2529
|
scaleType: "pow";
|
|
2470
|
-
colorScale?: import("
|
|
2530
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
2471
2531
|
triggerTooltip?: boolean;
|
|
2472
2532
|
} | {
|
|
2473
2533
|
axis?: "y";
|
|
@@ -2493,21 +2553,22 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2493
2553
|
tickLabelPlacement?: "middle" | "tick";
|
|
2494
2554
|
data?: readonly any[] | undefined;
|
|
2495
2555
|
dataKey?: string | undefined;
|
|
2556
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
2496
2557
|
id: import("../internals/index.mjs").AxisId;
|
|
2497
2558
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2498
2559
|
position?: "left" | "right" | "none";
|
|
2499
2560
|
width: number;
|
|
2500
2561
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
2501
2562
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
2502
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
2503
|
-
min: import("
|
|
2504
|
-
max: import("
|
|
2563
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
2564
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2565
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2505
2566
|
}) | undefined;
|
|
2506
2567
|
hideTooltip?: boolean | undefined;
|
|
2507
2568
|
ignoreTooltip?: boolean | undefined;
|
|
2508
2569
|
offset: number;
|
|
2509
2570
|
scaleType: "pow";
|
|
2510
|
-
colorScale?: import("
|
|
2571
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
2511
2572
|
triggerTooltip?: boolean;
|
|
2512
2573
|
} | {
|
|
2513
2574
|
axis?: "y";
|
|
@@ -2533,21 +2594,22 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2533
2594
|
tickLabelPlacement?: "middle" | "tick";
|
|
2534
2595
|
data?: readonly any[] | undefined;
|
|
2535
2596
|
dataKey?: string | undefined;
|
|
2597
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
2536
2598
|
id: import("../internals/index.mjs").AxisId;
|
|
2537
2599
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2538
2600
|
position?: "left" | "right" | "none";
|
|
2539
2601
|
width: number;
|
|
2540
2602
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
2541
2603
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
2542
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
2543
|
-
min: import("
|
|
2544
|
-
max: import("
|
|
2604
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
2605
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2606
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2545
2607
|
}) | undefined;
|
|
2546
2608
|
hideTooltip?: boolean | undefined;
|
|
2547
2609
|
ignoreTooltip?: boolean | undefined;
|
|
2548
2610
|
offset: number;
|
|
2549
2611
|
scaleType: "pow";
|
|
2550
|
-
colorScale?: import("
|
|
2612
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
2551
2613
|
triggerTooltip?: boolean;
|
|
2552
2614
|
} | {
|
|
2553
2615
|
axis?: "y";
|
|
@@ -2573,21 +2635,22 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2573
2635
|
tickLabelPlacement?: "middle" | "tick";
|
|
2574
2636
|
data?: readonly any[] | undefined;
|
|
2575
2637
|
dataKey?: string | undefined;
|
|
2638
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
2576
2639
|
id: import("../internals/index.mjs").AxisId;
|
|
2577
2640
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2578
2641
|
position?: "left" | "right" | "none";
|
|
2579
2642
|
width: number;
|
|
2580
2643
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
2581
2644
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
2582
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
2583
|
-
min: import("
|
|
2584
|
-
max: import("
|
|
2645
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
2646
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2647
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2585
2648
|
}) | undefined;
|
|
2586
2649
|
hideTooltip?: boolean | undefined;
|
|
2587
2650
|
ignoreTooltip?: boolean | undefined;
|
|
2588
2651
|
offset: number;
|
|
2589
2652
|
scaleType: "pow";
|
|
2590
|
-
colorScale?: import("
|
|
2653
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
2591
2654
|
triggerTooltip?: boolean;
|
|
2592
2655
|
} | {
|
|
2593
2656
|
axis?: "y";
|
|
@@ -2613,21 +2676,22 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2613
2676
|
tickLabelPlacement?: "middle" | "tick";
|
|
2614
2677
|
data?: readonly any[] | undefined;
|
|
2615
2678
|
dataKey?: string | undefined;
|
|
2679
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
2616
2680
|
id: import("../internals/index.mjs").AxisId;
|
|
2617
2681
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2618
2682
|
position?: "left" | "right" | "none";
|
|
2619
2683
|
width: number;
|
|
2620
2684
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
2621
2685
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
2622
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
2623
|
-
min: import("
|
|
2624
|
-
max: import("
|
|
2686
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
2687
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2688
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2625
2689
|
}) | undefined;
|
|
2626
2690
|
hideTooltip?: boolean | undefined;
|
|
2627
2691
|
ignoreTooltip?: boolean | undefined;
|
|
2628
2692
|
offset: number;
|
|
2629
2693
|
scaleType: "sqrt";
|
|
2630
|
-
colorScale?: import("
|
|
2694
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
2631
2695
|
triggerTooltip?: boolean;
|
|
2632
2696
|
} | {
|
|
2633
2697
|
axis?: "y";
|
|
@@ -2653,21 +2717,22 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2653
2717
|
tickLabelPlacement?: "middle" | "tick";
|
|
2654
2718
|
data?: readonly any[] | undefined;
|
|
2655
2719
|
dataKey?: string | undefined;
|
|
2720
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
2656
2721
|
id: import("../internals/index.mjs").AxisId;
|
|
2657
2722
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2658
2723
|
position?: "left" | "right" | "none";
|
|
2659
2724
|
width: number;
|
|
2660
2725
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
2661
2726
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
2662
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
2663
|
-
min: import("
|
|
2664
|
-
max: import("
|
|
2727
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
2728
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2729
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2665
2730
|
}) | undefined;
|
|
2666
2731
|
hideTooltip?: boolean | undefined;
|
|
2667
2732
|
ignoreTooltip?: boolean | undefined;
|
|
2668
2733
|
offset: number;
|
|
2669
2734
|
scaleType: "sqrt";
|
|
2670
|
-
colorScale?: import("
|
|
2735
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
2671
2736
|
triggerTooltip?: boolean;
|
|
2672
2737
|
} | {
|
|
2673
2738
|
axis?: "y";
|
|
@@ -2693,21 +2758,22 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2693
2758
|
tickLabelPlacement?: "middle" | "tick";
|
|
2694
2759
|
data?: readonly any[] | undefined;
|
|
2695
2760
|
dataKey?: string | undefined;
|
|
2761
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
2696
2762
|
id: import("../internals/index.mjs").AxisId;
|
|
2697
2763
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2698
2764
|
position?: "left" | "right" | "none";
|
|
2699
2765
|
width: number;
|
|
2700
2766
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
2701
2767
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
2702
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
2703
|
-
min: import("
|
|
2704
|
-
max: import("
|
|
2768
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
2769
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2770
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2705
2771
|
}) | undefined;
|
|
2706
2772
|
hideTooltip?: boolean | undefined;
|
|
2707
2773
|
ignoreTooltip?: boolean | undefined;
|
|
2708
2774
|
offset: number;
|
|
2709
2775
|
scaleType: "sqrt";
|
|
2710
|
-
colorScale?: import("
|
|
2776
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
2711
2777
|
triggerTooltip?: boolean;
|
|
2712
2778
|
} | {
|
|
2713
2779
|
axis?: "y";
|
|
@@ -2733,21 +2799,22 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2733
2799
|
tickLabelPlacement?: "middle" | "tick";
|
|
2734
2800
|
data?: readonly any[] | undefined;
|
|
2735
2801
|
dataKey?: string | undefined;
|
|
2802
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
2736
2803
|
id: import("../internals/index.mjs").AxisId;
|
|
2737
2804
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2738
2805
|
position?: "left" | "right" | "none";
|
|
2739
2806
|
width: number;
|
|
2740
2807
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
2741
2808
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
2742
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
2743
|
-
min: import("
|
|
2744
|
-
max: import("
|
|
2809
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
2810
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2811
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2745
2812
|
}) | undefined;
|
|
2746
2813
|
hideTooltip?: boolean | undefined;
|
|
2747
2814
|
ignoreTooltip?: boolean | undefined;
|
|
2748
2815
|
offset: number;
|
|
2749
2816
|
scaleType: "sqrt";
|
|
2750
|
-
colorScale?: import("
|
|
2817
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<string | number | Date, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<number, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
2751
2818
|
triggerTooltip?: boolean;
|
|
2752
2819
|
} | {
|
|
2753
2820
|
axis?: "y";
|
|
@@ -2773,21 +2840,22 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2773
2840
|
tickLabelPlacement?: "middle" | "tick";
|
|
2774
2841
|
data?: readonly any[] | undefined;
|
|
2775
2842
|
dataKey?: string | undefined;
|
|
2843
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
2776
2844
|
id: import("../internals/index.mjs").AxisId;
|
|
2777
2845
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2778
2846
|
position?: "left" | "right" | "none";
|
|
2779
2847
|
width: number;
|
|
2780
2848
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
2781
2849
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
2782
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
2783
|
-
min: import("
|
|
2784
|
-
max: import("
|
|
2850
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
2851
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2852
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2785
2853
|
}) | undefined;
|
|
2786
2854
|
hideTooltip?: boolean | undefined;
|
|
2787
2855
|
ignoreTooltip?: boolean | undefined;
|
|
2788
2856
|
offset: number;
|
|
2789
2857
|
scaleType: "sqrt";
|
|
2790
|
-
colorScale?: import("
|
|
2858
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<string | number | Date, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<number, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
2791
2859
|
triggerTooltip?: boolean;
|
|
2792
2860
|
} | {
|
|
2793
2861
|
axis?: "y";
|
|
@@ -2813,21 +2881,22 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2813
2881
|
tickLabelPlacement?: "middle" | "tick";
|
|
2814
2882
|
data?: readonly any[] | undefined;
|
|
2815
2883
|
dataKey?: string | undefined;
|
|
2884
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
2816
2885
|
id: import("../internals/index.mjs").AxisId;
|
|
2817
2886
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2818
2887
|
position?: "left" | "right" | "none";
|
|
2819
2888
|
width: number;
|
|
2820
2889
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
2821
2890
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
2822
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
2823
|
-
min: import("
|
|
2824
|
-
max: import("
|
|
2891
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
2892
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2893
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2825
2894
|
}) | undefined;
|
|
2826
2895
|
hideTooltip?: boolean | undefined;
|
|
2827
2896
|
ignoreTooltip?: boolean | undefined;
|
|
2828
2897
|
offset: number;
|
|
2829
2898
|
scaleType: "sqrt";
|
|
2830
|
-
colorScale?: import("
|
|
2899
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
2831
2900
|
triggerTooltip?: boolean;
|
|
2832
2901
|
} | {
|
|
2833
2902
|
axis?: "y";
|
|
@@ -2853,21 +2922,22 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2853
2922
|
tickLabelPlacement?: "middle" | "tick";
|
|
2854
2923
|
data?: readonly any[] | undefined;
|
|
2855
2924
|
dataKey?: string | undefined;
|
|
2925
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
2856
2926
|
id: import("../internals/index.mjs").AxisId;
|
|
2857
2927
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2858
2928
|
position?: "left" | "right" | "none";
|
|
2859
2929
|
width: number;
|
|
2860
2930
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
2861
2931
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
2862
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
2863
|
-
min: import("
|
|
2864
|
-
max: import("
|
|
2932
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
2933
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2934
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2865
2935
|
}) | undefined;
|
|
2866
2936
|
hideTooltip?: boolean | undefined;
|
|
2867
2937
|
ignoreTooltip?: boolean | undefined;
|
|
2868
2938
|
offset: number;
|
|
2869
2939
|
scaleType: "sqrt";
|
|
2870
|
-
colorScale?: import("
|
|
2940
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
2871
2941
|
triggerTooltip?: boolean;
|
|
2872
2942
|
} | {
|
|
2873
2943
|
axis?: "y";
|
|
@@ -2893,21 +2963,22 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2893
2963
|
tickLabelPlacement?: "middle" | "tick";
|
|
2894
2964
|
data?: readonly any[] | undefined;
|
|
2895
2965
|
dataKey?: string | undefined;
|
|
2966
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
2896
2967
|
id: import("../internals/index.mjs").AxisId;
|
|
2897
2968
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2898
2969
|
position?: "left" | "right" | "none";
|
|
2899
2970
|
width: number;
|
|
2900
2971
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
2901
2972
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
2902
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
2903
|
-
min: import("
|
|
2904
|
-
max: import("
|
|
2973
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
2974
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2975
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2905
2976
|
}) | undefined;
|
|
2906
2977
|
hideTooltip?: boolean | undefined;
|
|
2907
2978
|
ignoreTooltip?: boolean | undefined;
|
|
2908
2979
|
offset: number;
|
|
2909
2980
|
scaleType: "sqrt";
|
|
2910
|
-
colorScale?: import("
|
|
2981
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
2911
2982
|
triggerTooltip?: boolean;
|
|
2912
2983
|
} | {
|
|
2913
2984
|
axis?: "y";
|
|
@@ -2933,21 +3004,22 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2933
3004
|
tickLabelPlacement?: "middle" | "tick";
|
|
2934
3005
|
data?: readonly any[] | undefined;
|
|
2935
3006
|
dataKey?: string | undefined;
|
|
3007
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
2936
3008
|
id: import("../internals/index.mjs").AxisId;
|
|
2937
3009
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2938
3010
|
position?: "left" | "right" | "none";
|
|
2939
3011
|
width: number;
|
|
2940
3012
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
2941
3013
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
2942
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
2943
|
-
min: import("
|
|
2944
|
-
max: import("
|
|
3014
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
3015
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
3016
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2945
3017
|
}) | undefined;
|
|
2946
3018
|
hideTooltip?: boolean | undefined;
|
|
2947
3019
|
ignoreTooltip?: boolean | undefined;
|
|
2948
3020
|
offset: number;
|
|
2949
3021
|
scaleType: "sqrt";
|
|
2950
|
-
colorScale?: import("
|
|
3022
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
2951
3023
|
triggerTooltip?: boolean;
|
|
2952
3024
|
} | {
|
|
2953
3025
|
axis?: "y";
|
|
@@ -2973,21 +3045,22 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2973
3045
|
tickLabelPlacement?: "middle" | "tick";
|
|
2974
3046
|
data?: readonly any[] | undefined;
|
|
2975
3047
|
dataKey?: string | undefined;
|
|
3048
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
2976
3049
|
id: import("../internals/index.mjs").AxisId;
|
|
2977
3050
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2978
3051
|
position?: "left" | "right" | "none";
|
|
2979
3052
|
width: number;
|
|
2980
3053
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
2981
3054
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
2982
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
2983
|
-
min: import("
|
|
2984
|
-
max: import("
|
|
3055
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
3056
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
3057
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2985
3058
|
}) | undefined;
|
|
2986
3059
|
hideTooltip?: boolean | undefined;
|
|
2987
3060
|
ignoreTooltip?: boolean | undefined;
|
|
2988
3061
|
offset: number;
|
|
2989
3062
|
scaleType: "utc";
|
|
2990
|
-
colorScale?: import("
|
|
3063
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
2991
3064
|
triggerTooltip?: boolean;
|
|
2992
3065
|
} | {
|
|
2993
3066
|
axis?: "y";
|
|
@@ -3013,21 +3086,22 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
3013
3086
|
tickLabelPlacement?: "middle" | "tick";
|
|
3014
3087
|
data?: readonly any[] | undefined;
|
|
3015
3088
|
dataKey?: string | undefined;
|
|
3089
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
3016
3090
|
id: import("../internals/index.mjs").AxisId;
|
|
3017
3091
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
3018
3092
|
position?: "left" | "right" | "none";
|
|
3019
3093
|
width: number;
|
|
3020
3094
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
3021
3095
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
3022
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
3023
|
-
min: import("
|
|
3024
|
-
max: import("
|
|
3096
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
3097
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
3098
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
3025
3099
|
}) | undefined;
|
|
3026
3100
|
hideTooltip?: boolean | undefined;
|
|
3027
3101
|
ignoreTooltip?: boolean | undefined;
|
|
3028
3102
|
offset: number;
|
|
3029
3103
|
scaleType: "utc";
|
|
3030
|
-
colorScale?: import("
|
|
3104
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
3031
3105
|
triggerTooltip?: boolean;
|
|
3032
3106
|
} | {
|
|
3033
3107
|
axis?: "y";
|
|
@@ -3053,21 +3127,22 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
3053
3127
|
tickLabelPlacement?: "middle" | "tick";
|
|
3054
3128
|
data?: readonly any[] | undefined;
|
|
3055
3129
|
dataKey?: string | undefined;
|
|
3130
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
3056
3131
|
id: import("../internals/index.mjs").AxisId;
|
|
3057
3132
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
3058
3133
|
position?: "left" | "right" | "none";
|
|
3059
3134
|
width: number;
|
|
3060
3135
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
3061
3136
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
3062
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
3063
|
-
min: import("
|
|
3064
|
-
max: import("
|
|
3137
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
3138
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
3139
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
3065
3140
|
}) | undefined;
|
|
3066
3141
|
hideTooltip?: boolean | undefined;
|
|
3067
3142
|
ignoreTooltip?: boolean | undefined;
|
|
3068
3143
|
offset: number;
|
|
3069
3144
|
scaleType: "utc";
|
|
3070
|
-
colorScale?: import("
|
|
3145
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
3071
3146
|
triggerTooltip?: boolean;
|
|
3072
3147
|
} | {
|
|
3073
3148
|
axis?: "y";
|
|
@@ -3093,21 +3168,22 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
3093
3168
|
tickLabelPlacement?: "middle" | "tick";
|
|
3094
3169
|
data?: readonly any[] | undefined;
|
|
3095
3170
|
dataKey?: string | undefined;
|
|
3171
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
3096
3172
|
id: import("../internals/index.mjs").AxisId;
|
|
3097
3173
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
3098
3174
|
position?: "left" | "right" | "none";
|
|
3099
3175
|
width: number;
|
|
3100
3176
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
3101
3177
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
3102
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
3103
|
-
min: import("
|
|
3104
|
-
max: import("
|
|
3178
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
3179
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
3180
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
3105
3181
|
}) | undefined;
|
|
3106
3182
|
hideTooltip?: boolean | undefined;
|
|
3107
3183
|
ignoreTooltip?: boolean | undefined;
|
|
3108
3184
|
offset: number;
|
|
3109
3185
|
scaleType: "utc";
|
|
3110
|
-
colorScale?: import("
|
|
3186
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<string | number | Date, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<number, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
3111
3187
|
triggerTooltip?: boolean;
|
|
3112
3188
|
} | {
|
|
3113
3189
|
axis?: "y";
|
|
@@ -3133,21 +3209,22 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
3133
3209
|
tickLabelPlacement?: "middle" | "tick";
|
|
3134
3210
|
data?: readonly any[] | undefined;
|
|
3135
3211
|
dataKey?: string | undefined;
|
|
3212
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
3136
3213
|
id: import("../internals/index.mjs").AxisId;
|
|
3137
3214
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
3138
3215
|
position?: "left" | "right" | "none";
|
|
3139
3216
|
width: number;
|
|
3140
3217
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
3141
3218
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
3142
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
3143
|
-
min: import("
|
|
3144
|
-
max: import("
|
|
3219
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
3220
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
3221
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
3145
3222
|
}) | undefined;
|
|
3146
3223
|
hideTooltip?: boolean | undefined;
|
|
3147
3224
|
ignoreTooltip?: boolean | undefined;
|
|
3148
3225
|
offset: number;
|
|
3149
3226
|
scaleType: "utc";
|
|
3150
|
-
colorScale?: import("
|
|
3227
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<string | number | Date, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<number, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
3151
3228
|
triggerTooltip?: boolean;
|
|
3152
3229
|
} | {
|
|
3153
3230
|
axis?: "y";
|
|
@@ -3173,21 +3250,22 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
3173
3250
|
tickLabelPlacement?: "middle" | "tick";
|
|
3174
3251
|
data?: readonly any[] | undefined;
|
|
3175
3252
|
dataKey?: string | undefined;
|
|
3253
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
3176
3254
|
id: import("../internals/index.mjs").AxisId;
|
|
3177
3255
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
3178
3256
|
position?: "left" | "right" | "none";
|
|
3179
3257
|
width: number;
|
|
3180
3258
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
3181
3259
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
3182
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
3183
|
-
min: import("
|
|
3184
|
-
max: import("
|
|
3260
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
3261
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
3262
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
3185
3263
|
}) | undefined;
|
|
3186
3264
|
hideTooltip?: boolean | undefined;
|
|
3187
3265
|
ignoreTooltip?: boolean | undefined;
|
|
3188
3266
|
offset: number;
|
|
3189
3267
|
scaleType: "utc";
|
|
3190
|
-
colorScale?: import("
|
|
3268
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
3191
3269
|
triggerTooltip?: boolean;
|
|
3192
3270
|
} | {
|
|
3193
3271
|
axis?: "y";
|
|
@@ -3213,21 +3291,22 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
3213
3291
|
tickLabelPlacement?: "middle" | "tick";
|
|
3214
3292
|
data?: readonly any[] | undefined;
|
|
3215
3293
|
dataKey?: string | undefined;
|
|
3294
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
3216
3295
|
id: import("../internals/index.mjs").AxisId;
|
|
3217
3296
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
3218
3297
|
position?: "left" | "right" | "none";
|
|
3219
3298
|
width: number;
|
|
3220
3299
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
3221
3300
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
3222
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
3223
|
-
min: import("
|
|
3224
|
-
max: import("
|
|
3301
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
3302
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
3303
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
3225
3304
|
}) | undefined;
|
|
3226
3305
|
hideTooltip?: boolean | undefined;
|
|
3227
3306
|
ignoreTooltip?: boolean | undefined;
|
|
3228
3307
|
offset: number;
|
|
3229
3308
|
scaleType: "utc";
|
|
3230
|
-
colorScale?: import("
|
|
3309
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
3231
3310
|
triggerTooltip?: boolean;
|
|
3232
3311
|
} | {
|
|
3233
3312
|
axis?: "y";
|
|
@@ -3253,21 +3332,22 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
3253
3332
|
tickLabelPlacement?: "middle" | "tick";
|
|
3254
3333
|
data?: readonly any[] | undefined;
|
|
3255
3334
|
dataKey?: string | undefined;
|
|
3335
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
3256
3336
|
id: import("../internals/index.mjs").AxisId;
|
|
3257
3337
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
3258
3338
|
position?: "left" | "right" | "none";
|
|
3259
3339
|
width: number;
|
|
3260
3340
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
3261
3341
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
3262
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
3263
|
-
min: import("
|
|
3264
|
-
max: import("
|
|
3342
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
3343
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
3344
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
3265
3345
|
}) | undefined;
|
|
3266
3346
|
hideTooltip?: boolean | undefined;
|
|
3267
3347
|
ignoreTooltip?: boolean | undefined;
|
|
3268
3348
|
offset: number;
|
|
3269
3349
|
scaleType: "utc";
|
|
3270
|
-
colorScale?: import("
|
|
3350
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
3271
3351
|
triggerTooltip?: boolean;
|
|
3272
3352
|
} | {
|
|
3273
3353
|
axis?: "y";
|
|
@@ -3293,21 +3373,22 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
3293
3373
|
tickLabelPlacement?: "middle" | "tick";
|
|
3294
3374
|
data?: readonly any[] | undefined;
|
|
3295
3375
|
dataKey?: string | undefined;
|
|
3376
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
3296
3377
|
id: import("../internals/index.mjs").AxisId;
|
|
3297
3378
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
3298
3379
|
position?: "left" | "right" | "none";
|
|
3299
3380
|
width: number;
|
|
3300
3381
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
3301
3382
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
3302
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
3303
|
-
min: import("
|
|
3304
|
-
max: import("
|
|
3383
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
3384
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
3385
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
3305
3386
|
}) | undefined;
|
|
3306
3387
|
hideTooltip?: boolean | undefined;
|
|
3307
3388
|
ignoreTooltip?: boolean | undefined;
|
|
3308
3389
|
offset: number;
|
|
3309
3390
|
scaleType: "utc";
|
|
3310
|
-
colorScale?: import("
|
|
3391
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
3311
3392
|
triggerTooltip?: boolean;
|
|
3312
3393
|
};
|
|
3313
3394
|
tickNumber: number;
|