@mui/x-charts 8.13.1 → 8.14.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/BarChart/BarChart.js +44 -36
- package/CHANGELOG.md +109 -1
- package/ChartContainer/ChartContainer.js +68 -56
- package/ChartsTooltip/ChartsTooltipContainer.js +2 -0
- package/ChartsXAxis/useAxisTicksProps.d.ts +197 -355
- package/ChartsYAxis/useAxisTicksProps.d.ts +197 -355
- package/LineChart/LineChart.js +44 -36
- package/PieChart/PieArc.d.ts +18 -4
- package/PieChart/PieArc.js +11 -5
- package/PieChart/PieArcPlot.js +3 -1
- package/ScatterChart/ScatterChart.js +44 -36
- package/SparkLineChart/SparkLineChart.js +44 -36
- package/esm/BarChart/BarChart.js +44 -36
- package/esm/ChartContainer/ChartContainer.js +68 -56
- package/esm/ChartsTooltip/ChartsTooltipContainer.js +2 -0
- package/esm/ChartsXAxis/useAxisTicksProps.d.ts +197 -355
- package/esm/ChartsYAxis/useAxisTicksProps.d.ts +197 -355
- package/esm/LineChart/LineChart.js +44 -36
- package/esm/PieChart/PieArc.d.ts +18 -4
- package/esm/PieChart/PieArc.js +11 -5
- package/esm/PieChart/PieArcPlot.js +3 -1
- package/esm/ScatterChart/ScatterChart.js +44 -36
- package/esm/SparkLineChart/SparkLineChart.js +44 -36
- package/esm/hooks/animation/useAnimate.js +5 -3
- package/esm/hooks/useScale.d.ts +5 -1
- package/esm/index.js +1 -1
- package/esm/internals/animation/useAnimateInternal.d.ts +1 -1
- package/esm/internals/animation/useAnimateInternal.js +1 -1
- package/esm/internals/plugins/corePlugins/useChartInteractionListener/useChartInteractionListener.js +8 -8
- package/esm/internals/plugins/corePlugins/useChartInteractionListener/useChartInteractionListener.types.d.ts +4 -2
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/computeAxisValue.d.ts +9 -11
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/computeAxisValue.js +4 -28
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/createAxisFilterMapper.d.ts +4 -5
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/createAxisFilterMapper.js +3 -24
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/domain.d.ts +20 -0
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/domain.js +77 -0
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisScale.d.ts +4 -65
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisScale.js +7 -104
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisPreview.selectors.d.ts +3 -3
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisPreview.selectors.js +31 -39
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisRendering.selectors.d.ts +166 -6
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisRendering.selectors.js +158 -47
- package/esm/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.js +10 -3
- package/esm/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.selectors.d.ts +4 -4
- package/esm/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.selectors.js +3 -2
- package/esm/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.types.d.ts +6 -0
- package/esm/internals/plugins/featurePlugins/useChartKeyboardNavigation/useChartKeyboardNavigation.js +5 -1
- package/esm/internals/plugins/featurePlugins/useChartKeyboardNavigation/useChartKeyboardNavigation.selectors.d.ts +9 -1
- package/esm/internals/plugins/featurePlugins/useChartKeyboardNavigation/useChartKeyboardNavigation.selectors.js +10 -1
- package/esm/internals/plugins/featurePlugins/useChartKeyboardNavigation/useChartKeyboardNavigation.types.d.ts +2 -1
- package/esm/internals/plugins/featurePlugins/useChartPolarAxis/computeAxisValue.js +2 -2
- package/esm/internals/scaleGuards.d.ts +12 -6
- package/esm/internals/symlogScale.js +5 -0
- package/esm/locales/enUS.js +4 -4
- package/esm/locales/ptBR.js +97 -99
- package/esm/models/axis.d.ts +39 -17
- package/esm/models/axis.js +3 -0
- package/hooks/animation/useAnimate.js +4 -3
- package/hooks/useScale.d.ts +5 -1
- package/index.js +1 -1
- package/internals/animation/useAnimateInternal.d.ts +1 -1
- package/internals/animation/useAnimateInternal.js +1 -1
- package/internals/plugins/corePlugins/useChartInteractionListener/useChartInteractionListener.js +7 -7
- package/internals/plugins/corePlugins/useChartInteractionListener/useChartInteractionListener.types.d.ts +4 -2
- package/internals/plugins/featurePlugins/useChartCartesianAxis/computeAxisValue.d.ts +9 -11
- package/internals/plugins/featurePlugins/useChartCartesianAxis/computeAxisValue.js +4 -28
- package/internals/plugins/featurePlugins/useChartCartesianAxis/createAxisFilterMapper.d.ts +4 -5
- package/internals/plugins/featurePlugins/useChartCartesianAxis/createAxisFilterMapper.js +3 -25
- package/internals/plugins/featurePlugins/useChartCartesianAxis/domain.d.ts +20 -0
- package/internals/plugins/featurePlugins/useChartCartesianAxis/domain.js +84 -0
- package/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisScale.d.ts +4 -65
- package/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisScale.js +8 -108
- package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisPreview.selectors.d.ts +3 -3
- package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisPreview.selectors.js +29 -37
- package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisRendering.selectors.d.ts +166 -6
- package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisRendering.selectors.js +158 -47
- package/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.js +10 -3
- package/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.selectors.d.ts +4 -4
- package/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.selectors.js +3 -2
- package/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.types.d.ts +6 -0
- package/internals/plugins/featurePlugins/useChartKeyboardNavigation/useChartKeyboardNavigation.js +5 -1
- package/internals/plugins/featurePlugins/useChartKeyboardNavigation/useChartKeyboardNavigation.selectors.d.ts +9 -1
- package/internals/plugins/featurePlugins/useChartKeyboardNavigation/useChartKeyboardNavigation.selectors.js +11 -2
- package/internals/plugins/featurePlugins/useChartKeyboardNavigation/useChartKeyboardNavigation.types.d.ts +2 -1
- package/internals/plugins/featurePlugins/useChartPolarAxis/computeAxisValue.js +1 -1
- package/internals/scaleGuards.d.ts +12 -6
- package/internals/symlogScale.js +5 -0
- package/locales/enUS.js +4 -4
- package/locales/ptBR.js +97 -99
- package/models/axis.d.ts +39 -17
- package/models/axis.js +4 -0
- package/package.json +6 -6
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
import { ChartsXAxisProps } from "../models/axis.js";
|
|
2
2
|
import { ChartsText, ChartsTextProps } from "../ChartsText/index.js";
|
|
3
3
|
export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
4
|
-
xScale: import("@mui/x-charts-vendor/d3-scale").ScaleTime<number, number, never> | import("@mui/x-charts-vendor/d3-scale").ScaleLinear<number, number, never> | import("@mui/x-charts-vendor/d3-scale").ScaleLogarithmic<number, number, never> | import("@mui/x-charts-vendor/d3-scale").ScaleSymLog<number, number, never> | import("@mui/x-charts-vendor/d3-scale").ScalePower<number, number, never> | import("@mui/x-charts-vendor/d3-scale").ScaleBand<
|
|
4
|
+
xScale: import("@mui/x-charts-vendor/d3-scale").ScaleTime<number, number, never> | import("@mui/x-charts-vendor/d3-scale").ScaleLinear<number, number, never> | import("@mui/x-charts-vendor/d3-scale").ScaleLogarithmic<number, number, never> | import("@mui/x-charts-vendor/d3-scale").ScaleSymLog<number, number, never> | import("@mui/x-charts-vendor/d3-scale").ScalePower<number, number, never> | import("@mui/x-charts-vendor/d3-scale").ScaleBand<{
|
|
5
|
+
toString(): string;
|
|
6
|
+
}> | import("@mui/x-charts-vendor/d3-scale").ScalePoint<{
|
|
7
|
+
toString(): string;
|
|
8
|
+
}>;
|
|
5
9
|
defaultizedProps: {
|
|
6
10
|
axis?: "x";
|
|
7
11
|
tickLabelMinGap: number;
|
|
@@ -30,8 +34,6 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
30
34
|
id: import("../internals/index.js").AxisId;
|
|
31
35
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
32
36
|
dataKey?: string | undefined;
|
|
33
|
-
min?: (number | Date) | undefined;
|
|
34
|
-
max?: (number | Date) | undefined;
|
|
35
37
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
36
38
|
hideTooltip?: boolean | undefined;
|
|
37
39
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
@@ -71,8 +73,6 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
71
73
|
id: import("../internals/index.js").AxisId;
|
|
72
74
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
73
75
|
dataKey?: string | undefined;
|
|
74
|
-
min?: (number | Date) | undefined;
|
|
75
|
-
max?: (number | Date) | undefined;
|
|
76
76
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
77
77
|
hideTooltip?: boolean | undefined;
|
|
78
78
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
@@ -112,8 +112,6 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
112
112
|
id: import("../internals/index.js").AxisId;
|
|
113
113
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
114
114
|
dataKey?: string | undefined;
|
|
115
|
-
min?: (number | Date) | undefined;
|
|
116
|
-
max?: (number | Date) | undefined;
|
|
117
115
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
118
116
|
hideTooltip?: boolean | undefined;
|
|
119
117
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
@@ -123,7 +121,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
123
121
|
ignoreTooltip?: boolean | undefined;
|
|
124
122
|
offset: number;
|
|
125
123
|
scaleType: "time";
|
|
126
|
-
colorScale?: import("@mui/x-charts-vendor/d3-scale").
|
|
124
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
127
125
|
triggerTooltip?: boolean;
|
|
128
126
|
} | {
|
|
129
127
|
axis?: "x";
|
|
@@ -153,8 +151,6 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
153
151
|
id: import("../internals/index.js").AxisId;
|
|
154
152
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
155
153
|
dataKey?: string | undefined;
|
|
156
|
-
min?: (number | Date) | undefined;
|
|
157
|
-
max?: (number | Date) | undefined;
|
|
158
154
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
159
155
|
hideTooltip?: boolean | undefined;
|
|
160
156
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
@@ -164,7 +160,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
164
160
|
ignoreTooltip?: boolean | undefined;
|
|
165
161
|
offset: number;
|
|
166
162
|
scaleType: "time";
|
|
167
|
-
colorScale?: import("@mui/x-charts-vendor/d3-scale").
|
|
163
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
168
164
|
triggerTooltip?: boolean;
|
|
169
165
|
} | {
|
|
170
166
|
axis?: "x";
|
|
@@ -194,8 +190,6 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
194
190
|
id: import("../internals/index.js").AxisId;
|
|
195
191
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
196
192
|
dataKey?: string | undefined;
|
|
197
|
-
min?: (number | Date) | undefined;
|
|
198
|
-
max?: (number | Date) | undefined;
|
|
199
193
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
200
194
|
hideTooltip?: boolean | undefined;
|
|
201
195
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
@@ -235,8 +229,6 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
235
229
|
id: import("../internals/index.js").AxisId;
|
|
236
230
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
237
231
|
dataKey?: string | undefined;
|
|
238
|
-
min?: (number | Date) | undefined;
|
|
239
|
-
max?: (number | Date) | undefined;
|
|
240
232
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
241
233
|
hideTooltip?: boolean | undefined;
|
|
242
234
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
@@ -276,8 +268,6 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
276
268
|
id: import("../internals/index.js").AxisId;
|
|
277
269
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
278
270
|
dataKey?: string | undefined;
|
|
279
|
-
min?: (number | Date) | undefined;
|
|
280
|
-
max?: (number | Date) | undefined;
|
|
281
271
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
282
272
|
hideTooltip?: boolean | undefined;
|
|
283
273
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
@@ -287,7 +277,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
287
277
|
ignoreTooltip?: boolean | undefined;
|
|
288
278
|
offset: number;
|
|
289
279
|
scaleType: "time";
|
|
290
|
-
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
280
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
291
281
|
triggerTooltip?: boolean;
|
|
292
282
|
} | {
|
|
293
283
|
axis?: "x";
|
|
@@ -317,8 +307,6 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
317
307
|
id: import("../internals/index.js").AxisId;
|
|
318
308
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
319
309
|
dataKey?: string | undefined;
|
|
320
|
-
min?: (number | Date) | undefined;
|
|
321
|
-
max?: (number | Date) | undefined;
|
|
322
310
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
323
311
|
hideTooltip?: boolean | undefined;
|
|
324
312
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
@@ -328,7 +316,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
328
316
|
ignoreTooltip?: boolean | undefined;
|
|
329
317
|
offset: number;
|
|
330
318
|
scaleType: "time";
|
|
331
|
-
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
319
|
+
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>;
|
|
332
320
|
triggerTooltip?: boolean;
|
|
333
321
|
} | {
|
|
334
322
|
axis?: "x";
|
|
@@ -358,8 +346,6 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
358
346
|
id: import("../internals/index.js").AxisId;
|
|
359
347
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
360
348
|
dataKey?: string | undefined;
|
|
361
|
-
min?: (number | Date) | undefined;
|
|
362
|
-
max?: (number | Date) | undefined;
|
|
363
349
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
364
350
|
hideTooltip?: boolean | undefined;
|
|
365
351
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
@@ -369,7 +355,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
369
355
|
ignoreTooltip?: boolean | undefined;
|
|
370
356
|
offset: number;
|
|
371
357
|
scaleType: "time";
|
|
372
|
-
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
358
|
+
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>;
|
|
373
359
|
triggerTooltip?: boolean;
|
|
374
360
|
} | {
|
|
375
361
|
axis?: "x";
|
|
@@ -399,8 +385,6 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
399
385
|
id: import("../internals/index.js").AxisId;
|
|
400
386
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
401
387
|
dataKey?: string | undefined;
|
|
402
|
-
min?: (number | Date) | undefined;
|
|
403
|
-
max?: (number | Date) | undefined;
|
|
404
388
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
405
389
|
hideTooltip?: boolean | undefined;
|
|
406
390
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
@@ -440,8 +424,6 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
440
424
|
id: import("../internals/index.js").AxisId;
|
|
441
425
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
442
426
|
dataKey?: string | undefined;
|
|
443
|
-
min?: (number | Date) | undefined;
|
|
444
|
-
max?: (number | Date) | undefined;
|
|
445
427
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
446
428
|
hideTooltip?: boolean | undefined;
|
|
447
429
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
@@ -481,8 +463,6 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
481
463
|
id: import("../internals/index.js").AxisId;
|
|
482
464
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
483
465
|
dataKey?: string | undefined;
|
|
484
|
-
min?: (number | Date) | undefined;
|
|
485
|
-
max?: (number | Date) | undefined;
|
|
486
466
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
487
467
|
hideTooltip?: boolean | undefined;
|
|
488
468
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
@@ -492,7 +472,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
492
472
|
ignoreTooltip?: boolean | undefined;
|
|
493
473
|
offset: number;
|
|
494
474
|
scaleType: "linear";
|
|
495
|
-
colorScale?: import("@mui/x-charts-vendor/d3-scale").
|
|
475
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
496
476
|
triggerTooltip?: boolean;
|
|
497
477
|
} | {
|
|
498
478
|
axis?: "x";
|
|
@@ -522,8 +502,6 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
522
502
|
id: import("../internals/index.js").AxisId;
|
|
523
503
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
524
504
|
dataKey?: string | undefined;
|
|
525
|
-
min?: (number | Date) | undefined;
|
|
526
|
-
max?: (number | Date) | undefined;
|
|
527
505
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
528
506
|
hideTooltip?: boolean | undefined;
|
|
529
507
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
@@ -533,7 +511,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
533
511
|
ignoreTooltip?: boolean | undefined;
|
|
534
512
|
offset: number;
|
|
535
513
|
scaleType: "linear";
|
|
536
|
-
colorScale?: import("@mui/x-charts-vendor/d3-scale").
|
|
514
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
537
515
|
triggerTooltip?: boolean;
|
|
538
516
|
} | {
|
|
539
517
|
axis?: "x";
|
|
@@ -563,8 +541,6 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
563
541
|
id: import("../internals/index.js").AxisId;
|
|
564
542
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
565
543
|
dataKey?: string | undefined;
|
|
566
|
-
min?: (number | Date) | undefined;
|
|
567
|
-
max?: (number | Date) | undefined;
|
|
568
544
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
569
545
|
hideTooltip?: boolean | undefined;
|
|
570
546
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
@@ -604,8 +580,6 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
604
580
|
id: import("../internals/index.js").AxisId;
|
|
605
581
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
606
582
|
dataKey?: string | undefined;
|
|
607
|
-
min?: (number | Date) | undefined;
|
|
608
|
-
max?: (number | Date) | undefined;
|
|
609
583
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
610
584
|
hideTooltip?: boolean | undefined;
|
|
611
585
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
@@ -645,8 +619,6 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
645
619
|
id: import("../internals/index.js").AxisId;
|
|
646
620
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
647
621
|
dataKey?: string | undefined;
|
|
648
|
-
min?: (number | Date) | undefined;
|
|
649
|
-
max?: (number | Date) | undefined;
|
|
650
622
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
651
623
|
hideTooltip?: boolean | undefined;
|
|
652
624
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
@@ -656,7 +628,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
656
628
|
ignoreTooltip?: boolean | undefined;
|
|
657
629
|
offset: number;
|
|
658
630
|
scaleType: "linear";
|
|
659
|
-
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
631
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
660
632
|
triggerTooltip?: boolean;
|
|
661
633
|
} | {
|
|
662
634
|
axis?: "x";
|
|
@@ -686,8 +658,6 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
686
658
|
id: import("../internals/index.js").AxisId;
|
|
687
659
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
688
660
|
dataKey?: string | undefined;
|
|
689
|
-
min?: (number | Date) | undefined;
|
|
690
|
-
max?: (number | Date) | undefined;
|
|
691
661
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
692
662
|
hideTooltip?: boolean | undefined;
|
|
693
663
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
@@ -697,7 +667,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
697
667
|
ignoreTooltip?: boolean | undefined;
|
|
698
668
|
offset: number;
|
|
699
669
|
scaleType: "linear";
|
|
700
|
-
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
670
|
+
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>;
|
|
701
671
|
triggerTooltip?: boolean;
|
|
702
672
|
} | {
|
|
703
673
|
axis?: "x";
|
|
@@ -727,8 +697,6 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
727
697
|
id: import("../internals/index.js").AxisId;
|
|
728
698
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
729
699
|
dataKey?: string | undefined;
|
|
730
|
-
min?: (number | Date) | undefined;
|
|
731
|
-
max?: (number | Date) | undefined;
|
|
732
700
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
733
701
|
hideTooltip?: boolean | undefined;
|
|
734
702
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
@@ -738,7 +706,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
738
706
|
ignoreTooltip?: boolean | undefined;
|
|
739
707
|
offset: number;
|
|
740
708
|
scaleType: "linear";
|
|
741
|
-
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
709
|
+
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>;
|
|
742
710
|
triggerTooltip?: boolean;
|
|
743
711
|
} | {
|
|
744
712
|
axis?: "x";
|
|
@@ -768,9 +736,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
768
736
|
id: import("../internals/index.js").AxisId;
|
|
769
737
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
770
738
|
dataKey?: string | undefined;
|
|
771
|
-
|
|
772
|
-
max?: (number | Date) | undefined;
|
|
773
|
-
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
739
|
+
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
774
740
|
hideTooltip?: boolean | undefined;
|
|
775
741
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
776
742
|
min: number;
|
|
@@ -778,10 +744,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
778
744
|
}) | undefined;
|
|
779
745
|
ignoreTooltip?: boolean | undefined;
|
|
780
746
|
offset: number;
|
|
781
|
-
scaleType: "
|
|
782
|
-
categoryGapRatio: number;
|
|
783
|
-
barGapRatio: number;
|
|
784
|
-
groups?: import("../internals/index.js").AxisGroup[];
|
|
747
|
+
scaleType: "log";
|
|
785
748
|
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
786
749
|
triggerTooltip?: boolean;
|
|
787
750
|
} | {
|
|
@@ -812,9 +775,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
812
775
|
id: import("../internals/index.js").AxisId;
|
|
813
776
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
814
777
|
dataKey?: string | undefined;
|
|
815
|
-
|
|
816
|
-
max?: (number | Date) | undefined;
|
|
817
|
-
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
778
|
+
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
818
779
|
hideTooltip?: boolean | undefined;
|
|
819
780
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
820
781
|
min: number;
|
|
@@ -822,10 +783,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
822
783
|
}) | undefined;
|
|
823
784
|
ignoreTooltip?: boolean | undefined;
|
|
824
785
|
offset: number;
|
|
825
|
-
scaleType: "
|
|
826
|
-
categoryGapRatio: number;
|
|
827
|
-
barGapRatio: number;
|
|
828
|
-
groups?: import("../internals/index.js").AxisGroup[];
|
|
786
|
+
scaleType: "log";
|
|
829
787
|
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
830
788
|
triggerTooltip?: boolean;
|
|
831
789
|
} | {
|
|
@@ -856,9 +814,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
856
814
|
id: import("../internals/index.js").AxisId;
|
|
857
815
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
858
816
|
dataKey?: string | undefined;
|
|
859
|
-
|
|
860
|
-
max?: (number | Date) | undefined;
|
|
861
|
-
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
817
|
+
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
862
818
|
hideTooltip?: boolean | undefined;
|
|
863
819
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
864
820
|
min: number;
|
|
@@ -866,11 +822,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
866
822
|
}) | undefined;
|
|
867
823
|
ignoreTooltip?: boolean | undefined;
|
|
868
824
|
offset: number;
|
|
869
|
-
scaleType: "
|
|
870
|
-
|
|
871
|
-
barGapRatio: number;
|
|
872
|
-
groups?: import("../internals/index.js").AxisGroup[];
|
|
873
|
-
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>;
|
|
825
|
+
scaleType: "log";
|
|
826
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
874
827
|
triggerTooltip?: boolean;
|
|
875
828
|
} | {
|
|
876
829
|
axis?: "x";
|
|
@@ -900,9 +853,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
900
853
|
id: import("../internals/index.js").AxisId;
|
|
901
854
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
902
855
|
dataKey?: string | undefined;
|
|
903
|
-
|
|
904
|
-
max?: (number | Date) | undefined;
|
|
905
|
-
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
856
|
+
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
906
857
|
hideTooltip?: boolean | undefined;
|
|
907
858
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
908
859
|
min: number;
|
|
@@ -910,11 +861,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
910
861
|
}) | undefined;
|
|
911
862
|
ignoreTooltip?: boolean | undefined;
|
|
912
863
|
offset: number;
|
|
913
|
-
scaleType: "
|
|
914
|
-
|
|
915
|
-
barGapRatio: number;
|
|
916
|
-
groups?: import("../internals/index.js").AxisGroup[];
|
|
917
|
-
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>;
|
|
864
|
+
scaleType: "log";
|
|
865
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
918
866
|
triggerTooltip?: boolean;
|
|
919
867
|
} | {
|
|
920
868
|
axis?: "x";
|
|
@@ -944,9 +892,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
944
892
|
id: import("../internals/index.js").AxisId;
|
|
945
893
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
946
894
|
dataKey?: string | undefined;
|
|
947
|
-
|
|
948
|
-
max?: (number | Date) | undefined;
|
|
949
|
-
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
895
|
+
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
950
896
|
hideTooltip?: boolean | undefined;
|
|
951
897
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
952
898
|
min: number;
|
|
@@ -954,10 +900,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
954
900
|
}) | undefined;
|
|
955
901
|
ignoreTooltip?: boolean | undefined;
|
|
956
902
|
offset: number;
|
|
957
|
-
scaleType: "
|
|
958
|
-
categoryGapRatio: number;
|
|
959
|
-
barGapRatio: number;
|
|
960
|
-
groups?: import("../internals/index.js").AxisGroup[];
|
|
903
|
+
scaleType: "log";
|
|
961
904
|
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
962
905
|
triggerTooltip?: boolean;
|
|
963
906
|
} | {
|
|
@@ -988,9 +931,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
988
931
|
id: import("../internals/index.js").AxisId;
|
|
989
932
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
990
933
|
dataKey?: string | undefined;
|
|
991
|
-
|
|
992
|
-
max?: (number | Date) | undefined;
|
|
993
|
-
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
934
|
+
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
994
935
|
hideTooltip?: boolean | undefined;
|
|
995
936
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
996
937
|
min: number;
|
|
@@ -998,10 +939,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
998
939
|
}) | undefined;
|
|
999
940
|
ignoreTooltip?: boolean | undefined;
|
|
1000
941
|
offset: number;
|
|
1001
|
-
scaleType: "
|
|
1002
|
-
categoryGapRatio: number;
|
|
1003
|
-
barGapRatio: number;
|
|
1004
|
-
groups?: import("../internals/index.js").AxisGroup[];
|
|
942
|
+
scaleType: "log";
|
|
1005
943
|
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
1006
944
|
triggerTooltip?: boolean;
|
|
1007
945
|
} | {
|
|
@@ -1032,9 +970,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1032
970
|
id: import("../internals/index.js").AxisId;
|
|
1033
971
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1034
972
|
dataKey?: string | undefined;
|
|
1035
|
-
|
|
1036
|
-
max?: (number | Date) | undefined;
|
|
1037
|
-
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
973
|
+
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
1038
974
|
hideTooltip?: boolean | undefined;
|
|
1039
975
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
1040
976
|
min: number;
|
|
@@ -1042,11 +978,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1042
978
|
}) | undefined;
|
|
1043
979
|
ignoreTooltip?: boolean | undefined;
|
|
1044
980
|
offset: number;
|
|
1045
|
-
scaleType: "
|
|
1046
|
-
|
|
1047
|
-
barGapRatio: number;
|
|
1048
|
-
groups?: import("../internals/index.js").AxisGroup[];
|
|
1049
|
-
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
981
|
+
scaleType: "log";
|
|
982
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
1050
983
|
triggerTooltip?: boolean;
|
|
1051
984
|
} | {
|
|
1052
985
|
axis?: "x";
|
|
@@ -1076,9 +1009,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1076
1009
|
id: import("../internals/index.js").AxisId;
|
|
1077
1010
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1078
1011
|
dataKey?: string | undefined;
|
|
1079
|
-
|
|
1080
|
-
max?: (number | Date) | undefined;
|
|
1081
|
-
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
1012
|
+
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
1082
1013
|
hideTooltip?: boolean | undefined;
|
|
1083
1014
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
1084
1015
|
min: number;
|
|
@@ -1086,11 +1017,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1086
1017
|
}) | undefined;
|
|
1087
1018
|
ignoreTooltip?: boolean | undefined;
|
|
1088
1019
|
offset: number;
|
|
1089
|
-
scaleType: "
|
|
1090
|
-
|
|
1091
|
-
barGapRatio: number;
|
|
1092
|
-
groups?: import("../internals/index.js").AxisGroup[];
|
|
1093
|
-
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
1020
|
+
scaleType: "log";
|
|
1021
|
+
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>;
|
|
1094
1022
|
triggerTooltip?: boolean;
|
|
1095
1023
|
} | {
|
|
1096
1024
|
axis?: "x";
|
|
@@ -1120,9 +1048,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1120
1048
|
id: import("../internals/index.js").AxisId;
|
|
1121
1049
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1122
1050
|
dataKey?: string | undefined;
|
|
1123
|
-
|
|
1124
|
-
max?: (number | Date) | undefined;
|
|
1125
|
-
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
1051
|
+
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
1126
1052
|
hideTooltip?: boolean | undefined;
|
|
1127
1053
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
1128
1054
|
min: number;
|
|
@@ -1130,11 +1056,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1130
1056
|
}) | undefined;
|
|
1131
1057
|
ignoreTooltip?: boolean | undefined;
|
|
1132
1058
|
offset: number;
|
|
1133
|
-
scaleType: "
|
|
1134
|
-
|
|
1135
|
-
barGapRatio: number;
|
|
1136
|
-
groups?: import("../internals/index.js").AxisGroup[];
|
|
1137
|
-
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
1059
|
+
scaleType: "log";
|
|
1060
|
+
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>;
|
|
1138
1061
|
triggerTooltip?: boolean;
|
|
1139
1062
|
} | {
|
|
1140
1063
|
axis?: "x";
|
|
@@ -1164,9 +1087,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1164
1087
|
id: import("../internals/index.js").AxisId;
|
|
1165
1088
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1166
1089
|
dataKey?: string | undefined;
|
|
1167
|
-
|
|
1168
|
-
max?: (number | Date) | undefined;
|
|
1169
|
-
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
1090
|
+
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
1170
1091
|
hideTooltip?: boolean | undefined;
|
|
1171
1092
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
1172
1093
|
min: number;
|
|
@@ -1174,8 +1095,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1174
1095
|
}) | undefined;
|
|
1175
1096
|
ignoreTooltip?: boolean | undefined;
|
|
1176
1097
|
offset: number;
|
|
1177
|
-
scaleType: "
|
|
1178
|
-
|
|
1098
|
+
scaleType: "symlog";
|
|
1099
|
+
constant?: number;
|
|
1179
1100
|
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
1180
1101
|
triggerTooltip?: boolean;
|
|
1181
1102
|
} | {
|
|
@@ -1206,9 +1127,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1206
1127
|
id: import("../internals/index.js").AxisId;
|
|
1207
1128
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1208
1129
|
dataKey?: string | undefined;
|
|
1209
|
-
|
|
1210
|
-
max?: (number | Date) | undefined;
|
|
1211
|
-
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
1130
|
+
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
1212
1131
|
hideTooltip?: boolean | undefined;
|
|
1213
1132
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
1214
1133
|
min: number;
|
|
@@ -1216,8 +1135,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1216
1135
|
}) | undefined;
|
|
1217
1136
|
ignoreTooltip?: boolean | undefined;
|
|
1218
1137
|
offset: number;
|
|
1219
|
-
scaleType: "
|
|
1220
|
-
|
|
1138
|
+
scaleType: "symlog";
|
|
1139
|
+
constant?: number;
|
|
1221
1140
|
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
1222
1141
|
triggerTooltip?: boolean;
|
|
1223
1142
|
} | {
|
|
@@ -1248,9 +1167,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1248
1167
|
id: import("../internals/index.js").AxisId;
|
|
1249
1168
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1250
1169
|
dataKey?: string | undefined;
|
|
1251
|
-
|
|
1252
|
-
max?: (number | Date) | undefined;
|
|
1253
|
-
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
1170
|
+
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
1254
1171
|
hideTooltip?: boolean | undefined;
|
|
1255
1172
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
1256
1173
|
min: number;
|
|
@@ -1258,9 +1175,9 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1258
1175
|
}) | undefined;
|
|
1259
1176
|
ignoreTooltip?: boolean | undefined;
|
|
1260
1177
|
offset: number;
|
|
1261
|
-
scaleType: "
|
|
1262
|
-
|
|
1263
|
-
colorScale?: import("@mui/x-charts-vendor/d3-scale").
|
|
1178
|
+
scaleType: "symlog";
|
|
1179
|
+
constant?: number;
|
|
1180
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
1264
1181
|
triggerTooltip?: boolean;
|
|
1265
1182
|
} | {
|
|
1266
1183
|
axis?: "x";
|
|
@@ -1290,9 +1207,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1290
1207
|
id: import("../internals/index.js").AxisId;
|
|
1291
1208
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1292
1209
|
dataKey?: string | undefined;
|
|
1293
|
-
|
|
1294
|
-
max?: (number | Date) | undefined;
|
|
1295
|
-
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
1210
|
+
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
1296
1211
|
hideTooltip?: boolean | undefined;
|
|
1297
1212
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
1298
1213
|
min: number;
|
|
@@ -1300,9 +1215,9 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1300
1215
|
}) | undefined;
|
|
1301
1216
|
ignoreTooltip?: boolean | undefined;
|
|
1302
1217
|
offset: number;
|
|
1303
|
-
scaleType: "
|
|
1304
|
-
|
|
1305
|
-
colorScale?: import("@mui/x-charts-vendor/d3-scale").
|
|
1218
|
+
scaleType: "symlog";
|
|
1219
|
+
constant?: number;
|
|
1220
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
1306
1221
|
triggerTooltip?: boolean;
|
|
1307
1222
|
} | {
|
|
1308
1223
|
axis?: "x";
|
|
@@ -1332,9 +1247,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1332
1247
|
id: import("../internals/index.js").AxisId;
|
|
1333
1248
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1334
1249
|
dataKey?: string | undefined;
|
|
1335
|
-
|
|
1336
|
-
max?: (number | Date) | undefined;
|
|
1337
|
-
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
1250
|
+
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
1338
1251
|
hideTooltip?: boolean | undefined;
|
|
1339
1252
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
1340
1253
|
min: number;
|
|
@@ -1342,8 +1255,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1342
1255
|
}) | undefined;
|
|
1343
1256
|
ignoreTooltip?: boolean | undefined;
|
|
1344
1257
|
offset: number;
|
|
1345
|
-
scaleType: "
|
|
1346
|
-
|
|
1258
|
+
scaleType: "symlog";
|
|
1259
|
+
constant?: number;
|
|
1347
1260
|
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
1348
1261
|
triggerTooltip?: boolean;
|
|
1349
1262
|
} | {
|
|
@@ -1374,9 +1287,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1374
1287
|
id: import("../internals/index.js").AxisId;
|
|
1375
1288
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1376
1289
|
dataKey?: string | undefined;
|
|
1377
|
-
|
|
1378
|
-
max?: (number | Date) | undefined;
|
|
1379
|
-
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
1290
|
+
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
1380
1291
|
hideTooltip?: boolean | undefined;
|
|
1381
1292
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
1382
1293
|
min: number;
|
|
@@ -1384,8 +1295,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1384
1295
|
}) | undefined;
|
|
1385
1296
|
ignoreTooltip?: boolean | undefined;
|
|
1386
1297
|
offset: number;
|
|
1387
|
-
scaleType: "
|
|
1388
|
-
|
|
1298
|
+
scaleType: "symlog";
|
|
1299
|
+
constant?: number;
|
|
1389
1300
|
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
1390
1301
|
triggerTooltip?: boolean;
|
|
1391
1302
|
} | {
|
|
@@ -1416,9 +1327,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1416
1327
|
id: import("../internals/index.js").AxisId;
|
|
1417
1328
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1418
1329
|
dataKey?: string | undefined;
|
|
1419
|
-
|
|
1420
|
-
max?: (number | Date) | undefined;
|
|
1421
|
-
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
1330
|
+
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
1422
1331
|
hideTooltip?: boolean | undefined;
|
|
1423
1332
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
1424
1333
|
min: number;
|
|
@@ -1426,9 +1335,9 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1426
1335
|
}) | undefined;
|
|
1427
1336
|
ignoreTooltip?: boolean | undefined;
|
|
1428
1337
|
offset: number;
|
|
1429
|
-
scaleType: "
|
|
1430
|
-
|
|
1431
|
-
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
1338
|
+
scaleType: "symlog";
|
|
1339
|
+
constant?: number;
|
|
1340
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
1432
1341
|
triggerTooltip?: boolean;
|
|
1433
1342
|
} | {
|
|
1434
1343
|
axis?: "x";
|
|
@@ -1458,9 +1367,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1458
1367
|
id: import("../internals/index.js").AxisId;
|
|
1459
1368
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1460
1369
|
dataKey?: string | undefined;
|
|
1461
|
-
|
|
1462
|
-
max?: (number | Date) | undefined;
|
|
1463
|
-
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
1370
|
+
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
1464
1371
|
hideTooltip?: boolean | undefined;
|
|
1465
1372
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
1466
1373
|
min: number;
|
|
@@ -1468,9 +1375,9 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1468
1375
|
}) | undefined;
|
|
1469
1376
|
ignoreTooltip?: boolean | undefined;
|
|
1470
1377
|
offset: number;
|
|
1471
|
-
scaleType: "
|
|
1472
|
-
|
|
1473
|
-
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
1378
|
+
scaleType: "symlog";
|
|
1379
|
+
constant?: number;
|
|
1380
|
+
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>;
|
|
1474
1381
|
triggerTooltip?: boolean;
|
|
1475
1382
|
} | {
|
|
1476
1383
|
axis?: "x";
|
|
@@ -1500,9 +1407,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1500
1407
|
id: import("../internals/index.js").AxisId;
|
|
1501
1408
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1502
1409
|
dataKey?: string | undefined;
|
|
1503
|
-
|
|
1504
|
-
max?: (number | Date) | undefined;
|
|
1505
|
-
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
1410
|
+
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
1506
1411
|
hideTooltip?: boolean | undefined;
|
|
1507
1412
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
1508
1413
|
min: number;
|
|
@@ -1510,9 +1415,9 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1510
1415
|
}) | undefined;
|
|
1511
1416
|
ignoreTooltip?: boolean | undefined;
|
|
1512
1417
|
offset: number;
|
|
1513
|
-
scaleType: "
|
|
1514
|
-
|
|
1515
|
-
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
1418
|
+
scaleType: "symlog";
|
|
1419
|
+
constant?: number;
|
|
1420
|
+
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>;
|
|
1516
1421
|
triggerTooltip?: boolean;
|
|
1517
1422
|
} | {
|
|
1518
1423
|
axis?: "x";
|
|
@@ -1542,8 +1447,6 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1542
1447
|
id: import("../internals/index.js").AxisId;
|
|
1543
1448
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1544
1449
|
dataKey?: string | undefined;
|
|
1545
|
-
min?: (number | Date) | undefined;
|
|
1546
|
-
max?: (number | Date) | undefined;
|
|
1547
1450
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
1548
1451
|
hideTooltip?: boolean | undefined;
|
|
1549
1452
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
@@ -1552,7 +1455,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1552
1455
|
}) | undefined;
|
|
1553
1456
|
ignoreTooltip?: boolean | undefined;
|
|
1554
1457
|
offset: number;
|
|
1555
|
-
scaleType: "
|
|
1458
|
+
scaleType: "pow";
|
|
1556
1459
|
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
1557
1460
|
triggerTooltip?: boolean;
|
|
1558
1461
|
} | {
|
|
@@ -1583,8 +1486,6 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1583
1486
|
id: import("../internals/index.js").AxisId;
|
|
1584
1487
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1585
1488
|
dataKey?: string | undefined;
|
|
1586
|
-
min?: (number | Date) | undefined;
|
|
1587
|
-
max?: (number | Date) | undefined;
|
|
1588
1489
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
1589
1490
|
hideTooltip?: boolean | undefined;
|
|
1590
1491
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
@@ -1593,7 +1494,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1593
1494
|
}) | undefined;
|
|
1594
1495
|
ignoreTooltip?: boolean | undefined;
|
|
1595
1496
|
offset: number;
|
|
1596
|
-
scaleType: "
|
|
1497
|
+
scaleType: "pow";
|
|
1597
1498
|
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
1598
1499
|
triggerTooltip?: boolean;
|
|
1599
1500
|
} | {
|
|
@@ -1624,8 +1525,6 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1624
1525
|
id: import("../internals/index.js").AxisId;
|
|
1625
1526
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1626
1527
|
dataKey?: string | undefined;
|
|
1627
|
-
min?: (number | Date) | undefined;
|
|
1628
|
-
max?: (number | Date) | undefined;
|
|
1629
1528
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
1630
1529
|
hideTooltip?: boolean | undefined;
|
|
1631
1530
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
@@ -1634,8 +1533,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1634
1533
|
}) | undefined;
|
|
1635
1534
|
ignoreTooltip?: boolean | undefined;
|
|
1636
1535
|
offset: number;
|
|
1637
|
-
scaleType: "
|
|
1638
|
-
colorScale?: import("@mui/x-charts-vendor/d3-scale").
|
|
1536
|
+
scaleType: "pow";
|
|
1537
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
1639
1538
|
triggerTooltip?: boolean;
|
|
1640
1539
|
} | {
|
|
1641
1540
|
axis?: "x";
|
|
@@ -1665,8 +1564,6 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1665
1564
|
id: import("../internals/index.js").AxisId;
|
|
1666
1565
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1667
1566
|
dataKey?: string | undefined;
|
|
1668
|
-
min?: (number | Date) | undefined;
|
|
1669
|
-
max?: (number | Date) | undefined;
|
|
1670
1567
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
1671
1568
|
hideTooltip?: boolean | undefined;
|
|
1672
1569
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
@@ -1675,8 +1572,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1675
1572
|
}) | undefined;
|
|
1676
1573
|
ignoreTooltip?: boolean | undefined;
|
|
1677
1574
|
offset: number;
|
|
1678
|
-
scaleType: "
|
|
1679
|
-
colorScale?: import("@mui/x-charts-vendor/d3-scale").
|
|
1575
|
+
scaleType: "pow";
|
|
1576
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
1680
1577
|
triggerTooltip?: boolean;
|
|
1681
1578
|
} | {
|
|
1682
1579
|
axis?: "x";
|
|
@@ -1706,8 +1603,6 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1706
1603
|
id: import("../internals/index.js").AxisId;
|
|
1707
1604
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1708
1605
|
dataKey?: string | undefined;
|
|
1709
|
-
min?: (number | Date) | undefined;
|
|
1710
|
-
max?: (number | Date) | undefined;
|
|
1711
1606
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
1712
1607
|
hideTooltip?: boolean | undefined;
|
|
1713
1608
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
@@ -1716,7 +1611,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1716
1611
|
}) | undefined;
|
|
1717
1612
|
ignoreTooltip?: boolean | undefined;
|
|
1718
1613
|
offset: number;
|
|
1719
|
-
scaleType: "
|
|
1614
|
+
scaleType: "pow";
|
|
1720
1615
|
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
1721
1616
|
triggerTooltip?: boolean;
|
|
1722
1617
|
} | {
|
|
@@ -1747,8 +1642,6 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1747
1642
|
id: import("../internals/index.js").AxisId;
|
|
1748
1643
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1749
1644
|
dataKey?: string | undefined;
|
|
1750
|
-
min?: (number | Date) | undefined;
|
|
1751
|
-
max?: (number | Date) | undefined;
|
|
1752
1645
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
1753
1646
|
hideTooltip?: boolean | undefined;
|
|
1754
1647
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
@@ -1757,7 +1650,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1757
1650
|
}) | undefined;
|
|
1758
1651
|
ignoreTooltip?: boolean | undefined;
|
|
1759
1652
|
offset: number;
|
|
1760
|
-
scaleType: "
|
|
1653
|
+
scaleType: "pow";
|
|
1761
1654
|
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
1762
1655
|
triggerTooltip?: boolean;
|
|
1763
1656
|
} | {
|
|
@@ -1788,8 +1681,6 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1788
1681
|
id: import("../internals/index.js").AxisId;
|
|
1789
1682
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1790
1683
|
dataKey?: string | undefined;
|
|
1791
|
-
min?: (number | Date) | undefined;
|
|
1792
|
-
max?: (number | Date) | undefined;
|
|
1793
1684
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
1794
1685
|
hideTooltip?: boolean | undefined;
|
|
1795
1686
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
@@ -1798,8 +1689,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1798
1689
|
}) | undefined;
|
|
1799
1690
|
ignoreTooltip?: boolean | undefined;
|
|
1800
1691
|
offset: number;
|
|
1801
|
-
scaleType: "
|
|
1802
|
-
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
1692
|
+
scaleType: "pow";
|
|
1693
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
1803
1694
|
triggerTooltip?: boolean;
|
|
1804
1695
|
} | {
|
|
1805
1696
|
axis?: "x";
|
|
@@ -1829,8 +1720,6 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1829
1720
|
id: import("../internals/index.js").AxisId;
|
|
1830
1721
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1831
1722
|
dataKey?: string | undefined;
|
|
1832
|
-
min?: (number | Date) | undefined;
|
|
1833
|
-
max?: (number | Date) | undefined;
|
|
1834
1723
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
1835
1724
|
hideTooltip?: boolean | undefined;
|
|
1836
1725
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
@@ -1839,8 +1728,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1839
1728
|
}) | undefined;
|
|
1840
1729
|
ignoreTooltip?: boolean | undefined;
|
|
1841
1730
|
offset: number;
|
|
1842
|
-
scaleType: "
|
|
1843
|
-
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
1731
|
+
scaleType: "pow";
|
|
1732
|
+
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>;
|
|
1844
1733
|
triggerTooltip?: boolean;
|
|
1845
1734
|
} | {
|
|
1846
1735
|
axis?: "x";
|
|
@@ -1870,8 +1759,6 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1870
1759
|
id: import("../internals/index.js").AxisId;
|
|
1871
1760
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1872
1761
|
dataKey?: string | undefined;
|
|
1873
|
-
min?: (number | Date) | undefined;
|
|
1874
|
-
max?: (number | Date) | undefined;
|
|
1875
1762
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
1876
1763
|
hideTooltip?: boolean | undefined;
|
|
1877
1764
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
@@ -1880,8 +1767,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1880
1767
|
}) | undefined;
|
|
1881
1768
|
ignoreTooltip?: boolean | undefined;
|
|
1882
1769
|
offset: number;
|
|
1883
|
-
scaleType: "
|
|
1884
|
-
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
1770
|
+
scaleType: "pow";
|
|
1771
|
+
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>;
|
|
1885
1772
|
triggerTooltip?: boolean;
|
|
1886
1773
|
} | {
|
|
1887
1774
|
axis?: "x";
|
|
@@ -1911,8 +1798,6 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1911
1798
|
id: import("../internals/index.js").AxisId;
|
|
1912
1799
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1913
1800
|
dataKey?: string | undefined;
|
|
1914
|
-
min?: (number | Date) | undefined;
|
|
1915
|
-
max?: (number | Date) | undefined;
|
|
1916
1801
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
1917
1802
|
hideTooltip?: boolean | undefined;
|
|
1918
1803
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
@@ -1921,8 +1806,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1921
1806
|
}) | undefined;
|
|
1922
1807
|
ignoreTooltip?: boolean | undefined;
|
|
1923
1808
|
offset: number;
|
|
1924
|
-
scaleType: "
|
|
1925
|
-
constant?: number;
|
|
1809
|
+
scaleType: "sqrt";
|
|
1926
1810
|
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
1927
1811
|
triggerTooltip?: boolean;
|
|
1928
1812
|
} | {
|
|
@@ -1953,8 +1837,6 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1953
1837
|
id: import("../internals/index.js").AxisId;
|
|
1954
1838
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1955
1839
|
dataKey?: string | undefined;
|
|
1956
|
-
min?: (number | Date) | undefined;
|
|
1957
|
-
max?: (number | Date) | undefined;
|
|
1958
1840
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
1959
1841
|
hideTooltip?: boolean | undefined;
|
|
1960
1842
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
@@ -1963,8 +1845,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1963
1845
|
}) | undefined;
|
|
1964
1846
|
ignoreTooltip?: boolean | undefined;
|
|
1965
1847
|
offset: number;
|
|
1966
|
-
scaleType: "
|
|
1967
|
-
constant?: number;
|
|
1848
|
+
scaleType: "sqrt";
|
|
1968
1849
|
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
1969
1850
|
triggerTooltip?: boolean;
|
|
1970
1851
|
} | {
|
|
@@ -1995,8 +1876,6 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1995
1876
|
id: import("../internals/index.js").AxisId;
|
|
1996
1877
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1997
1878
|
dataKey?: string | undefined;
|
|
1998
|
-
min?: (number | Date) | undefined;
|
|
1999
|
-
max?: (number | Date) | undefined;
|
|
2000
1879
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2001
1880
|
hideTooltip?: boolean | undefined;
|
|
2002
1881
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
@@ -2005,9 +1884,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
2005
1884
|
}) | undefined;
|
|
2006
1885
|
ignoreTooltip?: boolean | undefined;
|
|
2007
1886
|
offset: number;
|
|
2008
|
-
scaleType: "
|
|
2009
|
-
|
|
2010
|
-
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>;
|
|
1887
|
+
scaleType: "sqrt";
|
|
1888
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
2011
1889
|
triggerTooltip?: boolean;
|
|
2012
1890
|
} | {
|
|
2013
1891
|
axis?: "x";
|
|
@@ -2037,8 +1915,6 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
2037
1915
|
id: import("../internals/index.js").AxisId;
|
|
2038
1916
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2039
1917
|
dataKey?: string | undefined;
|
|
2040
|
-
min?: (number | Date) | undefined;
|
|
2041
|
-
max?: (number | Date) | undefined;
|
|
2042
1918
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2043
1919
|
hideTooltip?: boolean | undefined;
|
|
2044
1920
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
@@ -2047,9 +1923,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
2047
1923
|
}) | undefined;
|
|
2048
1924
|
ignoreTooltip?: boolean | undefined;
|
|
2049
1925
|
offset: number;
|
|
2050
|
-
scaleType: "
|
|
2051
|
-
|
|
2052
|
-
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>;
|
|
1926
|
+
scaleType: "sqrt";
|
|
1927
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
2053
1928
|
triggerTooltip?: boolean;
|
|
2054
1929
|
} | {
|
|
2055
1930
|
axis?: "x";
|
|
@@ -2079,8 +1954,6 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
2079
1954
|
id: import("../internals/index.js").AxisId;
|
|
2080
1955
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2081
1956
|
dataKey?: string | undefined;
|
|
2082
|
-
min?: (number | Date) | undefined;
|
|
2083
|
-
max?: (number | Date) | undefined;
|
|
2084
1957
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2085
1958
|
hideTooltip?: boolean | undefined;
|
|
2086
1959
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
@@ -2089,8 +1962,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
2089
1962
|
}) | undefined;
|
|
2090
1963
|
ignoreTooltip?: boolean | undefined;
|
|
2091
1964
|
offset: number;
|
|
2092
|
-
scaleType: "
|
|
2093
|
-
constant?: number;
|
|
1965
|
+
scaleType: "sqrt";
|
|
2094
1966
|
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
2095
1967
|
triggerTooltip?: boolean;
|
|
2096
1968
|
} | {
|
|
@@ -2121,8 +1993,6 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
2121
1993
|
id: import("../internals/index.js").AxisId;
|
|
2122
1994
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2123
1995
|
dataKey?: string | undefined;
|
|
2124
|
-
min?: (number | Date) | undefined;
|
|
2125
|
-
max?: (number | Date) | undefined;
|
|
2126
1996
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2127
1997
|
hideTooltip?: boolean | undefined;
|
|
2128
1998
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
@@ -2131,8 +2001,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
2131
2001
|
}) | undefined;
|
|
2132
2002
|
ignoreTooltip?: boolean | undefined;
|
|
2133
2003
|
offset: number;
|
|
2134
|
-
scaleType: "
|
|
2135
|
-
constant?: number;
|
|
2004
|
+
scaleType: "sqrt";
|
|
2136
2005
|
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
2137
2006
|
triggerTooltip?: boolean;
|
|
2138
2007
|
} | {
|
|
@@ -2163,8 +2032,6 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
2163
2032
|
id: import("../internals/index.js").AxisId;
|
|
2164
2033
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2165
2034
|
dataKey?: string | undefined;
|
|
2166
|
-
min?: (number | Date) | undefined;
|
|
2167
|
-
max?: (number | Date) | undefined;
|
|
2168
2035
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2169
2036
|
hideTooltip?: boolean | undefined;
|
|
2170
2037
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
@@ -2173,9 +2040,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
2173
2040
|
}) | undefined;
|
|
2174
2041
|
ignoreTooltip?: boolean | undefined;
|
|
2175
2042
|
offset: number;
|
|
2176
|
-
scaleType: "
|
|
2177
|
-
|
|
2178
|
-
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
2043
|
+
scaleType: "sqrt";
|
|
2044
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
2179
2045
|
triggerTooltip?: boolean;
|
|
2180
2046
|
} | {
|
|
2181
2047
|
axis?: "x";
|
|
@@ -2205,8 +2071,6 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
2205
2071
|
id: import("../internals/index.js").AxisId;
|
|
2206
2072
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2207
2073
|
dataKey?: string | undefined;
|
|
2208
|
-
min?: (number | Date) | undefined;
|
|
2209
|
-
max?: (number | Date) | undefined;
|
|
2210
2074
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2211
2075
|
hideTooltip?: boolean | undefined;
|
|
2212
2076
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
@@ -2215,9 +2079,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
2215
2079
|
}) | undefined;
|
|
2216
2080
|
ignoreTooltip?: boolean | undefined;
|
|
2217
2081
|
offset: number;
|
|
2218
|
-
scaleType: "
|
|
2219
|
-
|
|
2220
|
-
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
2082
|
+
scaleType: "sqrt";
|
|
2083
|
+
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>;
|
|
2221
2084
|
triggerTooltip?: boolean;
|
|
2222
2085
|
} | {
|
|
2223
2086
|
axis?: "x";
|
|
@@ -2247,8 +2110,6 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
2247
2110
|
id: import("../internals/index.js").AxisId;
|
|
2248
2111
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2249
2112
|
dataKey?: string | undefined;
|
|
2250
|
-
min?: (number | Date) | undefined;
|
|
2251
|
-
max?: (number | Date) | undefined;
|
|
2252
2113
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2253
2114
|
hideTooltip?: boolean | undefined;
|
|
2254
2115
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
@@ -2257,9 +2118,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
2257
2118
|
}) | undefined;
|
|
2258
2119
|
ignoreTooltip?: boolean | undefined;
|
|
2259
2120
|
offset: number;
|
|
2260
|
-
scaleType: "
|
|
2261
|
-
|
|
2262
|
-
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
2121
|
+
scaleType: "sqrt";
|
|
2122
|
+
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>;
|
|
2263
2123
|
triggerTooltip?: boolean;
|
|
2264
2124
|
} | {
|
|
2265
2125
|
axis?: "x";
|
|
@@ -2289,8 +2149,6 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
2289
2149
|
id: import("../internals/index.js").AxisId;
|
|
2290
2150
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2291
2151
|
dataKey?: string | undefined;
|
|
2292
|
-
min?: (number | Date) | undefined;
|
|
2293
|
-
max?: (number | Date) | undefined;
|
|
2294
2152
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2295
2153
|
hideTooltip?: boolean | undefined;
|
|
2296
2154
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
@@ -2299,7 +2157,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
2299
2157
|
}) | undefined;
|
|
2300
2158
|
ignoreTooltip?: boolean | undefined;
|
|
2301
2159
|
offset: number;
|
|
2302
|
-
scaleType: "
|
|
2160
|
+
scaleType: "utc";
|
|
2303
2161
|
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
2304
2162
|
triggerTooltip?: boolean;
|
|
2305
2163
|
} | {
|
|
@@ -2330,8 +2188,6 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
2330
2188
|
id: import("../internals/index.js").AxisId;
|
|
2331
2189
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2332
2190
|
dataKey?: string | undefined;
|
|
2333
|
-
min?: (number | Date) | undefined;
|
|
2334
|
-
max?: (number | Date) | undefined;
|
|
2335
2191
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2336
2192
|
hideTooltip?: boolean | undefined;
|
|
2337
2193
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
@@ -2340,7 +2196,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
2340
2196
|
}) | undefined;
|
|
2341
2197
|
ignoreTooltip?: boolean | undefined;
|
|
2342
2198
|
offset: number;
|
|
2343
|
-
scaleType: "
|
|
2199
|
+
scaleType: "utc";
|
|
2344
2200
|
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
2345
2201
|
triggerTooltip?: boolean;
|
|
2346
2202
|
} | {
|
|
@@ -2371,8 +2227,6 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
2371
2227
|
id: import("../internals/index.js").AxisId;
|
|
2372
2228
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2373
2229
|
dataKey?: string | undefined;
|
|
2374
|
-
min?: (number | Date) | undefined;
|
|
2375
|
-
max?: (number | Date) | undefined;
|
|
2376
2230
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2377
2231
|
hideTooltip?: boolean | undefined;
|
|
2378
2232
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
@@ -2381,8 +2235,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
2381
2235
|
}) | undefined;
|
|
2382
2236
|
ignoreTooltip?: boolean | undefined;
|
|
2383
2237
|
offset: number;
|
|
2384
|
-
scaleType: "
|
|
2385
|
-
colorScale?: import("@mui/x-charts-vendor/d3-scale").
|
|
2238
|
+
scaleType: "utc";
|
|
2239
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
2386
2240
|
triggerTooltip?: boolean;
|
|
2387
2241
|
} | {
|
|
2388
2242
|
axis?: "x";
|
|
@@ -2412,8 +2266,6 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
2412
2266
|
id: import("../internals/index.js").AxisId;
|
|
2413
2267
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2414
2268
|
dataKey?: string | undefined;
|
|
2415
|
-
min?: (number | Date) | undefined;
|
|
2416
|
-
max?: (number | Date) | undefined;
|
|
2417
2269
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2418
2270
|
hideTooltip?: boolean | undefined;
|
|
2419
2271
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
@@ -2422,8 +2274,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
2422
2274
|
}) | undefined;
|
|
2423
2275
|
ignoreTooltip?: boolean | undefined;
|
|
2424
2276
|
offset: number;
|
|
2425
|
-
scaleType: "
|
|
2426
|
-
colorScale?: import("@mui/x-charts-vendor/d3-scale").
|
|
2277
|
+
scaleType: "utc";
|
|
2278
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
2427
2279
|
triggerTooltip?: boolean;
|
|
2428
2280
|
} | {
|
|
2429
2281
|
axis?: "x";
|
|
@@ -2453,8 +2305,6 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
2453
2305
|
id: import("../internals/index.js").AxisId;
|
|
2454
2306
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2455
2307
|
dataKey?: string | undefined;
|
|
2456
|
-
min?: (number | Date) | undefined;
|
|
2457
|
-
max?: (number | Date) | undefined;
|
|
2458
2308
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2459
2309
|
hideTooltip?: boolean | undefined;
|
|
2460
2310
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
@@ -2463,7 +2313,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
2463
2313
|
}) | undefined;
|
|
2464
2314
|
ignoreTooltip?: boolean | undefined;
|
|
2465
2315
|
offset: number;
|
|
2466
|
-
scaleType: "
|
|
2316
|
+
scaleType: "utc";
|
|
2467
2317
|
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
2468
2318
|
triggerTooltip?: boolean;
|
|
2469
2319
|
} | {
|
|
@@ -2494,8 +2344,6 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
2494
2344
|
id: import("../internals/index.js").AxisId;
|
|
2495
2345
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2496
2346
|
dataKey?: string | undefined;
|
|
2497
|
-
min?: (number | Date) | undefined;
|
|
2498
|
-
max?: (number | Date) | undefined;
|
|
2499
2347
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2500
2348
|
hideTooltip?: boolean | undefined;
|
|
2501
2349
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
@@ -2504,7 +2352,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
2504
2352
|
}) | undefined;
|
|
2505
2353
|
ignoreTooltip?: boolean | undefined;
|
|
2506
2354
|
offset: number;
|
|
2507
|
-
scaleType: "
|
|
2355
|
+
scaleType: "utc";
|
|
2508
2356
|
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
2509
2357
|
triggerTooltip?: boolean;
|
|
2510
2358
|
} | {
|
|
@@ -2535,8 +2383,6 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
2535
2383
|
id: import("../internals/index.js").AxisId;
|
|
2536
2384
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2537
2385
|
dataKey?: string | undefined;
|
|
2538
|
-
min?: (number | Date) | undefined;
|
|
2539
|
-
max?: (number | Date) | undefined;
|
|
2540
2386
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2541
2387
|
hideTooltip?: boolean | undefined;
|
|
2542
2388
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
@@ -2545,8 +2391,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
2545
2391
|
}) | undefined;
|
|
2546
2392
|
ignoreTooltip?: boolean | undefined;
|
|
2547
2393
|
offset: number;
|
|
2548
|
-
scaleType: "
|
|
2549
|
-
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
2394
|
+
scaleType: "utc";
|
|
2395
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
2550
2396
|
triggerTooltip?: boolean;
|
|
2551
2397
|
} | {
|
|
2552
2398
|
axis?: "x";
|
|
@@ -2576,8 +2422,6 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
2576
2422
|
id: import("../internals/index.js").AxisId;
|
|
2577
2423
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2578
2424
|
dataKey?: string | undefined;
|
|
2579
|
-
min?: (number | Date) | undefined;
|
|
2580
|
-
max?: (number | Date) | undefined;
|
|
2581
2425
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2582
2426
|
hideTooltip?: boolean | undefined;
|
|
2583
2427
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
@@ -2586,8 +2430,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
2586
2430
|
}) | undefined;
|
|
2587
2431
|
ignoreTooltip?: boolean | undefined;
|
|
2588
2432
|
offset: number;
|
|
2589
|
-
scaleType: "
|
|
2590
|
-
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
2433
|
+
scaleType: "utc";
|
|
2434
|
+
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>;
|
|
2591
2435
|
triggerTooltip?: boolean;
|
|
2592
2436
|
} | {
|
|
2593
2437
|
axis?: "x";
|
|
@@ -2617,8 +2461,6 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
2617
2461
|
id: import("../internals/index.js").AxisId;
|
|
2618
2462
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2619
2463
|
dataKey?: string | undefined;
|
|
2620
|
-
min?: (number | Date) | undefined;
|
|
2621
|
-
max?: (number | Date) | undefined;
|
|
2622
2464
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2623
2465
|
hideTooltip?: boolean | undefined;
|
|
2624
2466
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
@@ -2627,8 +2469,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
2627
2469
|
}) | undefined;
|
|
2628
2470
|
ignoreTooltip?: boolean | undefined;
|
|
2629
2471
|
offset: number;
|
|
2630
|
-
scaleType: "
|
|
2631
|
-
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
2472
|
+
scaleType: "utc";
|
|
2473
|
+
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>;
|
|
2632
2474
|
triggerTooltip?: boolean;
|
|
2633
2475
|
} | {
|
|
2634
2476
|
axis?: "x";
|
|
@@ -2658,9 +2500,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
2658
2500
|
id: import("../internals/index.js").AxisId;
|
|
2659
2501
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2660
2502
|
dataKey?: string | undefined;
|
|
2661
|
-
|
|
2662
|
-
max?: (number | Date) | undefined;
|
|
2663
|
-
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2503
|
+
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
2664
2504
|
hideTooltip?: boolean | undefined;
|
|
2665
2505
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
2666
2506
|
min: number;
|
|
@@ -2668,7 +2508,10 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
2668
2508
|
}) | undefined;
|
|
2669
2509
|
ignoreTooltip?: boolean | undefined;
|
|
2670
2510
|
offset: number;
|
|
2671
|
-
scaleType: "
|
|
2511
|
+
scaleType: "band";
|
|
2512
|
+
categoryGapRatio: number;
|
|
2513
|
+
barGapRatio: number;
|
|
2514
|
+
groups?: import("../internals/index.js").AxisGroup[];
|
|
2672
2515
|
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
2673
2516
|
triggerTooltip?: boolean;
|
|
2674
2517
|
} | {
|
|
@@ -2699,9 +2542,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
2699
2542
|
id: import("../internals/index.js").AxisId;
|
|
2700
2543
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2701
2544
|
dataKey?: string | undefined;
|
|
2702
|
-
|
|
2703
|
-
max?: (number | Date) | undefined;
|
|
2704
|
-
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2545
|
+
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
2705
2546
|
hideTooltip?: boolean | undefined;
|
|
2706
2547
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
2707
2548
|
min: number;
|
|
@@ -2709,7 +2550,10 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
2709
2550
|
}) | undefined;
|
|
2710
2551
|
ignoreTooltip?: boolean | undefined;
|
|
2711
2552
|
offset: number;
|
|
2712
|
-
scaleType: "
|
|
2553
|
+
scaleType: "band";
|
|
2554
|
+
categoryGapRatio: number;
|
|
2555
|
+
barGapRatio: number;
|
|
2556
|
+
groups?: import("../internals/index.js").AxisGroup[];
|
|
2713
2557
|
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
2714
2558
|
triggerTooltip?: boolean;
|
|
2715
2559
|
} | {
|
|
@@ -2740,9 +2584,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
2740
2584
|
id: import("../internals/index.js").AxisId;
|
|
2741
2585
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2742
2586
|
dataKey?: string | undefined;
|
|
2743
|
-
|
|
2744
|
-
max?: (number | Date) | undefined;
|
|
2745
|
-
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2587
|
+
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
2746
2588
|
hideTooltip?: boolean | undefined;
|
|
2747
2589
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
2748
2590
|
min: number;
|
|
@@ -2750,8 +2592,11 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
2750
2592
|
}) | undefined;
|
|
2751
2593
|
ignoreTooltip?: boolean | undefined;
|
|
2752
2594
|
offset: number;
|
|
2753
|
-
scaleType: "
|
|
2754
|
-
|
|
2595
|
+
scaleType: "band";
|
|
2596
|
+
categoryGapRatio: number;
|
|
2597
|
+
barGapRatio: number;
|
|
2598
|
+
groups?: import("../internals/index.js").AxisGroup[];
|
|
2599
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
2755
2600
|
triggerTooltip?: boolean;
|
|
2756
2601
|
} | {
|
|
2757
2602
|
axis?: "x";
|
|
@@ -2781,9 +2626,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
2781
2626
|
id: import("../internals/index.js").AxisId;
|
|
2782
2627
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2783
2628
|
dataKey?: string | undefined;
|
|
2784
|
-
|
|
2785
|
-
max?: (number | Date) | undefined;
|
|
2786
|
-
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2629
|
+
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
2787
2630
|
hideTooltip?: boolean | undefined;
|
|
2788
2631
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
2789
2632
|
min: number;
|
|
@@ -2791,8 +2634,11 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
2791
2634
|
}) | undefined;
|
|
2792
2635
|
ignoreTooltip?: boolean | undefined;
|
|
2793
2636
|
offset: number;
|
|
2794
|
-
scaleType: "
|
|
2795
|
-
|
|
2637
|
+
scaleType: "band";
|
|
2638
|
+
categoryGapRatio: number;
|
|
2639
|
+
barGapRatio: number;
|
|
2640
|
+
groups?: import("../internals/index.js").AxisGroup[];
|
|
2641
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
2796
2642
|
triggerTooltip?: boolean;
|
|
2797
2643
|
} | {
|
|
2798
2644
|
axis?: "x";
|
|
@@ -2822,9 +2668,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
2822
2668
|
id: import("../internals/index.js").AxisId;
|
|
2823
2669
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2824
2670
|
dataKey?: string | undefined;
|
|
2825
|
-
|
|
2826
|
-
max?: (number | Date) | undefined;
|
|
2827
|
-
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2671
|
+
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
2828
2672
|
hideTooltip?: boolean | undefined;
|
|
2829
2673
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
2830
2674
|
min: number;
|
|
@@ -2832,7 +2676,10 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
2832
2676
|
}) | undefined;
|
|
2833
2677
|
ignoreTooltip?: boolean | undefined;
|
|
2834
2678
|
offset: number;
|
|
2835
|
-
scaleType: "
|
|
2679
|
+
scaleType: "band";
|
|
2680
|
+
categoryGapRatio: number;
|
|
2681
|
+
barGapRatio: number;
|
|
2682
|
+
groups?: import("../internals/index.js").AxisGroup[];
|
|
2836
2683
|
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
2837
2684
|
triggerTooltip?: boolean;
|
|
2838
2685
|
} | {
|
|
@@ -2863,9 +2710,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
2863
2710
|
id: import("../internals/index.js").AxisId;
|
|
2864
2711
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2865
2712
|
dataKey?: string | undefined;
|
|
2866
|
-
|
|
2867
|
-
max?: (number | Date) | undefined;
|
|
2868
|
-
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2713
|
+
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
2869
2714
|
hideTooltip?: boolean | undefined;
|
|
2870
2715
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
2871
2716
|
min: number;
|
|
@@ -2873,7 +2718,10 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
2873
2718
|
}) | undefined;
|
|
2874
2719
|
ignoreTooltip?: boolean | undefined;
|
|
2875
2720
|
offset: number;
|
|
2876
|
-
scaleType: "
|
|
2721
|
+
scaleType: "band";
|
|
2722
|
+
categoryGapRatio: number;
|
|
2723
|
+
barGapRatio: number;
|
|
2724
|
+
groups?: import("../internals/index.js").AxisGroup[];
|
|
2877
2725
|
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
2878
2726
|
triggerTooltip?: boolean;
|
|
2879
2727
|
} | {
|
|
@@ -2904,9 +2752,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
2904
2752
|
id: import("../internals/index.js").AxisId;
|
|
2905
2753
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2906
2754
|
dataKey?: string | undefined;
|
|
2907
|
-
|
|
2908
|
-
max?: (number | Date) | undefined;
|
|
2909
|
-
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2755
|
+
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
2910
2756
|
hideTooltip?: boolean | undefined;
|
|
2911
2757
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
2912
2758
|
min: number;
|
|
@@ -2914,8 +2760,11 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
2914
2760
|
}) | undefined;
|
|
2915
2761
|
ignoreTooltip?: boolean | undefined;
|
|
2916
2762
|
offset: number;
|
|
2917
|
-
scaleType: "
|
|
2918
|
-
|
|
2763
|
+
scaleType: "band";
|
|
2764
|
+
categoryGapRatio: number;
|
|
2765
|
+
barGapRatio: number;
|
|
2766
|
+
groups?: import("../internals/index.js").AxisGroup[];
|
|
2767
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
2919
2768
|
triggerTooltip?: boolean;
|
|
2920
2769
|
} | {
|
|
2921
2770
|
axis?: "x";
|
|
@@ -2945,9 +2794,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
2945
2794
|
id: import("../internals/index.js").AxisId;
|
|
2946
2795
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2947
2796
|
dataKey?: string | undefined;
|
|
2948
|
-
|
|
2949
|
-
max?: (number | Date) | undefined;
|
|
2950
|
-
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2797
|
+
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
2951
2798
|
hideTooltip?: boolean | undefined;
|
|
2952
2799
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
2953
2800
|
min: number;
|
|
@@ -2955,8 +2802,11 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
2955
2802
|
}) | undefined;
|
|
2956
2803
|
ignoreTooltip?: boolean | undefined;
|
|
2957
2804
|
offset: number;
|
|
2958
|
-
scaleType: "
|
|
2959
|
-
|
|
2805
|
+
scaleType: "band";
|
|
2806
|
+
categoryGapRatio: number;
|
|
2807
|
+
barGapRatio: number;
|
|
2808
|
+
groups?: import("../internals/index.js").AxisGroup[];
|
|
2809
|
+
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>;
|
|
2960
2810
|
triggerTooltip?: boolean;
|
|
2961
2811
|
} | {
|
|
2962
2812
|
axis?: "x";
|
|
@@ -2986,9 +2836,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
2986
2836
|
id: import("../internals/index.js").AxisId;
|
|
2987
2837
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2988
2838
|
dataKey?: string | undefined;
|
|
2989
|
-
|
|
2990
|
-
max?: (number | Date) | undefined;
|
|
2991
|
-
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2839
|
+
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
2992
2840
|
hideTooltip?: boolean | undefined;
|
|
2993
2841
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
2994
2842
|
min: number;
|
|
@@ -2996,8 +2844,11 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
2996
2844
|
}) | undefined;
|
|
2997
2845
|
ignoreTooltip?: boolean | undefined;
|
|
2998
2846
|
offset: number;
|
|
2999
|
-
scaleType: "
|
|
3000
|
-
|
|
2847
|
+
scaleType: "band";
|
|
2848
|
+
categoryGapRatio: number;
|
|
2849
|
+
barGapRatio: number;
|
|
2850
|
+
groups?: import("../internals/index.js").AxisGroup[];
|
|
2851
|
+
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>;
|
|
3001
2852
|
triggerTooltip?: boolean;
|
|
3002
2853
|
} | {
|
|
3003
2854
|
axis?: "x";
|
|
@@ -3027,9 +2878,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
3027
2878
|
id: import("../internals/index.js").AxisId;
|
|
3028
2879
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
3029
2880
|
dataKey?: string | undefined;
|
|
3030
|
-
|
|
3031
|
-
max?: (number | Date) | undefined;
|
|
3032
|
-
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2881
|
+
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
3033
2882
|
hideTooltip?: boolean | undefined;
|
|
3034
2883
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
3035
2884
|
min: number;
|
|
@@ -3037,7 +2886,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
3037
2886
|
}) | undefined;
|
|
3038
2887
|
ignoreTooltip?: boolean | undefined;
|
|
3039
2888
|
offset: number;
|
|
3040
|
-
scaleType: "
|
|
2889
|
+
scaleType: "point";
|
|
2890
|
+
groups?: import("../internals/index.js").AxisGroup[];
|
|
3041
2891
|
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
3042
2892
|
triggerTooltip?: boolean;
|
|
3043
2893
|
} | {
|
|
@@ -3068,9 +2918,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
3068
2918
|
id: import("../internals/index.js").AxisId;
|
|
3069
2919
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
3070
2920
|
dataKey?: string | undefined;
|
|
3071
|
-
|
|
3072
|
-
max?: (number | Date) | undefined;
|
|
3073
|
-
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2921
|
+
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
3074
2922
|
hideTooltip?: boolean | undefined;
|
|
3075
2923
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
3076
2924
|
min: number;
|
|
@@ -3078,7 +2926,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
3078
2926
|
}) | undefined;
|
|
3079
2927
|
ignoreTooltip?: boolean | undefined;
|
|
3080
2928
|
offset: number;
|
|
3081
|
-
scaleType: "
|
|
2929
|
+
scaleType: "point";
|
|
2930
|
+
groups?: import("../internals/index.js").AxisGroup[];
|
|
3082
2931
|
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
3083
2932
|
triggerTooltip?: boolean;
|
|
3084
2933
|
} | {
|
|
@@ -3109,9 +2958,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
3109
2958
|
id: import("../internals/index.js").AxisId;
|
|
3110
2959
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
3111
2960
|
dataKey?: string | undefined;
|
|
3112
|
-
|
|
3113
|
-
max?: (number | Date) | undefined;
|
|
3114
|
-
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2961
|
+
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
3115
2962
|
hideTooltip?: boolean | undefined;
|
|
3116
2963
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
3117
2964
|
min: number;
|
|
@@ -3119,8 +2966,9 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
3119
2966
|
}) | undefined;
|
|
3120
2967
|
ignoreTooltip?: boolean | undefined;
|
|
3121
2968
|
offset: number;
|
|
3122
|
-
scaleType: "
|
|
3123
|
-
|
|
2969
|
+
scaleType: "point";
|
|
2970
|
+
groups?: import("../internals/index.js").AxisGroup[];
|
|
2971
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
3124
2972
|
triggerTooltip?: boolean;
|
|
3125
2973
|
} | {
|
|
3126
2974
|
axis?: "x";
|
|
@@ -3150,9 +2998,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
3150
2998
|
id: import("../internals/index.js").AxisId;
|
|
3151
2999
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
3152
3000
|
dataKey?: string | undefined;
|
|
3153
|
-
|
|
3154
|
-
max?: (number | Date) | undefined;
|
|
3155
|
-
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
3001
|
+
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
3156
3002
|
hideTooltip?: boolean | undefined;
|
|
3157
3003
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
3158
3004
|
min: number;
|
|
@@ -3160,8 +3006,9 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
3160
3006
|
}) | undefined;
|
|
3161
3007
|
ignoreTooltip?: boolean | undefined;
|
|
3162
3008
|
offset: number;
|
|
3163
|
-
scaleType: "
|
|
3164
|
-
|
|
3009
|
+
scaleType: "point";
|
|
3010
|
+
groups?: import("../internals/index.js").AxisGroup[];
|
|
3011
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
3165
3012
|
triggerTooltip?: boolean;
|
|
3166
3013
|
} | {
|
|
3167
3014
|
axis?: "x";
|
|
@@ -3191,9 +3038,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
3191
3038
|
id: import("../internals/index.js").AxisId;
|
|
3192
3039
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
3193
3040
|
dataKey?: string | undefined;
|
|
3194
|
-
|
|
3195
|
-
max?: (number | Date) | undefined;
|
|
3196
|
-
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
3041
|
+
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
3197
3042
|
hideTooltip?: boolean | undefined;
|
|
3198
3043
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
3199
3044
|
min: number;
|
|
@@ -3201,7 +3046,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
3201
3046
|
}) | undefined;
|
|
3202
3047
|
ignoreTooltip?: boolean | undefined;
|
|
3203
3048
|
offset: number;
|
|
3204
|
-
scaleType: "
|
|
3049
|
+
scaleType: "point";
|
|
3050
|
+
groups?: import("../internals/index.js").AxisGroup[];
|
|
3205
3051
|
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
3206
3052
|
triggerTooltip?: boolean;
|
|
3207
3053
|
} | {
|
|
@@ -3232,9 +3078,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
3232
3078
|
id: import("../internals/index.js").AxisId;
|
|
3233
3079
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
3234
3080
|
dataKey?: string | undefined;
|
|
3235
|
-
|
|
3236
|
-
max?: (number | Date) | undefined;
|
|
3237
|
-
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
3081
|
+
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
3238
3082
|
hideTooltip?: boolean | undefined;
|
|
3239
3083
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
3240
3084
|
min: number;
|
|
@@ -3242,7 +3086,8 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
3242
3086
|
}) | undefined;
|
|
3243
3087
|
ignoreTooltip?: boolean | undefined;
|
|
3244
3088
|
offset: number;
|
|
3245
|
-
scaleType: "
|
|
3089
|
+
scaleType: "point";
|
|
3090
|
+
groups?: import("../internals/index.js").AxisGroup[];
|
|
3246
3091
|
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
3247
3092
|
triggerTooltip?: boolean;
|
|
3248
3093
|
} | {
|
|
@@ -3273,9 +3118,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
3273
3118
|
id: import("../internals/index.js").AxisId;
|
|
3274
3119
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
3275
3120
|
dataKey?: string | undefined;
|
|
3276
|
-
|
|
3277
|
-
max?: (number | Date) | undefined;
|
|
3278
|
-
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
3121
|
+
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
3279
3122
|
hideTooltip?: boolean | undefined;
|
|
3280
3123
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
3281
3124
|
min: number;
|
|
@@ -3283,8 +3126,9 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
3283
3126
|
}) | undefined;
|
|
3284
3127
|
ignoreTooltip?: boolean | undefined;
|
|
3285
3128
|
offset: number;
|
|
3286
|
-
scaleType: "
|
|
3287
|
-
|
|
3129
|
+
scaleType: "point";
|
|
3130
|
+
groups?: import("../internals/index.js").AxisGroup[];
|
|
3131
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
3288
3132
|
triggerTooltip?: boolean;
|
|
3289
3133
|
} | {
|
|
3290
3134
|
axis?: "x";
|
|
@@ -3314,9 +3158,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
3314
3158
|
id: import("../internals/index.js").AxisId;
|
|
3315
3159
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
3316
3160
|
dataKey?: string | undefined;
|
|
3317
|
-
|
|
3318
|
-
max?: (number | Date) | undefined;
|
|
3319
|
-
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
3161
|
+
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
3320
3162
|
hideTooltip?: boolean | undefined;
|
|
3321
3163
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
3322
3164
|
min: number;
|
|
@@ -3324,8 +3166,9 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
3324
3166
|
}) | undefined;
|
|
3325
3167
|
ignoreTooltip?: boolean | undefined;
|
|
3326
3168
|
offset: number;
|
|
3327
|
-
scaleType: "
|
|
3328
|
-
|
|
3169
|
+
scaleType: "point";
|
|
3170
|
+
groups?: import("../internals/index.js").AxisGroup[];
|
|
3171
|
+
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>;
|
|
3329
3172
|
triggerTooltip?: boolean;
|
|
3330
3173
|
} | {
|
|
3331
3174
|
axis?: "x";
|
|
@@ -3355,9 +3198,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
3355
3198
|
id: import("../internals/index.js").AxisId;
|
|
3356
3199
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
3357
3200
|
dataKey?: string | undefined;
|
|
3358
|
-
|
|
3359
|
-
max?: (number | Date) | undefined;
|
|
3360
|
-
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
3201
|
+
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
3361
3202
|
hideTooltip?: boolean | undefined;
|
|
3362
3203
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
3363
3204
|
min: number;
|
|
@@ -3365,8 +3206,9 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
3365
3206
|
}) | undefined;
|
|
3366
3207
|
ignoreTooltip?: boolean | undefined;
|
|
3367
3208
|
offset: number;
|
|
3368
|
-
scaleType: "
|
|
3369
|
-
|
|
3209
|
+
scaleType: "point";
|
|
3210
|
+
groups?: import("../internals/index.js").AxisGroup[];
|
|
3211
|
+
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>;
|
|
3370
3212
|
triggerTooltip?: boolean;
|
|
3371
3213
|
};
|
|
3372
3214
|
tickNumber: number;
|
|
@@ -3685,11 +3527,9 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
3685
3527
|
x?: number | string | undefined | undefined;
|
|
3686
3528
|
y?: number | string | undefined | undefined;
|
|
3687
3529
|
radius?: number | string | undefined | undefined;
|
|
3688
|
-
href?: string | undefined | undefined;
|
|
3689
3530
|
media?: string | undefined | undefined;
|
|
3690
|
-
target?: string | undefined | undefined;
|
|
3691
|
-
from?: number | string | undefined | undefined;
|
|
3692
3531
|
method?: string | undefined | undefined;
|
|
3532
|
+
target?: string | undefined | undefined;
|
|
3693
3533
|
crossOrigin?: "" | "anonymous" | "use-credentials" | undefined;
|
|
3694
3534
|
accentHeight?: number | string | undefined | undefined;
|
|
3695
3535
|
accumulate?: "none" | "sum" | undefined | undefined;
|
|
@@ -3733,6 +3573,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
3733
3573
|
focusable?: "auto" | (boolean | "true" | "false") | undefined;
|
|
3734
3574
|
format?: number | string | undefined | undefined;
|
|
3735
3575
|
fr?: number | string | undefined | undefined;
|
|
3576
|
+
from?: number | string | undefined | undefined;
|
|
3736
3577
|
fx?: number | string | undefined | undefined;
|
|
3737
3578
|
fy?: number | string | undefined | undefined;
|
|
3738
3579
|
g1?: number | string | undefined | undefined;
|
|
@@ -3745,6 +3586,7 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
3745
3586
|
hanging?: number | string | undefined | undefined;
|
|
3746
3587
|
horizAdvX?: number | string | undefined | undefined;
|
|
3747
3588
|
horizOriginX?: number | string | undefined | undefined;
|
|
3589
|
+
href?: string | undefined | undefined;
|
|
3748
3590
|
ideographic?: number | string | undefined | undefined;
|
|
3749
3591
|
in2?: number | string | undefined | undefined;
|
|
3750
3592
|
in?: string | undefined | undefined;
|