@mui/x-charts 9.0.1 → 9.0.3
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 +29 -10
- package/BarChart/BarChart.mjs +29 -10
- package/BarChart/BarElement.js +1 -5
- package/BarChart/BarElement.mjs +1 -5
- package/BarChart/BarPlot.js +2 -1
- package/BarChart/BarPlot.mjs +2 -1
- package/BarChart/seriesConfig/bar/getSeriesWithDefaultValues.d.mts +8 -7
- package/BarChart/seriesConfig/bar/getSeriesWithDefaultValues.d.ts +8 -7
- package/BarChart/seriesConfig/bar/seriesProcessor.js +37 -13
- package/BarChart/seriesConfig/bar/seriesProcessor.mjs +37 -13
- package/CHANGELOG.md +257 -0
- package/ChartsContainer/ChartsContainer.js +59 -30
- package/ChartsContainer/ChartsContainer.mjs +59 -30
- package/ChartsDataProvider/useChartsDataProviderProps.js +1 -6
- package/ChartsDataProvider/useChartsDataProviderProps.mjs +1 -6
- package/ChartsGrid/styledComponents.js +2 -2
- package/ChartsGrid/styledComponents.mjs +2 -2
- package/ChartsRadialDataProvider/ChartsRadialDataProvider.d.mts +38 -0
- package/ChartsRadialDataProvider/ChartsRadialDataProvider.d.ts +38 -0
- package/ChartsRadialDataProvider/ChartsRadialDataProvider.js +115 -0
- package/ChartsRadialDataProvider/ChartsRadialDataProvider.mjs +109 -0
- package/ChartsRadialDataProvider/ChartsRadialDataProvider.plugins.d.mts +9 -0
- package/ChartsRadialDataProvider/ChartsRadialDataProvider.plugins.d.ts +9 -0
- package/ChartsRadialDataProvider/ChartsRadialDataProvider.plugins.js +13 -0
- package/ChartsRadialDataProvider/ChartsRadialDataProvider.plugins.mjs +7 -0
- package/ChartsRadialDataProvider/index.d.mts +2 -0
- package/ChartsRadialDataProvider/index.d.ts +2 -0
- package/ChartsRadialDataProvider/index.js +27 -0
- package/ChartsRadialDataProvider/index.mjs +2 -0
- package/ChartsRadialDataProvider/useChartsRadialDataProviderProps.d.mts +13 -0
- package/ChartsRadialDataProvider/useChartsRadialDataProviderProps.d.ts +13 -0
- package/ChartsRadialDataProvider/useChartsRadialDataProviderProps.js +46 -0
- package/ChartsRadialDataProvider/useChartsRadialDataProviderProps.mjs +39 -0
- package/ChartsRadialGrid/ChartsRadialGrid.d.mts +33 -0
- package/ChartsRadialGrid/ChartsRadialGrid.d.ts +33 -0
- package/ChartsRadialGrid/ChartsRadialGrid.js +101 -0
- package/ChartsRadialGrid/ChartsRadialGrid.mjs +96 -0
- package/ChartsRadialGrid/ChartsRadiusGrid.d.mts +14 -0
- package/ChartsRadialGrid/ChartsRadiusGrid.d.ts +14 -0
- package/ChartsRadialGrid/ChartsRadiusGrid.js +72 -0
- package/ChartsRadialGrid/ChartsRadiusGrid.mjs +65 -0
- package/ChartsRadialGrid/ChartsRotationGrid.d.mts +13 -0
- package/ChartsRadialGrid/ChartsRotationGrid.d.ts +13 -0
- package/ChartsRadialGrid/ChartsRotationGrid.js +65 -0
- package/ChartsRadialGrid/ChartsRotationGrid.mjs +58 -0
- package/ChartsRadialGrid/chartsRadialGridClasses.d.mts +13 -0
- package/ChartsRadialGrid/chartsRadialGridClasses.d.ts +13 -0
- package/ChartsRadialGrid/chartsRadialGridClasses.js +14 -0
- package/ChartsRadialGrid/chartsRadialGridClasses.mjs +6 -0
- package/ChartsRadialGrid/index.d.mts +3 -0
- package/ChartsRadialGrid/index.d.ts +3 -0
- package/ChartsRadialGrid/index.js +19 -0
- package/ChartsRadialGrid/index.mjs +2 -0
- package/ChartsRadialGrid/styledComponents.d.mts +4 -0
- package/ChartsRadialGrid/styledComponents.d.ts +4 -0
- package/ChartsRadialGrid/styledComponents.js +50 -0
- package/ChartsRadialGrid/styledComponents.mjs +44 -0
- package/ChartsRadiusAxis/ChartsRadiusAxis.d.mts +48 -0
- package/ChartsRadiusAxis/ChartsRadiusAxis.d.ts +48 -0
- package/ChartsRadiusAxis/ChartsRadiusAxis.js +147 -0
- package/ChartsRadiusAxis/ChartsRadiusAxis.mjs +141 -0
- package/ChartsRadiusAxis/chartsRadiusAxisClasses.d.mts +6 -0
- package/ChartsRadiusAxis/chartsRadiusAxisClasses.d.ts +6 -0
- package/ChartsRadiusAxis/chartsRadiusAxisClasses.js +30 -0
- package/ChartsRadiusAxis/chartsRadiusAxisClasses.mjs +17 -0
- package/ChartsRadiusAxis/createGetLabelTextAnchors.d.mts +10 -0
- package/ChartsRadiusAxis/createGetLabelTextAnchors.d.ts +10 -0
- package/ChartsRadiusAxis/createGetLabelTextAnchors.js +46 -0
- package/ChartsRadiusAxis/createGetLabelTextAnchors.mjs +39 -0
- package/ChartsRadiusAxis/getLabelTransform.d.mts +11 -0
- package/ChartsRadiusAxis/getLabelTransform.d.ts +11 -0
- package/ChartsRadiusAxis/getLabelTransform.js +37 -0
- package/ChartsRadiusAxis/getLabelTransform.mjs +31 -0
- package/ChartsRadiusAxis/index.d.mts +3 -0
- package/ChartsRadiusAxis/index.d.ts +3 -0
- package/ChartsRadiusAxis/index.js +19 -0
- package/ChartsRadiusAxis/index.mjs +2 -0
- package/ChartsRadiusAxis/sharedRadialAxisClasses.d.mts +21 -0
- package/ChartsRadiusAxis/sharedRadialAxisClasses.d.ts +21 -0
- package/ChartsRadiusAxis/sharedRadialAxisClasses.js +14 -0
- package/ChartsRadiusAxis/sharedRadialAxisClasses.mjs +6 -0
- package/ChartsRotationAxis/ChartsRotationAxis.d.mts +48 -0
- package/ChartsRotationAxis/ChartsRotationAxis.d.ts +48 -0
- package/ChartsRotationAxis/ChartsRotationAxis.js +141 -0
- package/ChartsRotationAxis/ChartsRotationAxis.mjs +135 -0
- package/ChartsRotationAxis/chartsRotationAxisClasses.d.mts +5 -0
- package/ChartsRotationAxis/chartsRotationAxisClasses.d.ts +5 -0
- package/ChartsRotationAxis/chartsRotationAxisClasses.js +29 -0
- package/ChartsRotationAxis/chartsRotationAxisClasses.mjs +16 -0
- package/ChartsRotationAxis/getLabelTransform.d.mts +11 -0
- package/ChartsRotationAxis/getLabelTransform.d.ts +11 -0
- package/ChartsRotationAxis/getLabelTransform.js +37 -0
- package/ChartsRotationAxis/getLabelTransform.mjs +31 -0
- package/ChartsRotationAxis/index.d.mts +2 -0
- package/ChartsRotationAxis/index.d.ts +2 -0
- package/ChartsRotationAxis/index.js +19 -0
- package/ChartsRotationAxis/index.mjs +2 -0
- package/ChartsTooltip/useAxesTooltip.js +7 -4
- package/ChartsTooltip/useAxesTooltip.mjs +8 -5
- package/ChartsTooltip/useItemTooltip.d.mts +1 -1
- package/ChartsTooltip/useItemTooltip.d.ts +1 -1
- package/ChartsTooltip/useItemTooltip.js +17 -2
- package/ChartsTooltip/useItemTooltip.mjs +18 -3
- package/ChartsXAxis/useAxisTicksProps.d.mts +652 -490
- package/ChartsXAxis/useAxisTicksProps.d.ts +652 -490
- package/ChartsYAxis/useAxisTicksProps.d.mts +652 -490
- package/ChartsYAxis/useAxisTicksProps.d.ts +652 -490
- package/LineChart/LineChart.js +27 -9
- package/LineChart/LineChart.mjs +27 -9
- package/LineChart/seriesConfig/curveEvaluation.js +24 -19
- package/LineChart/seriesConfig/curveEvaluation.mjs +24 -19
- package/LineChart/seriesConfig/getItemAtPosition.js +14 -3
- package/LineChart/seriesConfig/getItemAtPosition.mjs +14 -3
- package/LineChart/seriesConfig/getSeriesWithDefaultValues.js +4 -6
- package/LineChart/seriesConfig/getSeriesWithDefaultValues.mjs +4 -6
- package/LineChart/seriesConfig/seriesProcessor.d.mts +4 -2
- package/LineChart/seriesConfig/seriesProcessor.d.ts +4 -2
- package/LineChart/seriesConfig/seriesProcessor.js +39 -15
- package/LineChart/seriesConfig/seriesProcessor.mjs +39 -15
- package/RadarChart/RadarSeriesPlot/useRadarSeriesData.d.mts +2 -2
- package/RadarChart/RadarSeriesPlot/useRadarSeriesData.d.ts +2 -2
- package/ScatterChart/Scatter.d.mts +11 -0
- package/ScatterChart/Scatter.d.ts +11 -0
- package/ScatterChart/Scatter.js +11 -0
- package/ScatterChart/Scatter.mjs +14 -0
- package/ScatterChart/ScatterChart.js +29 -10
- package/ScatterChart/ScatterChart.mjs +29 -10
- package/ScatterChart/seriesConfig/seriesProcessor.js +9 -4
- package/ScatterChart/seriesConfig/seriesProcessor.mjs +9 -4
- package/SparkLineChart/SparkLineChart.js +27 -9
- package/SparkLineChart/SparkLineChart.mjs +27 -9
- package/hooks/useAxis.d.mts +2 -2
- package/hooks/useAxis.d.ts +2 -2
- package/hooks/useTicks.d.mts +1 -1
- package/hooks/useTicks.d.ts +1 -1
- package/hooks/useTicks.js +21 -3
- package/hooks/useTicks.mjs +21 -3
- package/index.d.mts +4 -0
- package/index.d.ts +4 -0
- package/index.js +46 -2
- package/index.mjs +5 -1
- package/internals/cubiqSolver.d.mts +5 -0
- package/internals/cubiqSolver.d.ts +5 -0
- package/internals/cubiqSolver.js +62 -0
- package/internals/cubiqSolver.mjs +56 -0
- package/internals/index.d.mts +5 -1
- package/internals/index.d.ts +5 -1
- package/internals/index.js +47 -2
- package/internals/index.mjs +5 -1
- package/internals/isPolar.d.mts +3 -2
- package/internals/isPolar.d.ts +3 -2
- package/internals/isPolar.js +4 -0
- package/internals/isPolar.mjs +3 -0
- package/internals/material/index.js +6 -1
- package/internals/material/index.mjs +6 -1
- package/internals/plugins/corePlugins/useChartSeriesConfig/types/colorProcessor.types.d.mts +8 -9
- package/internals/plugins/corePlugins/useChartSeriesConfig/types/colorProcessor.types.d.ts +8 -9
- package/internals/plugins/featurePlugins/useChartCartesianAxis/defaultizeAxis.js +8 -12
- package/internals/plugins/featurePlugins/useChartCartesianAxis/defaultizeAxis.mjs +8 -12
- package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisRendering.selectors.d.mts +1 -0
- package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisRendering.selectors.d.ts +1 -0
- package/internals/plugins/featurePlugins/useChartPolarAxis/computeAxisValue.d.mts +3 -2
- package/internals/plugins/featurePlugins/useChartPolarAxis/computeAxisValue.d.ts +3 -2
- package/internals/plugins/featurePlugins/useChartPolarAxis/computeAxisValue.js +29 -16
- package/internals/plugins/featurePlugins/useChartPolarAxis/computeAxisValue.mjs +30 -17
- package/internals/plugins/featurePlugins/useChartPolarAxis/defaultizeAxis.js +3 -3
- package/internals/plugins/featurePlugins/useChartPolarAxis/defaultizeAxis.mjs +3 -3
- package/internals/plugins/featurePlugins/useChartTooltip/useChartTooltip.selectors.d.mts +2 -2
- package/internals/plugins/featurePlugins/useChartTooltip/useChartTooltip.selectors.d.ts +2 -2
- package/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.js +3 -3
- package/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.mjs +3 -3
- package/models/axis.d.mts +13 -2
- package/models/axis.d.ts +13 -2
- package/models/seriesType/bar.d.mts +21 -7
- package/models/seriesType/bar.d.ts +21 -7
- package/models/seriesType/common.d.mts +10 -0
- package/models/seriesType/common.d.ts +10 -0
- package/models/seriesType/composition.d.mts +3 -1
- package/models/seriesType/composition.d.ts +3 -1
- package/models/seriesType/composition.js +6 -2
- package/models/seriesType/composition.mjs +5 -1
- package/models/seriesType/index.d.mts +3 -3
- package/models/seriesType/index.d.ts +3 -3
- package/models/seriesType/index.js +0 -22
- package/models/seriesType/index.mjs +0 -2
- package/models/seriesType/line.d.mts +22 -8
- package/models/seriesType/line.d.ts +22 -8
- package/models/seriesType/scatter.d.mts +9 -0
- package/models/seriesType/scatter.d.ts +9 -0
- package/models/slots/chartsBaseSlotProps.d.mts +17 -0
- package/models/slots/chartsBaseSlotProps.d.ts +17 -0
- package/models/slots/chartsBaseSlots.d.mts +7 -1
- package/models/slots/chartsBaseSlots.d.ts +7 -1
- package/models/z-axis.d.mts +9 -0
- package/models/z-axis.d.ts +9 -0
- package/package.json +182 -126
- package/themeAugmentation/components.d.mts +4 -0
- package/themeAugmentation/components.d.ts +4 -0
- package/themeAugmentation/overrides.d.mts +2 -0
- package/themeAugmentation/overrides.d.ts +2 -0
- package/themeAugmentation/props.d.mts +2 -0
- package/themeAugmentation/props.d.ts +2 -0
- package/utils/epsilon.d.mts +1 -0
- package/utils/epsilon.d.ts +1 -0
- package/utils/epsilon.js +7 -0
- package/utils/epsilon.mjs +1 -0
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { type ChartsXAxisProps } from "../models/axis.js";
|
|
2
2
|
import { ChartsText, type ChartsTextProps } from "../ChartsText/index.js";
|
|
3
3
|
export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
4
|
-
xScale: import("
|
|
4
|
+
xScale: import("@mui/x-charts-vendor/d3-scale").ScaleLinear<number, number, never> | import("@mui/x-charts-vendor/d3-scale").ScaleSymLog<number, number, never> | import("@mui/x-charts-vendor/d3-scale").ScaleLogarithmic<number, number, never> | import("@mui/x-charts-vendor/d3-scale").ScalePower<number, number, never> | import("@mui/x-charts-vendor/d3-scale").ScaleTime<number, number, never> | import("@mui/x-charts-vendor/d3-scale").ScaleBand<{
|
|
5
5
|
toString(): string;
|
|
6
|
-
}> | import("
|
|
6
|
+
}> | import("@mui/x-charts-vendor/d3-scale").ScalePoint<{
|
|
7
7
|
toString(): string;
|
|
8
8
|
}>;
|
|
9
9
|
defaultizedProps: {
|
|
@@ -29,24 +29,26 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
29
29
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
30
30
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
31
31
|
tickLabelPlacement?: "middle" | "tick";
|
|
32
|
-
data?: readonly any[] | undefined;
|
|
33
|
-
dataKey?: string | undefined;
|
|
34
32
|
id: import("../internals/index.js").AxisId;
|
|
35
33
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
34
|
+
data?: readonly any[] | undefined;
|
|
35
|
+
dataKey?: string | undefined;
|
|
36
|
+
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
36
37
|
height: number;
|
|
37
38
|
position?: "top" | "bottom" | "none";
|
|
38
39
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
39
40
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
40
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
41
|
-
min: import("
|
|
42
|
-
max: import("
|
|
41
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
42
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
43
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
43
44
|
}) | undefined;
|
|
44
45
|
hideTooltip?: boolean | undefined;
|
|
45
46
|
ignoreTooltip?: boolean | undefined;
|
|
46
47
|
offset: number;
|
|
47
48
|
scaleType: "linear";
|
|
48
|
-
colorScale?: import("
|
|
49
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
49
50
|
triggerTooltip?: boolean;
|
|
51
|
+
isFullCircle?: boolean;
|
|
50
52
|
} | {
|
|
51
53
|
axis?: "x";
|
|
52
54
|
tickLabelMinGap: number;
|
|
@@ -70,24 +72,26 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
70
72
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
71
73
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
72
74
|
tickLabelPlacement?: "middle" | "tick";
|
|
73
|
-
data?: readonly any[] | undefined;
|
|
74
|
-
dataKey?: string | undefined;
|
|
75
75
|
id: import("../internals/index.js").AxisId;
|
|
76
76
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
77
|
+
data?: readonly any[] | undefined;
|
|
78
|
+
dataKey?: string | undefined;
|
|
79
|
+
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
77
80
|
height: number;
|
|
78
81
|
position?: "top" | "bottom" | "none";
|
|
79
82
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
80
83
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
81
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
82
|
-
min: import("
|
|
83
|
-
max: import("
|
|
84
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
85
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
86
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
84
87
|
}) | undefined;
|
|
85
88
|
hideTooltip?: boolean | undefined;
|
|
86
89
|
ignoreTooltip?: boolean | undefined;
|
|
87
90
|
offset: number;
|
|
88
91
|
scaleType: "linear";
|
|
89
|
-
colorScale?: import("
|
|
92
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
90
93
|
triggerTooltip?: boolean;
|
|
94
|
+
isFullCircle?: boolean;
|
|
91
95
|
} | {
|
|
92
96
|
axis?: "x";
|
|
93
97
|
tickLabelMinGap: number;
|
|
@@ -111,24 +115,26 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
111
115
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
112
116
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
113
117
|
tickLabelPlacement?: "middle" | "tick";
|
|
114
|
-
data?: readonly any[] | undefined;
|
|
115
|
-
dataKey?: string | undefined;
|
|
116
118
|
id: import("../internals/index.js").AxisId;
|
|
117
119
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
120
|
+
data?: readonly any[] | undefined;
|
|
121
|
+
dataKey?: string | undefined;
|
|
122
|
+
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
118
123
|
height: number;
|
|
119
124
|
position?: "top" | "bottom" | "none";
|
|
120
125
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
121
126
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
122
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
123
|
-
min: import("
|
|
124
|
-
max: import("
|
|
127
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
128
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
129
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
125
130
|
}) | undefined;
|
|
126
131
|
hideTooltip?: boolean | undefined;
|
|
127
132
|
ignoreTooltip?: boolean | undefined;
|
|
128
133
|
offset: number;
|
|
129
134
|
scaleType: "linear";
|
|
130
|
-
colorScale?: import("
|
|
135
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
131
136
|
triggerTooltip?: boolean;
|
|
137
|
+
isFullCircle?: boolean;
|
|
132
138
|
} | {
|
|
133
139
|
axis?: "x";
|
|
134
140
|
tickLabelMinGap: number;
|
|
@@ -152,24 +158,26 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
152
158
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
153
159
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
154
160
|
tickLabelPlacement?: "middle" | "tick";
|
|
155
|
-
data?: readonly any[] | undefined;
|
|
156
|
-
dataKey?: string | undefined;
|
|
157
161
|
id: import("../internals/index.js").AxisId;
|
|
158
162
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
163
|
+
data?: readonly any[] | undefined;
|
|
164
|
+
dataKey?: string | undefined;
|
|
165
|
+
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
159
166
|
height: number;
|
|
160
167
|
position?: "top" | "bottom" | "none";
|
|
161
168
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
162
169
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
163
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
164
|
-
min: import("
|
|
165
|
-
max: import("
|
|
170
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
171
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
172
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
166
173
|
}) | undefined;
|
|
167
174
|
hideTooltip?: boolean | undefined;
|
|
168
175
|
ignoreTooltip?: boolean | undefined;
|
|
169
176
|
offset: number;
|
|
170
177
|
scaleType: "linear";
|
|
171
|
-
colorScale?: import("
|
|
178
|
+
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>;
|
|
172
179
|
triggerTooltip?: boolean;
|
|
180
|
+
isFullCircle?: boolean;
|
|
173
181
|
} | {
|
|
174
182
|
axis?: "x";
|
|
175
183
|
tickLabelMinGap: number;
|
|
@@ -193,24 +201,26 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
193
201
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
194
202
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
195
203
|
tickLabelPlacement?: "middle" | "tick";
|
|
196
|
-
data?: readonly any[] | undefined;
|
|
197
|
-
dataKey?: string | undefined;
|
|
198
204
|
id: import("../internals/index.js").AxisId;
|
|
199
205
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
206
|
+
data?: readonly any[] | undefined;
|
|
207
|
+
dataKey?: string | undefined;
|
|
208
|
+
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
200
209
|
height: number;
|
|
201
210
|
position?: "top" | "bottom" | "none";
|
|
202
211
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
203
212
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
204
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
205
|
-
min: import("
|
|
206
|
-
max: import("
|
|
213
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
214
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
215
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
207
216
|
}) | undefined;
|
|
208
217
|
hideTooltip?: boolean | undefined;
|
|
209
218
|
ignoreTooltip?: boolean | undefined;
|
|
210
219
|
offset: number;
|
|
211
220
|
scaleType: "linear";
|
|
212
|
-
colorScale?: import("
|
|
221
|
+
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>;
|
|
213
222
|
triggerTooltip?: boolean;
|
|
223
|
+
isFullCircle?: boolean;
|
|
214
224
|
} | {
|
|
215
225
|
axis?: "x";
|
|
216
226
|
tickLabelMinGap: number;
|
|
@@ -234,24 +244,26 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
234
244
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
235
245
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
236
246
|
tickLabelPlacement?: "middle" | "tick";
|
|
237
|
-
data?: readonly any[] | undefined;
|
|
238
|
-
dataKey?: string | undefined;
|
|
239
247
|
id: import("../internals/index.js").AxisId;
|
|
240
248
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
249
|
+
data?: readonly any[] | undefined;
|
|
250
|
+
dataKey?: string | undefined;
|
|
251
|
+
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
241
252
|
height: number;
|
|
242
253
|
position?: "top" | "bottom" | "none";
|
|
243
254
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
244
255
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
245
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
246
|
-
min: import("
|
|
247
|
-
max: import("
|
|
256
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
257
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
258
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
248
259
|
}) | undefined;
|
|
249
260
|
hideTooltip?: boolean | undefined;
|
|
250
261
|
ignoreTooltip?: boolean | undefined;
|
|
251
262
|
offset: number;
|
|
252
263
|
scaleType: "linear";
|
|
253
|
-
colorScale?: import("
|
|
264
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
254
265
|
triggerTooltip?: boolean;
|
|
266
|
+
isFullCircle?: boolean;
|
|
255
267
|
} | {
|
|
256
268
|
axis?: "x";
|
|
257
269
|
tickLabelMinGap: number;
|
|
@@ -275,24 +287,26 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
275
287
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
276
288
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
277
289
|
tickLabelPlacement?: "middle" | "tick";
|
|
278
|
-
data?: readonly any[] | undefined;
|
|
279
|
-
dataKey?: string | undefined;
|
|
280
290
|
id: import("../internals/index.js").AxisId;
|
|
281
291
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
292
|
+
data?: readonly any[] | undefined;
|
|
293
|
+
dataKey?: string | undefined;
|
|
294
|
+
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
282
295
|
height: number;
|
|
283
296
|
position?: "top" | "bottom" | "none";
|
|
284
297
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
285
298
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
286
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
287
|
-
min: import("
|
|
288
|
-
max: import("
|
|
299
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
300
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
301
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
289
302
|
}) | undefined;
|
|
290
303
|
hideTooltip?: boolean | undefined;
|
|
291
304
|
ignoreTooltip?: boolean | undefined;
|
|
292
305
|
offset: number;
|
|
293
306
|
scaleType: "linear";
|
|
294
|
-
colorScale?: import("
|
|
307
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
295
308
|
triggerTooltip?: boolean;
|
|
309
|
+
isFullCircle?: boolean;
|
|
296
310
|
} | {
|
|
297
311
|
axis?: "x";
|
|
298
312
|
tickLabelMinGap: number;
|
|
@@ -316,24 +330,26 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
316
330
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
317
331
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
318
332
|
tickLabelPlacement?: "middle" | "tick";
|
|
319
|
-
data?: readonly any[] | undefined;
|
|
320
|
-
dataKey?: string | undefined;
|
|
321
333
|
id: import("../internals/index.js").AxisId;
|
|
322
334
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
335
|
+
data?: readonly any[] | undefined;
|
|
336
|
+
dataKey?: string | undefined;
|
|
337
|
+
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
323
338
|
height: number;
|
|
324
339
|
position?: "top" | "bottom" | "none";
|
|
325
340
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
326
341
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
327
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
328
|
-
min: import("
|
|
329
|
-
max: import("
|
|
342
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
343
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
344
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
330
345
|
}) | undefined;
|
|
331
346
|
hideTooltip?: boolean | undefined;
|
|
332
347
|
ignoreTooltip?: boolean | undefined;
|
|
333
348
|
offset: number;
|
|
334
349
|
scaleType: "linear";
|
|
335
|
-
colorScale?: import("
|
|
350
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
336
351
|
triggerTooltip?: boolean;
|
|
352
|
+
isFullCircle?: boolean;
|
|
337
353
|
} | {
|
|
338
354
|
axis?: "x";
|
|
339
355
|
tickLabelMinGap: number;
|
|
@@ -357,24 +373,26 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
357
373
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
358
374
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
359
375
|
tickLabelPlacement?: "middle" | "tick";
|
|
360
|
-
data?: readonly any[] | undefined;
|
|
361
|
-
dataKey?: string | undefined;
|
|
362
376
|
id: import("../internals/index.js").AxisId;
|
|
363
377
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
378
|
+
data?: readonly any[] | undefined;
|
|
379
|
+
dataKey?: string | undefined;
|
|
380
|
+
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
364
381
|
height: number;
|
|
365
382
|
position?: "top" | "bottom" | "none";
|
|
366
383
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
367
384
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
368
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
369
|
-
min: import("
|
|
370
|
-
max: import("
|
|
385
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
386
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
387
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
371
388
|
}) | undefined;
|
|
372
389
|
hideTooltip?: boolean | undefined;
|
|
373
390
|
ignoreTooltip?: boolean | undefined;
|
|
374
391
|
offset: number;
|
|
375
392
|
scaleType: "linear";
|
|
376
|
-
colorScale?: import("
|
|
393
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
377
394
|
triggerTooltip?: boolean;
|
|
395
|
+
isFullCircle?: boolean;
|
|
378
396
|
} | {
|
|
379
397
|
axis?: "x";
|
|
380
398
|
tickLabelMinGap: number;
|
|
@@ -398,24 +416,26 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
398
416
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
399
417
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
400
418
|
tickLabelPlacement?: "middle" | "tick";
|
|
401
|
-
data?: readonly any[] | undefined;
|
|
402
|
-
dataKey?: string | undefined;
|
|
403
419
|
id: import("../internals/index.js").AxisId;
|
|
404
420
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
421
|
+
data?: readonly any[] | undefined;
|
|
422
|
+
dataKey?: string | undefined;
|
|
423
|
+
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
405
424
|
height: number;
|
|
406
425
|
position?: "top" | "bottom" | "none";
|
|
407
426
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
408
427
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
409
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
410
|
-
min: import("
|
|
411
|
-
max: import("
|
|
428
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
429
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
430
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
412
431
|
}) | undefined;
|
|
413
432
|
hideTooltip?: boolean | undefined;
|
|
414
433
|
ignoreTooltip?: boolean | undefined;
|
|
415
434
|
offset: number;
|
|
416
435
|
scaleType: "time";
|
|
417
|
-
colorScale?: import("
|
|
436
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
418
437
|
triggerTooltip?: boolean;
|
|
438
|
+
isFullCircle?: boolean;
|
|
419
439
|
} | {
|
|
420
440
|
axis?: "x";
|
|
421
441
|
tickLabelMinGap: number;
|
|
@@ -439,24 +459,26 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
439
459
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
440
460
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
441
461
|
tickLabelPlacement?: "middle" | "tick";
|
|
442
|
-
data?: readonly any[] | undefined;
|
|
443
|
-
dataKey?: string | undefined;
|
|
444
462
|
id: import("../internals/index.js").AxisId;
|
|
445
463
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
464
|
+
data?: readonly any[] | undefined;
|
|
465
|
+
dataKey?: string | undefined;
|
|
466
|
+
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
446
467
|
height: number;
|
|
447
468
|
position?: "top" | "bottom" | "none";
|
|
448
469
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
449
470
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
450
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
451
|
-
min: import("
|
|
452
|
-
max: import("
|
|
471
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
472
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
473
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
453
474
|
}) | undefined;
|
|
454
475
|
hideTooltip?: boolean | undefined;
|
|
455
476
|
ignoreTooltip?: boolean | undefined;
|
|
456
477
|
offset: number;
|
|
457
478
|
scaleType: "time";
|
|
458
|
-
colorScale?: import("
|
|
479
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
459
480
|
triggerTooltip?: boolean;
|
|
481
|
+
isFullCircle?: boolean;
|
|
460
482
|
} | {
|
|
461
483
|
axis?: "x";
|
|
462
484
|
tickLabelMinGap: number;
|
|
@@ -480,24 +502,26 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
480
502
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
481
503
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
482
504
|
tickLabelPlacement?: "middle" | "tick";
|
|
483
|
-
data?: readonly any[] | undefined;
|
|
484
|
-
dataKey?: string | undefined;
|
|
485
505
|
id: import("../internals/index.js").AxisId;
|
|
486
506
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
507
|
+
data?: readonly any[] | undefined;
|
|
508
|
+
dataKey?: string | undefined;
|
|
509
|
+
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
487
510
|
height: number;
|
|
488
511
|
position?: "top" | "bottom" | "none";
|
|
489
512
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
490
513
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
491
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
492
|
-
min: import("
|
|
493
|
-
max: import("
|
|
514
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
515
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
516
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
494
517
|
}) | undefined;
|
|
495
518
|
hideTooltip?: boolean | undefined;
|
|
496
519
|
ignoreTooltip?: boolean | undefined;
|
|
497
520
|
offset: number;
|
|
498
521
|
scaleType: "time";
|
|
499
|
-
colorScale?: import("
|
|
522
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
500
523
|
triggerTooltip?: boolean;
|
|
524
|
+
isFullCircle?: boolean;
|
|
501
525
|
} | {
|
|
502
526
|
axis?: "x";
|
|
503
527
|
tickLabelMinGap: number;
|
|
@@ -521,24 +545,26 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
521
545
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
522
546
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
523
547
|
tickLabelPlacement?: "middle" | "tick";
|
|
524
|
-
data?: readonly any[] | undefined;
|
|
525
|
-
dataKey?: string | undefined;
|
|
526
548
|
id: import("../internals/index.js").AxisId;
|
|
527
549
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
550
|
+
data?: readonly any[] | undefined;
|
|
551
|
+
dataKey?: string | undefined;
|
|
552
|
+
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
528
553
|
height: number;
|
|
529
554
|
position?: "top" | "bottom" | "none";
|
|
530
555
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
531
556
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
532
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
533
|
-
min: import("
|
|
534
|
-
max: import("
|
|
557
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
558
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
559
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
535
560
|
}) | undefined;
|
|
536
561
|
hideTooltip?: boolean | undefined;
|
|
537
562
|
ignoreTooltip?: boolean | undefined;
|
|
538
563
|
offset: number;
|
|
539
564
|
scaleType: "time";
|
|
540
|
-
colorScale?: import("
|
|
565
|
+
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>;
|
|
541
566
|
triggerTooltip?: boolean;
|
|
567
|
+
isFullCircle?: boolean;
|
|
542
568
|
} | {
|
|
543
569
|
axis?: "x";
|
|
544
570
|
tickLabelMinGap: number;
|
|
@@ -562,24 +588,26 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
562
588
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
563
589
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
564
590
|
tickLabelPlacement?: "middle" | "tick";
|
|
565
|
-
data?: readonly any[] | undefined;
|
|
566
|
-
dataKey?: string | undefined;
|
|
567
591
|
id: import("../internals/index.js").AxisId;
|
|
568
592
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
593
|
+
data?: readonly any[] | undefined;
|
|
594
|
+
dataKey?: string | undefined;
|
|
595
|
+
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
569
596
|
height: number;
|
|
570
597
|
position?: "top" | "bottom" | "none";
|
|
571
598
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
572
599
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
573
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
574
|
-
min: import("
|
|
575
|
-
max: import("
|
|
600
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
601
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
602
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
576
603
|
}) | undefined;
|
|
577
604
|
hideTooltip?: boolean | undefined;
|
|
578
605
|
ignoreTooltip?: boolean | undefined;
|
|
579
606
|
offset: number;
|
|
580
607
|
scaleType: "time";
|
|
581
|
-
colorScale?: import("
|
|
608
|
+
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>;
|
|
582
609
|
triggerTooltip?: boolean;
|
|
610
|
+
isFullCircle?: boolean;
|
|
583
611
|
} | {
|
|
584
612
|
axis?: "x";
|
|
585
613
|
tickLabelMinGap: number;
|
|
@@ -603,24 +631,26 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
603
631
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
604
632
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
605
633
|
tickLabelPlacement?: "middle" | "tick";
|
|
606
|
-
data?: readonly any[] | undefined;
|
|
607
|
-
dataKey?: string | undefined;
|
|
608
634
|
id: import("../internals/index.js").AxisId;
|
|
609
635
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
636
|
+
data?: readonly any[] | undefined;
|
|
637
|
+
dataKey?: string | undefined;
|
|
638
|
+
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
610
639
|
height: number;
|
|
611
640
|
position?: "top" | "bottom" | "none";
|
|
612
641
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
613
642
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
614
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
615
|
-
min: import("
|
|
616
|
-
max: import("
|
|
643
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
644
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
645
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
617
646
|
}) | undefined;
|
|
618
647
|
hideTooltip?: boolean | undefined;
|
|
619
648
|
ignoreTooltip?: boolean | undefined;
|
|
620
649
|
offset: number;
|
|
621
650
|
scaleType: "time";
|
|
622
|
-
colorScale?: import("
|
|
651
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
623
652
|
triggerTooltip?: boolean;
|
|
653
|
+
isFullCircle?: boolean;
|
|
624
654
|
} | {
|
|
625
655
|
axis?: "x";
|
|
626
656
|
tickLabelMinGap: number;
|
|
@@ -644,24 +674,26 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
644
674
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
645
675
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
646
676
|
tickLabelPlacement?: "middle" | "tick";
|
|
647
|
-
data?: readonly any[] | undefined;
|
|
648
|
-
dataKey?: string | undefined;
|
|
649
677
|
id: import("../internals/index.js").AxisId;
|
|
650
678
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
679
|
+
data?: readonly any[] | undefined;
|
|
680
|
+
dataKey?: string | undefined;
|
|
681
|
+
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
651
682
|
height: number;
|
|
652
683
|
position?: "top" | "bottom" | "none";
|
|
653
684
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
654
685
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
655
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
656
|
-
min: import("
|
|
657
|
-
max: import("
|
|
686
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
687
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
688
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
658
689
|
}) | undefined;
|
|
659
690
|
hideTooltip?: boolean | undefined;
|
|
660
691
|
ignoreTooltip?: boolean | undefined;
|
|
661
692
|
offset: number;
|
|
662
693
|
scaleType: "time";
|
|
663
|
-
colorScale?: import("
|
|
694
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
664
695
|
triggerTooltip?: boolean;
|
|
696
|
+
isFullCircle?: boolean;
|
|
665
697
|
} | {
|
|
666
698
|
axis?: "x";
|
|
667
699
|
tickLabelMinGap: number;
|
|
@@ -685,24 +717,26 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
685
717
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
686
718
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
687
719
|
tickLabelPlacement?: "middle" | "tick";
|
|
688
|
-
data?: readonly any[] | undefined;
|
|
689
|
-
dataKey?: string | undefined;
|
|
690
720
|
id: import("../internals/index.js").AxisId;
|
|
691
721
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
722
|
+
data?: readonly any[] | undefined;
|
|
723
|
+
dataKey?: string | undefined;
|
|
724
|
+
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
692
725
|
height: number;
|
|
693
726
|
position?: "top" | "bottom" | "none";
|
|
694
727
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
695
728
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
696
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
697
|
-
min: import("
|
|
698
|
-
max: import("
|
|
729
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
730
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
731
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
699
732
|
}) | undefined;
|
|
700
733
|
hideTooltip?: boolean | undefined;
|
|
701
734
|
ignoreTooltip?: boolean | undefined;
|
|
702
735
|
offset: number;
|
|
703
736
|
scaleType: "time";
|
|
704
|
-
colorScale?: import("
|
|
737
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
705
738
|
triggerTooltip?: boolean;
|
|
739
|
+
isFullCircle?: boolean;
|
|
706
740
|
} | {
|
|
707
741
|
axis?: "x";
|
|
708
742
|
tickLabelMinGap: number;
|
|
@@ -726,24 +760,26 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
726
760
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
727
761
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
728
762
|
tickLabelPlacement?: "middle" | "tick";
|
|
729
|
-
data?: readonly any[] | undefined;
|
|
730
|
-
dataKey?: string | undefined;
|
|
731
763
|
id: import("../internals/index.js").AxisId;
|
|
732
764
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
765
|
+
data?: readonly any[] | undefined;
|
|
766
|
+
dataKey?: string | undefined;
|
|
767
|
+
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
733
768
|
height: number;
|
|
734
769
|
position?: "top" | "bottom" | "none";
|
|
735
770
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
736
771
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
737
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
738
|
-
min: import("
|
|
739
|
-
max: import("
|
|
772
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
773
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
774
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
740
775
|
}) | undefined;
|
|
741
776
|
hideTooltip?: boolean | undefined;
|
|
742
777
|
ignoreTooltip?: boolean | undefined;
|
|
743
778
|
offset: number;
|
|
744
779
|
scaleType: "time";
|
|
745
|
-
colorScale?: import("
|
|
780
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
746
781
|
triggerTooltip?: boolean;
|
|
782
|
+
isFullCircle?: boolean;
|
|
747
783
|
} | {
|
|
748
784
|
axis?: "x";
|
|
749
785
|
tickLabelMinGap: number;
|
|
@@ -767,24 +803,26 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
767
803
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
768
804
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
769
805
|
tickLabelPlacement?: "middle" | "tick";
|
|
770
|
-
data?: readonly any[] | undefined;
|
|
771
|
-
dataKey?: string | undefined;
|
|
772
806
|
id: import("../internals/index.js").AxisId;
|
|
773
807
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
808
|
+
data?: readonly any[] | undefined;
|
|
809
|
+
dataKey?: string | undefined;
|
|
810
|
+
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
774
811
|
height: number;
|
|
775
812
|
position?: "top" | "bottom" | "none";
|
|
776
813
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
777
814
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
778
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
779
|
-
min: import("
|
|
780
|
-
max: import("
|
|
815
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
816
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
817
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
781
818
|
}) | undefined;
|
|
782
819
|
hideTooltip?: boolean | undefined;
|
|
783
820
|
ignoreTooltip?: boolean | undefined;
|
|
784
821
|
offset: number;
|
|
785
822
|
scaleType: "log";
|
|
786
|
-
colorScale?: import("
|
|
823
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
787
824
|
triggerTooltip?: boolean;
|
|
825
|
+
isFullCircle?: boolean;
|
|
788
826
|
} | {
|
|
789
827
|
axis?: "x";
|
|
790
828
|
tickLabelMinGap: number;
|
|
@@ -808,24 +846,26 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
808
846
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
809
847
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
810
848
|
tickLabelPlacement?: "middle" | "tick";
|
|
811
|
-
data?: readonly any[] | undefined;
|
|
812
|
-
dataKey?: string | undefined;
|
|
813
849
|
id: import("../internals/index.js").AxisId;
|
|
814
850
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
851
|
+
data?: readonly any[] | undefined;
|
|
852
|
+
dataKey?: string | undefined;
|
|
853
|
+
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
815
854
|
height: number;
|
|
816
855
|
position?: "top" | "bottom" | "none";
|
|
817
856
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
818
857
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
819
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
820
|
-
min: import("
|
|
821
|
-
max: import("
|
|
858
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
859
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
860
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
822
861
|
}) | undefined;
|
|
823
862
|
hideTooltip?: boolean | undefined;
|
|
824
863
|
ignoreTooltip?: boolean | undefined;
|
|
825
864
|
offset: number;
|
|
826
865
|
scaleType: "log";
|
|
827
|
-
colorScale?: import("
|
|
866
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
828
867
|
triggerTooltip?: boolean;
|
|
868
|
+
isFullCircle?: boolean;
|
|
829
869
|
} | {
|
|
830
870
|
axis?: "x";
|
|
831
871
|
tickLabelMinGap: number;
|
|
@@ -849,24 +889,26 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
849
889
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
850
890
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
851
891
|
tickLabelPlacement?: "middle" | "tick";
|
|
852
|
-
data?: readonly any[] | undefined;
|
|
853
|
-
dataKey?: string | undefined;
|
|
854
892
|
id: import("../internals/index.js").AxisId;
|
|
855
893
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
894
|
+
data?: readonly any[] | undefined;
|
|
895
|
+
dataKey?: string | undefined;
|
|
896
|
+
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
856
897
|
height: number;
|
|
857
898
|
position?: "top" | "bottom" | "none";
|
|
858
899
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
859
900
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
860
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
861
|
-
min: import("
|
|
862
|
-
max: import("
|
|
901
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
902
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
903
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
863
904
|
}) | undefined;
|
|
864
905
|
hideTooltip?: boolean | undefined;
|
|
865
906
|
ignoreTooltip?: boolean | undefined;
|
|
866
907
|
offset: number;
|
|
867
908
|
scaleType: "log";
|
|
868
|
-
colorScale?: import("
|
|
909
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
869
910
|
triggerTooltip?: boolean;
|
|
911
|
+
isFullCircle?: boolean;
|
|
870
912
|
} | {
|
|
871
913
|
axis?: "x";
|
|
872
914
|
tickLabelMinGap: number;
|
|
@@ -890,24 +932,26 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
890
932
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
891
933
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
892
934
|
tickLabelPlacement?: "middle" | "tick";
|
|
893
|
-
data?: readonly any[] | undefined;
|
|
894
|
-
dataKey?: string | undefined;
|
|
895
935
|
id: import("../internals/index.js").AxisId;
|
|
896
936
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
937
|
+
data?: readonly any[] | undefined;
|
|
938
|
+
dataKey?: string | undefined;
|
|
939
|
+
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
897
940
|
height: number;
|
|
898
941
|
position?: "top" | "bottom" | "none";
|
|
899
942
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
900
943
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
901
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
902
|
-
min: import("
|
|
903
|
-
max: import("
|
|
944
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
945
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
946
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
904
947
|
}) | undefined;
|
|
905
948
|
hideTooltip?: boolean | undefined;
|
|
906
949
|
ignoreTooltip?: boolean | undefined;
|
|
907
950
|
offset: number;
|
|
908
951
|
scaleType: "log";
|
|
909
|
-
colorScale?: import("
|
|
952
|
+
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>;
|
|
910
953
|
triggerTooltip?: boolean;
|
|
954
|
+
isFullCircle?: boolean;
|
|
911
955
|
} | {
|
|
912
956
|
axis?: "x";
|
|
913
957
|
tickLabelMinGap: number;
|
|
@@ -931,24 +975,26 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
931
975
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
932
976
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
933
977
|
tickLabelPlacement?: "middle" | "tick";
|
|
934
|
-
data?: readonly any[] | undefined;
|
|
935
|
-
dataKey?: string | undefined;
|
|
936
978
|
id: import("../internals/index.js").AxisId;
|
|
937
979
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
980
|
+
data?: readonly any[] | undefined;
|
|
981
|
+
dataKey?: string | undefined;
|
|
982
|
+
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
938
983
|
height: number;
|
|
939
984
|
position?: "top" | "bottom" | "none";
|
|
940
985
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
941
986
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
942
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
943
|
-
min: import("
|
|
944
|
-
max: import("
|
|
987
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
988
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
989
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
945
990
|
}) | undefined;
|
|
946
991
|
hideTooltip?: boolean | undefined;
|
|
947
992
|
ignoreTooltip?: boolean | undefined;
|
|
948
993
|
offset: number;
|
|
949
994
|
scaleType: "log";
|
|
950
|
-
colorScale?: import("
|
|
995
|
+
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>;
|
|
951
996
|
triggerTooltip?: boolean;
|
|
997
|
+
isFullCircle?: boolean;
|
|
952
998
|
} | {
|
|
953
999
|
axis?: "x";
|
|
954
1000
|
tickLabelMinGap: number;
|
|
@@ -972,24 +1018,26 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
972
1018
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
973
1019
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
974
1020
|
tickLabelPlacement?: "middle" | "tick";
|
|
975
|
-
data?: readonly any[] | undefined;
|
|
976
|
-
dataKey?: string | undefined;
|
|
977
1021
|
id: import("../internals/index.js").AxisId;
|
|
978
1022
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1023
|
+
data?: readonly any[] | undefined;
|
|
1024
|
+
dataKey?: string | undefined;
|
|
1025
|
+
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
979
1026
|
height: number;
|
|
980
1027
|
position?: "top" | "bottom" | "none";
|
|
981
1028
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
982
1029
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
983
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
984
|
-
min: import("
|
|
985
|
-
max: import("
|
|
1030
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
1031
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1032
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
986
1033
|
}) | undefined;
|
|
987
1034
|
hideTooltip?: boolean | undefined;
|
|
988
1035
|
ignoreTooltip?: boolean | undefined;
|
|
989
1036
|
offset: number;
|
|
990
1037
|
scaleType: "log";
|
|
991
|
-
colorScale?: import("
|
|
1038
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
992
1039
|
triggerTooltip?: boolean;
|
|
1040
|
+
isFullCircle?: boolean;
|
|
993
1041
|
} | {
|
|
994
1042
|
axis?: "x";
|
|
995
1043
|
tickLabelMinGap: number;
|
|
@@ -1013,24 +1061,26 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1013
1061
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
1014
1062
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
1015
1063
|
tickLabelPlacement?: "middle" | "tick";
|
|
1016
|
-
data?: readonly any[] | undefined;
|
|
1017
|
-
dataKey?: string | undefined;
|
|
1018
1064
|
id: import("../internals/index.js").AxisId;
|
|
1019
1065
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1066
|
+
data?: readonly any[] | undefined;
|
|
1067
|
+
dataKey?: string | undefined;
|
|
1068
|
+
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
1020
1069
|
height: number;
|
|
1021
1070
|
position?: "top" | "bottom" | "none";
|
|
1022
1071
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
1023
1072
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
1024
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
1025
|
-
min: import("
|
|
1026
|
-
max: import("
|
|
1073
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
1074
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1075
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1027
1076
|
}) | undefined;
|
|
1028
1077
|
hideTooltip?: boolean | undefined;
|
|
1029
1078
|
ignoreTooltip?: boolean | undefined;
|
|
1030
1079
|
offset: number;
|
|
1031
1080
|
scaleType: "log";
|
|
1032
|
-
colorScale?: import("
|
|
1081
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
1033
1082
|
triggerTooltip?: boolean;
|
|
1083
|
+
isFullCircle?: boolean;
|
|
1034
1084
|
} | {
|
|
1035
1085
|
axis?: "x";
|
|
1036
1086
|
tickLabelMinGap: number;
|
|
@@ -1054,24 +1104,26 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1054
1104
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
1055
1105
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
1056
1106
|
tickLabelPlacement?: "middle" | "tick";
|
|
1057
|
-
data?: readonly any[] | undefined;
|
|
1058
|
-
dataKey?: string | undefined;
|
|
1059
1107
|
id: import("../internals/index.js").AxisId;
|
|
1060
1108
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1109
|
+
data?: readonly any[] | undefined;
|
|
1110
|
+
dataKey?: string | undefined;
|
|
1111
|
+
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
1061
1112
|
height: number;
|
|
1062
1113
|
position?: "top" | "bottom" | "none";
|
|
1063
1114
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
1064
1115
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
1065
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
1066
|
-
min: import("
|
|
1067
|
-
max: import("
|
|
1116
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
1117
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1118
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1068
1119
|
}) | undefined;
|
|
1069
1120
|
hideTooltip?: boolean | undefined;
|
|
1070
1121
|
ignoreTooltip?: boolean | undefined;
|
|
1071
1122
|
offset: number;
|
|
1072
1123
|
scaleType: "log";
|
|
1073
|
-
colorScale?: import("
|
|
1124
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
1074
1125
|
triggerTooltip?: boolean;
|
|
1126
|
+
isFullCircle?: boolean;
|
|
1075
1127
|
} | {
|
|
1076
1128
|
axis?: "x";
|
|
1077
1129
|
tickLabelMinGap: number;
|
|
@@ -1095,24 +1147,26 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1095
1147
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
1096
1148
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
1097
1149
|
tickLabelPlacement?: "middle" | "tick";
|
|
1098
|
-
data?: readonly any[] | undefined;
|
|
1099
|
-
dataKey?: string | undefined;
|
|
1100
1150
|
id: import("../internals/index.js").AxisId;
|
|
1101
1151
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1152
|
+
data?: readonly any[] | undefined;
|
|
1153
|
+
dataKey?: string | undefined;
|
|
1154
|
+
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
1102
1155
|
height: number;
|
|
1103
1156
|
position?: "top" | "bottom" | "none";
|
|
1104
1157
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
1105
1158
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
1106
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
1107
|
-
min: import("
|
|
1108
|
-
max: import("
|
|
1159
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
1160
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1161
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1109
1162
|
}) | undefined;
|
|
1110
1163
|
hideTooltip?: boolean | undefined;
|
|
1111
1164
|
ignoreTooltip?: boolean | undefined;
|
|
1112
1165
|
offset: number;
|
|
1113
1166
|
scaleType: "log";
|
|
1114
|
-
colorScale?: import("
|
|
1167
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
1115
1168
|
triggerTooltip?: boolean;
|
|
1169
|
+
isFullCircle?: boolean;
|
|
1116
1170
|
} | {
|
|
1117
1171
|
axis?: "x";
|
|
1118
1172
|
tickLabelMinGap: number;
|
|
@@ -1136,17 +1190,18 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1136
1190
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
1137
1191
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
1138
1192
|
tickLabelPlacement?: "middle" | "tick";
|
|
1139
|
-
data?: readonly any[] | undefined;
|
|
1140
|
-
dataKey?: string | undefined;
|
|
1141
1193
|
id: import("../internals/index.js").AxisId;
|
|
1142
1194
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1195
|
+
data?: readonly any[] | undefined;
|
|
1196
|
+
dataKey?: string | undefined;
|
|
1197
|
+
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
1143
1198
|
height: number;
|
|
1144
1199
|
position?: "top" | "bottom" | "none";
|
|
1145
1200
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
1146
1201
|
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
1147
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
1148
|
-
min: import("
|
|
1149
|
-
max: import("
|
|
1202
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
1203
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1204
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1150
1205
|
}) | undefined;
|
|
1151
1206
|
hideTooltip?: boolean | undefined;
|
|
1152
1207
|
ignoreTooltip?: boolean | undefined;
|
|
@@ -1156,8 +1211,9 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1156
1211
|
categoryGapRatio: number;
|
|
1157
1212
|
barGapRatio: number;
|
|
1158
1213
|
groups?: import("../internals/index.js").AxisGroup[];
|
|
1159
|
-
colorScale?: import("
|
|
1214
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
1160
1215
|
triggerTooltip?: boolean;
|
|
1216
|
+
isFullCircle?: boolean;
|
|
1161
1217
|
} | {
|
|
1162
1218
|
axis?: "x";
|
|
1163
1219
|
tickLabelMinGap: number;
|
|
@@ -1181,17 +1237,18 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1181
1237
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
1182
1238
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
1183
1239
|
tickLabelPlacement?: "middle" | "tick";
|
|
1184
|
-
data?: readonly any[] | undefined;
|
|
1185
|
-
dataKey?: string | undefined;
|
|
1186
1240
|
id: import("../internals/index.js").AxisId;
|
|
1187
1241
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1242
|
+
data?: readonly any[] | undefined;
|
|
1243
|
+
dataKey?: string | undefined;
|
|
1244
|
+
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
1188
1245
|
height: number;
|
|
1189
1246
|
position?: "top" | "bottom" | "none";
|
|
1190
1247
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
1191
1248
|
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
1192
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
1193
|
-
min: import("
|
|
1194
|
-
max: import("
|
|
1249
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
1250
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1251
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1195
1252
|
}) | undefined;
|
|
1196
1253
|
hideTooltip?: boolean | undefined;
|
|
1197
1254
|
ignoreTooltip?: boolean | undefined;
|
|
@@ -1201,8 +1258,9 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1201
1258
|
categoryGapRatio: number;
|
|
1202
1259
|
barGapRatio: number;
|
|
1203
1260
|
groups?: import("../internals/index.js").AxisGroup[];
|
|
1204
|
-
colorScale?: import("
|
|
1261
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
1205
1262
|
triggerTooltip?: boolean;
|
|
1263
|
+
isFullCircle?: boolean;
|
|
1206
1264
|
} | {
|
|
1207
1265
|
axis?: "x";
|
|
1208
1266
|
tickLabelMinGap: number;
|
|
@@ -1226,17 +1284,18 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1226
1284
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
1227
1285
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
1228
1286
|
tickLabelPlacement?: "middle" | "tick";
|
|
1229
|
-
data?: readonly any[] | undefined;
|
|
1230
|
-
dataKey?: string | undefined;
|
|
1231
1287
|
id: import("../internals/index.js").AxisId;
|
|
1232
1288
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1289
|
+
data?: readonly any[] | undefined;
|
|
1290
|
+
dataKey?: string | undefined;
|
|
1291
|
+
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
1233
1292
|
height: number;
|
|
1234
1293
|
position?: "top" | "bottom" | "none";
|
|
1235
1294
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
1236
1295
|
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
1237
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
1238
|
-
min: import("
|
|
1239
|
-
max: import("
|
|
1296
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
1297
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1298
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1240
1299
|
}) | undefined;
|
|
1241
1300
|
hideTooltip?: boolean | undefined;
|
|
1242
1301
|
ignoreTooltip?: boolean | undefined;
|
|
@@ -1246,8 +1305,9 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1246
1305
|
categoryGapRatio: number;
|
|
1247
1306
|
barGapRatio: number;
|
|
1248
1307
|
groups?: import("../internals/index.js").AxisGroup[];
|
|
1249
|
-
colorScale?: import("
|
|
1308
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
1250
1309
|
triggerTooltip?: boolean;
|
|
1310
|
+
isFullCircle?: boolean;
|
|
1251
1311
|
} | {
|
|
1252
1312
|
axis?: "x";
|
|
1253
1313
|
tickLabelMinGap: number;
|
|
@@ -1271,17 +1331,18 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1271
1331
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
1272
1332
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
1273
1333
|
tickLabelPlacement?: "middle" | "tick";
|
|
1274
|
-
data?: readonly any[] | undefined;
|
|
1275
|
-
dataKey?: string | undefined;
|
|
1276
1334
|
id: import("../internals/index.js").AxisId;
|
|
1277
1335
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1336
|
+
data?: readonly any[] | undefined;
|
|
1337
|
+
dataKey?: string | undefined;
|
|
1338
|
+
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
1278
1339
|
height: number;
|
|
1279
1340
|
position?: "top" | "bottom" | "none";
|
|
1280
1341
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
1281
1342
|
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
1282
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
1283
|
-
min: import("
|
|
1284
|
-
max: import("
|
|
1343
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
1344
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1345
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1285
1346
|
}) | undefined;
|
|
1286
1347
|
hideTooltip?: boolean | undefined;
|
|
1287
1348
|
ignoreTooltip?: boolean | undefined;
|
|
@@ -1291,8 +1352,9 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1291
1352
|
categoryGapRatio: number;
|
|
1292
1353
|
barGapRatio: number;
|
|
1293
1354
|
groups?: import("../internals/index.js").AxisGroup[];
|
|
1294
|
-
colorScale?: import("
|
|
1355
|
+
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>;
|
|
1295
1356
|
triggerTooltip?: boolean;
|
|
1357
|
+
isFullCircle?: boolean;
|
|
1296
1358
|
} | {
|
|
1297
1359
|
axis?: "x";
|
|
1298
1360
|
tickLabelMinGap: number;
|
|
@@ -1316,17 +1378,18 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1316
1378
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
1317
1379
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
1318
1380
|
tickLabelPlacement?: "middle" | "tick";
|
|
1319
|
-
data?: readonly any[] | undefined;
|
|
1320
|
-
dataKey?: string | undefined;
|
|
1321
1381
|
id: import("../internals/index.js").AxisId;
|
|
1322
1382
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1383
|
+
data?: readonly any[] | undefined;
|
|
1384
|
+
dataKey?: string | undefined;
|
|
1385
|
+
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
1323
1386
|
height: number;
|
|
1324
1387
|
position?: "top" | "bottom" | "none";
|
|
1325
1388
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
1326
1389
|
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
1327
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
1328
|
-
min: import("
|
|
1329
|
-
max: import("
|
|
1390
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
1391
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1392
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1330
1393
|
}) | undefined;
|
|
1331
1394
|
hideTooltip?: boolean | undefined;
|
|
1332
1395
|
ignoreTooltip?: boolean | undefined;
|
|
@@ -1336,8 +1399,9 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1336
1399
|
categoryGapRatio: number;
|
|
1337
1400
|
barGapRatio: number;
|
|
1338
1401
|
groups?: import("../internals/index.js").AxisGroup[];
|
|
1339
|
-
colorScale?: import("
|
|
1402
|
+
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>;
|
|
1340
1403
|
triggerTooltip?: boolean;
|
|
1404
|
+
isFullCircle?: boolean;
|
|
1341
1405
|
} | {
|
|
1342
1406
|
axis?: "x";
|
|
1343
1407
|
tickLabelMinGap: number;
|
|
@@ -1361,17 +1425,18 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1361
1425
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
1362
1426
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
1363
1427
|
tickLabelPlacement?: "middle" | "tick";
|
|
1364
|
-
data?: readonly any[] | undefined;
|
|
1365
|
-
dataKey?: string | undefined;
|
|
1366
1428
|
id: import("../internals/index.js").AxisId;
|
|
1367
1429
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1430
|
+
data?: readonly any[] | undefined;
|
|
1431
|
+
dataKey?: string | undefined;
|
|
1432
|
+
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
1368
1433
|
height: number;
|
|
1369
1434
|
position?: "top" | "bottom" | "none";
|
|
1370
1435
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
1371
1436
|
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
1372
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
1373
|
-
min: import("
|
|
1374
|
-
max: import("
|
|
1437
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
1438
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1439
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1375
1440
|
}) | undefined;
|
|
1376
1441
|
hideTooltip?: boolean | undefined;
|
|
1377
1442
|
ignoreTooltip?: boolean | undefined;
|
|
@@ -1381,8 +1446,9 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1381
1446
|
categoryGapRatio: number;
|
|
1382
1447
|
barGapRatio: number;
|
|
1383
1448
|
groups?: import("../internals/index.js").AxisGroup[];
|
|
1384
|
-
colorScale?: import("
|
|
1449
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
1385
1450
|
triggerTooltip?: boolean;
|
|
1451
|
+
isFullCircle?: boolean;
|
|
1386
1452
|
} | {
|
|
1387
1453
|
axis?: "x";
|
|
1388
1454
|
tickLabelMinGap: number;
|
|
@@ -1406,17 +1472,18 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1406
1472
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
1407
1473
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
1408
1474
|
tickLabelPlacement?: "middle" | "tick";
|
|
1409
|
-
data?: readonly any[] | undefined;
|
|
1410
|
-
dataKey?: string | undefined;
|
|
1411
1475
|
id: import("../internals/index.js").AxisId;
|
|
1412
1476
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1477
|
+
data?: readonly any[] | undefined;
|
|
1478
|
+
dataKey?: string | undefined;
|
|
1479
|
+
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
1413
1480
|
height: number;
|
|
1414
1481
|
position?: "top" | "bottom" | "none";
|
|
1415
1482
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
1416
1483
|
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
1417
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
1418
|
-
min: import("
|
|
1419
|
-
max: import("
|
|
1484
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
1485
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1486
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1420
1487
|
}) | undefined;
|
|
1421
1488
|
hideTooltip?: boolean | undefined;
|
|
1422
1489
|
ignoreTooltip?: boolean | undefined;
|
|
@@ -1426,8 +1493,9 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1426
1493
|
categoryGapRatio: number;
|
|
1427
1494
|
barGapRatio: number;
|
|
1428
1495
|
groups?: import("../internals/index.js").AxisGroup[];
|
|
1429
|
-
colorScale?: import("
|
|
1496
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
1430
1497
|
triggerTooltip?: boolean;
|
|
1498
|
+
isFullCircle?: boolean;
|
|
1431
1499
|
} | {
|
|
1432
1500
|
axis?: "x";
|
|
1433
1501
|
tickLabelMinGap: number;
|
|
@@ -1451,17 +1519,18 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1451
1519
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
1452
1520
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
1453
1521
|
tickLabelPlacement?: "middle" | "tick";
|
|
1454
|
-
data?: readonly any[] | undefined;
|
|
1455
|
-
dataKey?: string | undefined;
|
|
1456
1522
|
id: import("../internals/index.js").AxisId;
|
|
1457
1523
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1524
|
+
data?: readonly any[] | undefined;
|
|
1525
|
+
dataKey?: string | undefined;
|
|
1526
|
+
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
1458
1527
|
height: number;
|
|
1459
1528
|
position?: "top" | "bottom" | "none";
|
|
1460
1529
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
1461
1530
|
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
1462
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
1463
|
-
min: import("
|
|
1464
|
-
max: import("
|
|
1531
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
1532
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1533
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1465
1534
|
}) | undefined;
|
|
1466
1535
|
hideTooltip?: boolean | undefined;
|
|
1467
1536
|
ignoreTooltip?: boolean | undefined;
|
|
@@ -1471,8 +1540,9 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1471
1540
|
categoryGapRatio: number;
|
|
1472
1541
|
barGapRatio: number;
|
|
1473
1542
|
groups?: import("../internals/index.js").AxisGroup[];
|
|
1474
|
-
colorScale?: import("
|
|
1543
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
1475
1544
|
triggerTooltip?: boolean;
|
|
1545
|
+
isFullCircle?: boolean;
|
|
1476
1546
|
} | {
|
|
1477
1547
|
axis?: "x";
|
|
1478
1548
|
tickLabelMinGap: number;
|
|
@@ -1496,17 +1566,18 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1496
1566
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
1497
1567
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
1498
1568
|
tickLabelPlacement?: "middle" | "tick";
|
|
1499
|
-
data?: readonly any[] | undefined;
|
|
1500
|
-
dataKey?: string | undefined;
|
|
1501
1569
|
id: import("../internals/index.js").AxisId;
|
|
1502
1570
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1571
|
+
data?: readonly any[] | undefined;
|
|
1572
|
+
dataKey?: string | undefined;
|
|
1573
|
+
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
1503
1574
|
height: number;
|
|
1504
1575
|
position?: "top" | "bottom" | "none";
|
|
1505
1576
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
1506
1577
|
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
1507
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
1508
|
-
min: import("
|
|
1509
|
-
max: import("
|
|
1578
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
1579
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1580
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1510
1581
|
}) | undefined;
|
|
1511
1582
|
hideTooltip?: boolean | undefined;
|
|
1512
1583
|
ignoreTooltip?: boolean | undefined;
|
|
@@ -1516,8 +1587,9 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1516
1587
|
categoryGapRatio: number;
|
|
1517
1588
|
barGapRatio: number;
|
|
1518
1589
|
groups?: import("../internals/index.js").AxisGroup[];
|
|
1519
|
-
colorScale?: import("
|
|
1590
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
1520
1591
|
triggerTooltip?: boolean;
|
|
1592
|
+
isFullCircle?: boolean;
|
|
1521
1593
|
} | {
|
|
1522
1594
|
axis?: "x";
|
|
1523
1595
|
tickLabelMinGap: number;
|
|
@@ -1541,17 +1613,18 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1541
1613
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
1542
1614
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
1543
1615
|
tickLabelPlacement?: "middle" | "tick";
|
|
1544
|
-
data?: readonly any[] | undefined;
|
|
1545
|
-
dataKey?: string | undefined;
|
|
1546
1616
|
id: import("../internals/index.js").AxisId;
|
|
1547
1617
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1618
|
+
data?: readonly any[] | undefined;
|
|
1619
|
+
dataKey?: string | undefined;
|
|
1620
|
+
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
1548
1621
|
height: number;
|
|
1549
1622
|
position?: "top" | "bottom" | "none";
|
|
1550
1623
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
1551
1624
|
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
1552
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
1553
|
-
min: import("
|
|
1554
|
-
max: import("
|
|
1625
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
1626
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1627
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1555
1628
|
}) | undefined;
|
|
1556
1629
|
hideTooltip?: boolean | undefined;
|
|
1557
1630
|
ignoreTooltip?: boolean | undefined;
|
|
@@ -1559,8 +1632,9 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1559
1632
|
scaleType: "point";
|
|
1560
1633
|
ordinalTimeTicks?: import("../index.js").OrdinalTimeTicks;
|
|
1561
1634
|
groups?: import("../internals/index.js").AxisGroup[];
|
|
1562
|
-
colorScale?: import("
|
|
1635
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
1563
1636
|
triggerTooltip?: boolean;
|
|
1637
|
+
isFullCircle?: boolean;
|
|
1564
1638
|
} | {
|
|
1565
1639
|
axis?: "x";
|
|
1566
1640
|
tickLabelMinGap: number;
|
|
@@ -1584,17 +1658,18 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1584
1658
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
1585
1659
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
1586
1660
|
tickLabelPlacement?: "middle" | "tick";
|
|
1587
|
-
data?: readonly any[] | undefined;
|
|
1588
|
-
dataKey?: string | undefined;
|
|
1589
1661
|
id: import("../internals/index.js").AxisId;
|
|
1590
1662
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1663
|
+
data?: readonly any[] | undefined;
|
|
1664
|
+
dataKey?: string | undefined;
|
|
1665
|
+
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
1591
1666
|
height: number;
|
|
1592
1667
|
position?: "top" | "bottom" | "none";
|
|
1593
1668
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
1594
1669
|
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
1595
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
1596
|
-
min: import("
|
|
1597
|
-
max: import("
|
|
1670
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
1671
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1672
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1598
1673
|
}) | undefined;
|
|
1599
1674
|
hideTooltip?: boolean | undefined;
|
|
1600
1675
|
ignoreTooltip?: boolean | undefined;
|
|
@@ -1602,8 +1677,9 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1602
1677
|
scaleType: "point";
|
|
1603
1678
|
ordinalTimeTicks?: import("../index.js").OrdinalTimeTicks;
|
|
1604
1679
|
groups?: import("../internals/index.js").AxisGroup[];
|
|
1605
|
-
colorScale?: import("
|
|
1680
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
1606
1681
|
triggerTooltip?: boolean;
|
|
1682
|
+
isFullCircle?: boolean;
|
|
1607
1683
|
} | {
|
|
1608
1684
|
axis?: "x";
|
|
1609
1685
|
tickLabelMinGap: number;
|
|
@@ -1627,17 +1703,18 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1627
1703
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
1628
1704
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
1629
1705
|
tickLabelPlacement?: "middle" | "tick";
|
|
1630
|
-
data?: readonly any[] | undefined;
|
|
1631
|
-
dataKey?: string | undefined;
|
|
1632
1706
|
id: import("../internals/index.js").AxisId;
|
|
1633
1707
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1708
|
+
data?: readonly any[] | undefined;
|
|
1709
|
+
dataKey?: string | undefined;
|
|
1710
|
+
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
1634
1711
|
height: number;
|
|
1635
1712
|
position?: "top" | "bottom" | "none";
|
|
1636
1713
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
1637
1714
|
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
1638
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
1639
|
-
min: import("
|
|
1640
|
-
max: import("
|
|
1715
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
1716
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1717
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1641
1718
|
}) | undefined;
|
|
1642
1719
|
hideTooltip?: boolean | undefined;
|
|
1643
1720
|
ignoreTooltip?: boolean | undefined;
|
|
@@ -1645,8 +1722,9 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1645
1722
|
scaleType: "point";
|
|
1646
1723
|
ordinalTimeTicks?: import("../index.js").OrdinalTimeTicks;
|
|
1647
1724
|
groups?: import("../internals/index.js").AxisGroup[];
|
|
1648
|
-
colorScale?: import("
|
|
1725
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
1649
1726
|
triggerTooltip?: boolean;
|
|
1727
|
+
isFullCircle?: boolean;
|
|
1650
1728
|
} | {
|
|
1651
1729
|
axis?: "x";
|
|
1652
1730
|
tickLabelMinGap: number;
|
|
@@ -1670,17 +1748,18 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1670
1748
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
1671
1749
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
1672
1750
|
tickLabelPlacement?: "middle" | "tick";
|
|
1673
|
-
data?: readonly any[] | undefined;
|
|
1674
|
-
dataKey?: string | undefined;
|
|
1675
1751
|
id: import("../internals/index.js").AxisId;
|
|
1676
1752
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1753
|
+
data?: readonly any[] | undefined;
|
|
1754
|
+
dataKey?: string | undefined;
|
|
1755
|
+
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
1677
1756
|
height: number;
|
|
1678
1757
|
position?: "top" | "bottom" | "none";
|
|
1679
1758
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
1680
1759
|
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
1681
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
1682
|
-
min: import("
|
|
1683
|
-
max: import("
|
|
1760
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
1761
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1762
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1684
1763
|
}) | undefined;
|
|
1685
1764
|
hideTooltip?: boolean | undefined;
|
|
1686
1765
|
ignoreTooltip?: boolean | undefined;
|
|
@@ -1688,8 +1767,9 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1688
1767
|
scaleType: "point";
|
|
1689
1768
|
ordinalTimeTicks?: import("../index.js").OrdinalTimeTicks;
|
|
1690
1769
|
groups?: import("../internals/index.js").AxisGroup[];
|
|
1691
|
-
colorScale?: import("
|
|
1770
|
+
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>;
|
|
1692
1771
|
triggerTooltip?: boolean;
|
|
1772
|
+
isFullCircle?: boolean;
|
|
1693
1773
|
} | {
|
|
1694
1774
|
axis?: "x";
|
|
1695
1775
|
tickLabelMinGap: number;
|
|
@@ -1713,17 +1793,18 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1713
1793
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
1714
1794
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
1715
1795
|
tickLabelPlacement?: "middle" | "tick";
|
|
1716
|
-
data?: readonly any[] | undefined;
|
|
1717
|
-
dataKey?: string | undefined;
|
|
1718
1796
|
id: import("../internals/index.js").AxisId;
|
|
1719
1797
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1798
|
+
data?: readonly any[] | undefined;
|
|
1799
|
+
dataKey?: string | undefined;
|
|
1800
|
+
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
1720
1801
|
height: number;
|
|
1721
1802
|
position?: "top" | "bottom" | "none";
|
|
1722
1803
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
1723
1804
|
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
1724
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
1725
|
-
min: import("
|
|
1726
|
-
max: import("
|
|
1805
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
1806
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1807
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1727
1808
|
}) | undefined;
|
|
1728
1809
|
hideTooltip?: boolean | undefined;
|
|
1729
1810
|
ignoreTooltip?: boolean | undefined;
|
|
@@ -1731,8 +1812,9 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1731
1812
|
scaleType: "point";
|
|
1732
1813
|
ordinalTimeTicks?: import("../index.js").OrdinalTimeTicks;
|
|
1733
1814
|
groups?: import("../internals/index.js").AxisGroup[];
|
|
1734
|
-
colorScale?: import("
|
|
1815
|
+
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>;
|
|
1735
1816
|
triggerTooltip?: boolean;
|
|
1817
|
+
isFullCircle?: boolean;
|
|
1736
1818
|
} | {
|
|
1737
1819
|
axis?: "x";
|
|
1738
1820
|
tickLabelMinGap: number;
|
|
@@ -1756,17 +1838,18 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1756
1838
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
1757
1839
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
1758
1840
|
tickLabelPlacement?: "middle" | "tick";
|
|
1759
|
-
data?: readonly any[] | undefined;
|
|
1760
|
-
dataKey?: string | undefined;
|
|
1761
1841
|
id: import("../internals/index.js").AxisId;
|
|
1762
1842
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1843
|
+
data?: readonly any[] | undefined;
|
|
1844
|
+
dataKey?: string | undefined;
|
|
1845
|
+
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
1763
1846
|
height: number;
|
|
1764
1847
|
position?: "top" | "bottom" | "none";
|
|
1765
1848
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
1766
1849
|
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
1767
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
1768
|
-
min: import("
|
|
1769
|
-
max: import("
|
|
1850
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
1851
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1852
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1770
1853
|
}) | undefined;
|
|
1771
1854
|
hideTooltip?: boolean | undefined;
|
|
1772
1855
|
ignoreTooltip?: boolean | undefined;
|
|
@@ -1774,8 +1857,9 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1774
1857
|
scaleType: "point";
|
|
1775
1858
|
ordinalTimeTicks?: import("../index.js").OrdinalTimeTicks;
|
|
1776
1859
|
groups?: import("../internals/index.js").AxisGroup[];
|
|
1777
|
-
colorScale?: import("
|
|
1860
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
1778
1861
|
triggerTooltip?: boolean;
|
|
1862
|
+
isFullCircle?: boolean;
|
|
1779
1863
|
} | {
|
|
1780
1864
|
axis?: "x";
|
|
1781
1865
|
tickLabelMinGap: number;
|
|
@@ -1799,17 +1883,18 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1799
1883
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
1800
1884
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
1801
1885
|
tickLabelPlacement?: "middle" | "tick";
|
|
1802
|
-
data?: readonly any[] | undefined;
|
|
1803
|
-
dataKey?: string | undefined;
|
|
1804
1886
|
id: import("../internals/index.js").AxisId;
|
|
1805
1887
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1888
|
+
data?: readonly any[] | undefined;
|
|
1889
|
+
dataKey?: string | undefined;
|
|
1890
|
+
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
1806
1891
|
height: number;
|
|
1807
1892
|
position?: "top" | "bottom" | "none";
|
|
1808
1893
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
1809
1894
|
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
1810
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
1811
|
-
min: import("
|
|
1812
|
-
max: import("
|
|
1895
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
1896
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1897
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1813
1898
|
}) | undefined;
|
|
1814
1899
|
hideTooltip?: boolean | undefined;
|
|
1815
1900
|
ignoreTooltip?: boolean | undefined;
|
|
@@ -1817,8 +1902,9 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1817
1902
|
scaleType: "point";
|
|
1818
1903
|
ordinalTimeTicks?: import("../index.js").OrdinalTimeTicks;
|
|
1819
1904
|
groups?: import("../internals/index.js").AxisGroup[];
|
|
1820
|
-
colorScale?: import("
|
|
1905
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
1821
1906
|
triggerTooltip?: boolean;
|
|
1907
|
+
isFullCircle?: boolean;
|
|
1822
1908
|
} | {
|
|
1823
1909
|
axis?: "x";
|
|
1824
1910
|
tickLabelMinGap: number;
|
|
@@ -1842,17 +1928,18 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1842
1928
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
1843
1929
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
1844
1930
|
tickLabelPlacement?: "middle" | "tick";
|
|
1845
|
-
data?: readonly any[] | undefined;
|
|
1846
|
-
dataKey?: string | undefined;
|
|
1847
1931
|
id: import("../internals/index.js").AxisId;
|
|
1848
1932
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1933
|
+
data?: readonly any[] | undefined;
|
|
1934
|
+
dataKey?: string | undefined;
|
|
1935
|
+
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
1849
1936
|
height: number;
|
|
1850
1937
|
position?: "top" | "bottom" | "none";
|
|
1851
1938
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
1852
1939
|
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
1853
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
1854
|
-
min: import("
|
|
1855
|
-
max: import("
|
|
1940
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
1941
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1942
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1856
1943
|
}) | undefined;
|
|
1857
1944
|
hideTooltip?: boolean | undefined;
|
|
1858
1945
|
ignoreTooltip?: boolean | undefined;
|
|
@@ -1860,8 +1947,9 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1860
1947
|
scaleType: "point";
|
|
1861
1948
|
ordinalTimeTicks?: import("../index.js").OrdinalTimeTicks;
|
|
1862
1949
|
groups?: import("../internals/index.js").AxisGroup[];
|
|
1863
|
-
colorScale?: import("
|
|
1950
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
1864
1951
|
triggerTooltip?: boolean;
|
|
1952
|
+
isFullCircle?: boolean;
|
|
1865
1953
|
} | {
|
|
1866
1954
|
axis?: "x";
|
|
1867
1955
|
tickLabelMinGap: number;
|
|
@@ -1885,17 +1973,18 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1885
1973
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
1886
1974
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
1887
1975
|
tickLabelPlacement?: "middle" | "tick";
|
|
1888
|
-
data?: readonly any[] | undefined;
|
|
1889
|
-
dataKey?: string | undefined;
|
|
1890
1976
|
id: import("../internals/index.js").AxisId;
|
|
1891
1977
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1978
|
+
data?: readonly any[] | undefined;
|
|
1979
|
+
dataKey?: string | undefined;
|
|
1980
|
+
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
1892
1981
|
height: number;
|
|
1893
1982
|
position?: "top" | "bottom" | "none";
|
|
1894
1983
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
1895
1984
|
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
1896
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
1897
|
-
min: import("
|
|
1898
|
-
max: import("
|
|
1985
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
1986
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1987
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1899
1988
|
}) | undefined;
|
|
1900
1989
|
hideTooltip?: boolean | undefined;
|
|
1901
1990
|
ignoreTooltip?: boolean | undefined;
|
|
@@ -1903,8 +1992,9 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1903
1992
|
scaleType: "point";
|
|
1904
1993
|
ordinalTimeTicks?: import("../index.js").OrdinalTimeTicks;
|
|
1905
1994
|
groups?: import("../internals/index.js").AxisGroup[];
|
|
1906
|
-
colorScale?: import("
|
|
1995
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
1907
1996
|
triggerTooltip?: boolean;
|
|
1997
|
+
isFullCircle?: boolean;
|
|
1908
1998
|
} | {
|
|
1909
1999
|
axis?: "x";
|
|
1910
2000
|
tickLabelMinGap: number;
|
|
@@ -1928,25 +2018,27 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1928
2018
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
1929
2019
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
1930
2020
|
tickLabelPlacement?: "middle" | "tick";
|
|
1931
|
-
data?: readonly any[] | undefined;
|
|
1932
|
-
dataKey?: string | undefined;
|
|
1933
2021
|
id: import("../internals/index.js").AxisId;
|
|
1934
2022
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2023
|
+
data?: readonly any[] | undefined;
|
|
2024
|
+
dataKey?: string | undefined;
|
|
2025
|
+
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
1935
2026
|
height: number;
|
|
1936
2027
|
position?: "top" | "bottom" | "none";
|
|
1937
2028
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
1938
2029
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
1939
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
1940
|
-
min: import("
|
|
1941
|
-
max: import("
|
|
2030
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
2031
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2032
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1942
2033
|
}) | undefined;
|
|
1943
2034
|
hideTooltip?: boolean | undefined;
|
|
1944
2035
|
ignoreTooltip?: boolean | undefined;
|
|
1945
2036
|
offset: number;
|
|
1946
2037
|
scaleType: "symlog";
|
|
1947
2038
|
constant?: number;
|
|
1948
|
-
colorScale?: import("
|
|
2039
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
1949
2040
|
triggerTooltip?: boolean;
|
|
2041
|
+
isFullCircle?: boolean;
|
|
1950
2042
|
} | {
|
|
1951
2043
|
axis?: "x";
|
|
1952
2044
|
tickLabelMinGap: number;
|
|
@@ -1970,25 +2062,27 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
1970
2062
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
1971
2063
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
1972
2064
|
tickLabelPlacement?: "middle" | "tick";
|
|
1973
|
-
data?: readonly any[] | undefined;
|
|
1974
|
-
dataKey?: string | undefined;
|
|
1975
2065
|
id: import("../internals/index.js").AxisId;
|
|
1976
2066
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2067
|
+
data?: readonly any[] | undefined;
|
|
2068
|
+
dataKey?: string | undefined;
|
|
2069
|
+
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
1977
2070
|
height: number;
|
|
1978
2071
|
position?: "top" | "bottom" | "none";
|
|
1979
2072
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
1980
2073
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
1981
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
1982
|
-
min: import("
|
|
1983
|
-
max: import("
|
|
2074
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
2075
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2076
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1984
2077
|
}) | undefined;
|
|
1985
2078
|
hideTooltip?: boolean | undefined;
|
|
1986
2079
|
ignoreTooltip?: boolean | undefined;
|
|
1987
2080
|
offset: number;
|
|
1988
2081
|
scaleType: "symlog";
|
|
1989
2082
|
constant?: number;
|
|
1990
|
-
colorScale?: import("
|
|
2083
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
1991
2084
|
triggerTooltip?: boolean;
|
|
2085
|
+
isFullCircle?: boolean;
|
|
1992
2086
|
} | {
|
|
1993
2087
|
axis?: "x";
|
|
1994
2088
|
tickLabelMinGap: number;
|
|
@@ -2012,25 +2106,27 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
2012
2106
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
2013
2107
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
2014
2108
|
tickLabelPlacement?: "middle" | "tick";
|
|
2015
|
-
data?: readonly any[] | undefined;
|
|
2016
|
-
dataKey?: string | undefined;
|
|
2017
2109
|
id: import("../internals/index.js").AxisId;
|
|
2018
2110
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2111
|
+
data?: readonly any[] | undefined;
|
|
2112
|
+
dataKey?: string | undefined;
|
|
2113
|
+
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
2019
2114
|
height: number;
|
|
2020
2115
|
position?: "top" | "bottom" | "none";
|
|
2021
2116
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
2022
2117
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2023
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
2024
|
-
min: import("
|
|
2025
|
-
max: import("
|
|
2118
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
2119
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2120
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2026
2121
|
}) | undefined;
|
|
2027
2122
|
hideTooltip?: boolean | undefined;
|
|
2028
2123
|
ignoreTooltip?: boolean | undefined;
|
|
2029
2124
|
offset: number;
|
|
2030
2125
|
scaleType: "symlog";
|
|
2031
2126
|
constant?: number;
|
|
2032
|
-
colorScale?: import("
|
|
2127
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
2033
2128
|
triggerTooltip?: boolean;
|
|
2129
|
+
isFullCircle?: boolean;
|
|
2034
2130
|
} | {
|
|
2035
2131
|
axis?: "x";
|
|
2036
2132
|
tickLabelMinGap: number;
|
|
@@ -2054,25 +2150,27 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
2054
2150
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
2055
2151
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
2056
2152
|
tickLabelPlacement?: "middle" | "tick";
|
|
2057
|
-
data?: readonly any[] | undefined;
|
|
2058
|
-
dataKey?: string | undefined;
|
|
2059
2153
|
id: import("../internals/index.js").AxisId;
|
|
2060
2154
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2155
|
+
data?: readonly any[] | undefined;
|
|
2156
|
+
dataKey?: string | undefined;
|
|
2157
|
+
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
2061
2158
|
height: number;
|
|
2062
2159
|
position?: "top" | "bottom" | "none";
|
|
2063
2160
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
2064
2161
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2065
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
2066
|
-
min: import("
|
|
2067
|
-
max: import("
|
|
2162
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
2163
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2164
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2068
2165
|
}) | undefined;
|
|
2069
2166
|
hideTooltip?: boolean | undefined;
|
|
2070
2167
|
ignoreTooltip?: boolean | undefined;
|
|
2071
2168
|
offset: number;
|
|
2072
2169
|
scaleType: "symlog";
|
|
2073
2170
|
constant?: number;
|
|
2074
|
-
colorScale?: import("
|
|
2171
|
+
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>;
|
|
2075
2172
|
triggerTooltip?: boolean;
|
|
2173
|
+
isFullCircle?: boolean;
|
|
2076
2174
|
} | {
|
|
2077
2175
|
axis?: "x";
|
|
2078
2176
|
tickLabelMinGap: number;
|
|
@@ -2096,25 +2194,27 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
2096
2194
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
2097
2195
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
2098
2196
|
tickLabelPlacement?: "middle" | "tick";
|
|
2099
|
-
data?: readonly any[] | undefined;
|
|
2100
|
-
dataKey?: string | undefined;
|
|
2101
2197
|
id: import("../internals/index.js").AxisId;
|
|
2102
2198
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2199
|
+
data?: readonly any[] | undefined;
|
|
2200
|
+
dataKey?: string | undefined;
|
|
2201
|
+
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
2103
2202
|
height: number;
|
|
2104
2203
|
position?: "top" | "bottom" | "none";
|
|
2105
2204
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
2106
2205
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2107
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
2108
|
-
min: import("
|
|
2109
|
-
max: import("
|
|
2206
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
2207
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2208
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2110
2209
|
}) | undefined;
|
|
2111
2210
|
hideTooltip?: boolean | undefined;
|
|
2112
2211
|
ignoreTooltip?: boolean | undefined;
|
|
2113
2212
|
offset: number;
|
|
2114
2213
|
scaleType: "symlog";
|
|
2115
2214
|
constant?: number;
|
|
2116
|
-
colorScale?: import("
|
|
2215
|
+
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>;
|
|
2117
2216
|
triggerTooltip?: boolean;
|
|
2217
|
+
isFullCircle?: boolean;
|
|
2118
2218
|
} | {
|
|
2119
2219
|
axis?: "x";
|
|
2120
2220
|
tickLabelMinGap: number;
|
|
@@ -2138,25 +2238,27 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
2138
2238
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
2139
2239
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
2140
2240
|
tickLabelPlacement?: "middle" | "tick";
|
|
2141
|
-
data?: readonly any[] | undefined;
|
|
2142
|
-
dataKey?: string | undefined;
|
|
2143
2241
|
id: import("../internals/index.js").AxisId;
|
|
2144
2242
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2243
|
+
data?: readonly any[] | undefined;
|
|
2244
|
+
dataKey?: string | undefined;
|
|
2245
|
+
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
2145
2246
|
height: number;
|
|
2146
2247
|
position?: "top" | "bottom" | "none";
|
|
2147
2248
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
2148
2249
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2149
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
2150
|
-
min: import("
|
|
2151
|
-
max: import("
|
|
2250
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
2251
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2252
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2152
2253
|
}) | undefined;
|
|
2153
2254
|
hideTooltip?: boolean | undefined;
|
|
2154
2255
|
ignoreTooltip?: boolean | undefined;
|
|
2155
2256
|
offset: number;
|
|
2156
2257
|
scaleType: "symlog";
|
|
2157
2258
|
constant?: number;
|
|
2158
|
-
colorScale?: import("
|
|
2259
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
2159
2260
|
triggerTooltip?: boolean;
|
|
2261
|
+
isFullCircle?: boolean;
|
|
2160
2262
|
} | {
|
|
2161
2263
|
axis?: "x";
|
|
2162
2264
|
tickLabelMinGap: number;
|
|
@@ -2180,25 +2282,27 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
2180
2282
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
2181
2283
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
2182
2284
|
tickLabelPlacement?: "middle" | "tick";
|
|
2183
|
-
data?: readonly any[] | undefined;
|
|
2184
|
-
dataKey?: string | undefined;
|
|
2185
2285
|
id: import("../internals/index.js").AxisId;
|
|
2186
2286
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2287
|
+
data?: readonly any[] | undefined;
|
|
2288
|
+
dataKey?: string | undefined;
|
|
2289
|
+
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
2187
2290
|
height: number;
|
|
2188
2291
|
position?: "top" | "bottom" | "none";
|
|
2189
2292
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
2190
2293
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2191
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
2192
|
-
min: import("
|
|
2193
|
-
max: import("
|
|
2294
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
2295
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2296
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2194
2297
|
}) | undefined;
|
|
2195
2298
|
hideTooltip?: boolean | undefined;
|
|
2196
2299
|
ignoreTooltip?: boolean | undefined;
|
|
2197
2300
|
offset: number;
|
|
2198
2301
|
scaleType: "symlog";
|
|
2199
2302
|
constant?: number;
|
|
2200
|
-
colorScale?: import("
|
|
2303
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
2201
2304
|
triggerTooltip?: boolean;
|
|
2305
|
+
isFullCircle?: boolean;
|
|
2202
2306
|
} | {
|
|
2203
2307
|
axis?: "x";
|
|
2204
2308
|
tickLabelMinGap: number;
|
|
@@ -2222,25 +2326,27 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
2222
2326
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
2223
2327
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
2224
2328
|
tickLabelPlacement?: "middle" | "tick";
|
|
2225
|
-
data?: readonly any[] | undefined;
|
|
2226
|
-
dataKey?: string | undefined;
|
|
2227
2329
|
id: import("../internals/index.js").AxisId;
|
|
2228
2330
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2331
|
+
data?: readonly any[] | undefined;
|
|
2332
|
+
dataKey?: string | undefined;
|
|
2333
|
+
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
2229
2334
|
height: number;
|
|
2230
2335
|
position?: "top" | "bottom" | "none";
|
|
2231
2336
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
2232
2337
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2233
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
2234
|
-
min: import("
|
|
2235
|
-
max: import("
|
|
2338
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
2339
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2340
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2236
2341
|
}) | undefined;
|
|
2237
2342
|
hideTooltip?: boolean | undefined;
|
|
2238
2343
|
ignoreTooltip?: boolean | undefined;
|
|
2239
2344
|
offset: number;
|
|
2240
2345
|
scaleType: "symlog";
|
|
2241
2346
|
constant?: number;
|
|
2242
|
-
colorScale?: import("
|
|
2347
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
2243
2348
|
triggerTooltip?: boolean;
|
|
2349
|
+
isFullCircle?: boolean;
|
|
2244
2350
|
} | {
|
|
2245
2351
|
axis?: "x";
|
|
2246
2352
|
tickLabelMinGap: number;
|
|
@@ -2264,25 +2370,27 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
2264
2370
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
2265
2371
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
2266
2372
|
tickLabelPlacement?: "middle" | "tick";
|
|
2267
|
-
data?: readonly any[] | undefined;
|
|
2268
|
-
dataKey?: string | undefined;
|
|
2269
2373
|
id: import("../internals/index.js").AxisId;
|
|
2270
2374
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2375
|
+
data?: readonly any[] | undefined;
|
|
2376
|
+
dataKey?: string | undefined;
|
|
2377
|
+
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
2271
2378
|
height: number;
|
|
2272
2379
|
position?: "top" | "bottom" | "none";
|
|
2273
2380
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
2274
2381
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2275
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
2276
|
-
min: import("
|
|
2277
|
-
max: import("
|
|
2382
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
2383
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2384
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2278
2385
|
}) | undefined;
|
|
2279
2386
|
hideTooltip?: boolean | undefined;
|
|
2280
2387
|
ignoreTooltip?: boolean | undefined;
|
|
2281
2388
|
offset: number;
|
|
2282
2389
|
scaleType: "symlog";
|
|
2283
2390
|
constant?: number;
|
|
2284
|
-
colorScale?: import("
|
|
2391
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
2285
2392
|
triggerTooltip?: boolean;
|
|
2393
|
+
isFullCircle?: boolean;
|
|
2286
2394
|
} | {
|
|
2287
2395
|
axis?: "x";
|
|
2288
2396
|
tickLabelMinGap: number;
|
|
@@ -2306,24 +2414,26 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
2306
2414
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
2307
2415
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
2308
2416
|
tickLabelPlacement?: "middle" | "tick";
|
|
2309
|
-
data?: readonly any[] | undefined;
|
|
2310
|
-
dataKey?: string | undefined;
|
|
2311
2417
|
id: import("../internals/index.js").AxisId;
|
|
2312
2418
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2419
|
+
data?: readonly any[] | undefined;
|
|
2420
|
+
dataKey?: string | undefined;
|
|
2421
|
+
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
2313
2422
|
height: number;
|
|
2314
2423
|
position?: "top" | "bottom" | "none";
|
|
2315
2424
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
2316
2425
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2317
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
2318
|
-
min: import("
|
|
2319
|
-
max: import("
|
|
2426
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
2427
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2428
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2320
2429
|
}) | undefined;
|
|
2321
2430
|
hideTooltip?: boolean | undefined;
|
|
2322
2431
|
ignoreTooltip?: boolean | undefined;
|
|
2323
2432
|
offset: number;
|
|
2324
2433
|
scaleType: "pow";
|
|
2325
|
-
colorScale?: import("
|
|
2434
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
2326
2435
|
triggerTooltip?: boolean;
|
|
2436
|
+
isFullCircle?: boolean;
|
|
2327
2437
|
} | {
|
|
2328
2438
|
axis?: "x";
|
|
2329
2439
|
tickLabelMinGap: number;
|
|
@@ -2347,24 +2457,26 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
2347
2457
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
2348
2458
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
2349
2459
|
tickLabelPlacement?: "middle" | "tick";
|
|
2350
|
-
data?: readonly any[] | undefined;
|
|
2351
|
-
dataKey?: string | undefined;
|
|
2352
2460
|
id: import("../internals/index.js").AxisId;
|
|
2353
2461
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2462
|
+
data?: readonly any[] | undefined;
|
|
2463
|
+
dataKey?: string | undefined;
|
|
2464
|
+
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
2354
2465
|
height: number;
|
|
2355
2466
|
position?: "top" | "bottom" | "none";
|
|
2356
2467
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
2357
2468
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2358
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
2359
|
-
min: import("
|
|
2360
|
-
max: import("
|
|
2469
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
2470
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2471
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2361
2472
|
}) | undefined;
|
|
2362
2473
|
hideTooltip?: boolean | undefined;
|
|
2363
2474
|
ignoreTooltip?: boolean | undefined;
|
|
2364
2475
|
offset: number;
|
|
2365
2476
|
scaleType: "pow";
|
|
2366
|
-
colorScale?: import("
|
|
2477
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
2367
2478
|
triggerTooltip?: boolean;
|
|
2479
|
+
isFullCircle?: boolean;
|
|
2368
2480
|
} | {
|
|
2369
2481
|
axis?: "x";
|
|
2370
2482
|
tickLabelMinGap: number;
|
|
@@ -2388,24 +2500,26 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
2388
2500
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
2389
2501
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
2390
2502
|
tickLabelPlacement?: "middle" | "tick";
|
|
2391
|
-
data?: readonly any[] | undefined;
|
|
2392
|
-
dataKey?: string | undefined;
|
|
2393
2503
|
id: import("../internals/index.js").AxisId;
|
|
2394
2504
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2505
|
+
data?: readonly any[] | undefined;
|
|
2506
|
+
dataKey?: string | undefined;
|
|
2507
|
+
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
2395
2508
|
height: number;
|
|
2396
2509
|
position?: "top" | "bottom" | "none";
|
|
2397
2510
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
2398
2511
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2399
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
2400
|
-
min: import("
|
|
2401
|
-
max: import("
|
|
2512
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
2513
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2514
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2402
2515
|
}) | undefined;
|
|
2403
2516
|
hideTooltip?: boolean | undefined;
|
|
2404
2517
|
ignoreTooltip?: boolean | undefined;
|
|
2405
2518
|
offset: number;
|
|
2406
2519
|
scaleType: "pow";
|
|
2407
|
-
colorScale?: import("
|
|
2520
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
2408
2521
|
triggerTooltip?: boolean;
|
|
2522
|
+
isFullCircle?: boolean;
|
|
2409
2523
|
} | {
|
|
2410
2524
|
axis?: "x";
|
|
2411
2525
|
tickLabelMinGap: number;
|
|
@@ -2429,24 +2543,26 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
2429
2543
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
2430
2544
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
2431
2545
|
tickLabelPlacement?: "middle" | "tick";
|
|
2432
|
-
data?: readonly any[] | undefined;
|
|
2433
|
-
dataKey?: string | undefined;
|
|
2434
2546
|
id: import("../internals/index.js").AxisId;
|
|
2435
2547
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2548
|
+
data?: readonly any[] | undefined;
|
|
2549
|
+
dataKey?: string | undefined;
|
|
2550
|
+
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
2436
2551
|
height: number;
|
|
2437
2552
|
position?: "top" | "bottom" | "none";
|
|
2438
2553
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
2439
2554
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2440
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
2441
|
-
min: import("
|
|
2442
|
-
max: import("
|
|
2555
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
2556
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2557
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2443
2558
|
}) | undefined;
|
|
2444
2559
|
hideTooltip?: boolean | undefined;
|
|
2445
2560
|
ignoreTooltip?: boolean | undefined;
|
|
2446
2561
|
offset: number;
|
|
2447
2562
|
scaleType: "pow";
|
|
2448
|
-
colorScale?: import("
|
|
2563
|
+
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>;
|
|
2449
2564
|
triggerTooltip?: boolean;
|
|
2565
|
+
isFullCircle?: boolean;
|
|
2450
2566
|
} | {
|
|
2451
2567
|
axis?: "x";
|
|
2452
2568
|
tickLabelMinGap: number;
|
|
@@ -2470,24 +2586,26 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
2470
2586
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
2471
2587
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
2472
2588
|
tickLabelPlacement?: "middle" | "tick";
|
|
2473
|
-
data?: readonly any[] | undefined;
|
|
2474
|
-
dataKey?: string | undefined;
|
|
2475
2589
|
id: import("../internals/index.js").AxisId;
|
|
2476
2590
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2591
|
+
data?: readonly any[] | undefined;
|
|
2592
|
+
dataKey?: string | undefined;
|
|
2593
|
+
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
2477
2594
|
height: number;
|
|
2478
2595
|
position?: "top" | "bottom" | "none";
|
|
2479
2596
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
2480
2597
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2481
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
2482
|
-
min: import("
|
|
2483
|
-
max: import("
|
|
2598
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
2599
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2600
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2484
2601
|
}) | undefined;
|
|
2485
2602
|
hideTooltip?: boolean | undefined;
|
|
2486
2603
|
ignoreTooltip?: boolean | undefined;
|
|
2487
2604
|
offset: number;
|
|
2488
2605
|
scaleType: "pow";
|
|
2489
|
-
colorScale?: import("
|
|
2606
|
+
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>;
|
|
2490
2607
|
triggerTooltip?: boolean;
|
|
2608
|
+
isFullCircle?: boolean;
|
|
2491
2609
|
} | {
|
|
2492
2610
|
axis?: "x";
|
|
2493
2611
|
tickLabelMinGap: number;
|
|
@@ -2511,24 +2629,26 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
2511
2629
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
2512
2630
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
2513
2631
|
tickLabelPlacement?: "middle" | "tick";
|
|
2514
|
-
data?: readonly any[] | undefined;
|
|
2515
|
-
dataKey?: string | undefined;
|
|
2516
2632
|
id: import("../internals/index.js").AxisId;
|
|
2517
2633
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2634
|
+
data?: readonly any[] | undefined;
|
|
2635
|
+
dataKey?: string | undefined;
|
|
2636
|
+
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
2518
2637
|
height: number;
|
|
2519
2638
|
position?: "top" | "bottom" | "none";
|
|
2520
2639
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
2521
2640
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2522
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
2523
|
-
min: import("
|
|
2524
|
-
max: import("
|
|
2641
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
2642
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2643
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2525
2644
|
}) | undefined;
|
|
2526
2645
|
hideTooltip?: boolean | undefined;
|
|
2527
2646
|
ignoreTooltip?: boolean | undefined;
|
|
2528
2647
|
offset: number;
|
|
2529
2648
|
scaleType: "pow";
|
|
2530
|
-
colorScale?: import("
|
|
2649
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
2531
2650
|
triggerTooltip?: boolean;
|
|
2651
|
+
isFullCircle?: boolean;
|
|
2532
2652
|
} | {
|
|
2533
2653
|
axis?: "x";
|
|
2534
2654
|
tickLabelMinGap: number;
|
|
@@ -2552,24 +2672,26 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
2552
2672
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
2553
2673
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
2554
2674
|
tickLabelPlacement?: "middle" | "tick";
|
|
2555
|
-
data?: readonly any[] | undefined;
|
|
2556
|
-
dataKey?: string | undefined;
|
|
2557
2675
|
id: import("../internals/index.js").AxisId;
|
|
2558
2676
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2677
|
+
data?: readonly any[] | undefined;
|
|
2678
|
+
dataKey?: string | undefined;
|
|
2679
|
+
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
2559
2680
|
height: number;
|
|
2560
2681
|
position?: "top" | "bottom" | "none";
|
|
2561
2682
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
2562
2683
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2563
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
2564
|
-
min: import("
|
|
2565
|
-
max: import("
|
|
2684
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
2685
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2686
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2566
2687
|
}) | undefined;
|
|
2567
2688
|
hideTooltip?: boolean | undefined;
|
|
2568
2689
|
ignoreTooltip?: boolean | undefined;
|
|
2569
2690
|
offset: number;
|
|
2570
2691
|
scaleType: "pow";
|
|
2571
|
-
colorScale?: import("
|
|
2692
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
2572
2693
|
triggerTooltip?: boolean;
|
|
2694
|
+
isFullCircle?: boolean;
|
|
2573
2695
|
} | {
|
|
2574
2696
|
axis?: "x";
|
|
2575
2697
|
tickLabelMinGap: number;
|
|
@@ -2593,24 +2715,26 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
2593
2715
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
2594
2716
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
2595
2717
|
tickLabelPlacement?: "middle" | "tick";
|
|
2596
|
-
data?: readonly any[] | undefined;
|
|
2597
|
-
dataKey?: string | undefined;
|
|
2598
2718
|
id: import("../internals/index.js").AxisId;
|
|
2599
2719
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2720
|
+
data?: readonly any[] | undefined;
|
|
2721
|
+
dataKey?: string | undefined;
|
|
2722
|
+
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
2600
2723
|
height: number;
|
|
2601
2724
|
position?: "top" | "bottom" | "none";
|
|
2602
2725
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
2603
2726
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2604
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
2605
|
-
min: import("
|
|
2606
|
-
max: import("
|
|
2727
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
2728
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2729
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2607
2730
|
}) | undefined;
|
|
2608
2731
|
hideTooltip?: boolean | undefined;
|
|
2609
2732
|
ignoreTooltip?: boolean | undefined;
|
|
2610
2733
|
offset: number;
|
|
2611
2734
|
scaleType: "pow";
|
|
2612
|
-
colorScale?: import("
|
|
2735
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
2613
2736
|
triggerTooltip?: boolean;
|
|
2737
|
+
isFullCircle?: boolean;
|
|
2614
2738
|
} | {
|
|
2615
2739
|
axis?: "x";
|
|
2616
2740
|
tickLabelMinGap: number;
|
|
@@ -2634,24 +2758,26 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
2634
2758
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
2635
2759
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
2636
2760
|
tickLabelPlacement?: "middle" | "tick";
|
|
2637
|
-
data?: readonly any[] | undefined;
|
|
2638
|
-
dataKey?: string | undefined;
|
|
2639
2761
|
id: import("../internals/index.js").AxisId;
|
|
2640
2762
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2763
|
+
data?: readonly any[] | undefined;
|
|
2764
|
+
dataKey?: string | undefined;
|
|
2765
|
+
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
2641
2766
|
height: number;
|
|
2642
2767
|
position?: "top" | "bottom" | "none";
|
|
2643
2768
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
2644
2769
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2645
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
2646
|
-
min: import("
|
|
2647
|
-
max: import("
|
|
2770
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
2771
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2772
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2648
2773
|
}) | undefined;
|
|
2649
2774
|
hideTooltip?: boolean | undefined;
|
|
2650
2775
|
ignoreTooltip?: boolean | undefined;
|
|
2651
2776
|
offset: number;
|
|
2652
2777
|
scaleType: "pow";
|
|
2653
|
-
colorScale?: import("
|
|
2778
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
2654
2779
|
triggerTooltip?: boolean;
|
|
2780
|
+
isFullCircle?: boolean;
|
|
2655
2781
|
} | {
|
|
2656
2782
|
axis?: "x";
|
|
2657
2783
|
tickLabelMinGap: number;
|
|
@@ -2675,24 +2801,26 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
2675
2801
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
2676
2802
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
2677
2803
|
tickLabelPlacement?: "middle" | "tick";
|
|
2678
|
-
data?: readonly any[] | undefined;
|
|
2679
|
-
dataKey?: string | undefined;
|
|
2680
2804
|
id: import("../internals/index.js").AxisId;
|
|
2681
2805
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2806
|
+
data?: readonly any[] | undefined;
|
|
2807
|
+
dataKey?: string | undefined;
|
|
2808
|
+
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
2682
2809
|
height: number;
|
|
2683
2810
|
position?: "top" | "bottom" | "none";
|
|
2684
2811
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
2685
2812
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2686
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
2687
|
-
min: import("
|
|
2688
|
-
max: import("
|
|
2813
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
2814
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2815
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2689
2816
|
}) | undefined;
|
|
2690
2817
|
hideTooltip?: boolean | undefined;
|
|
2691
2818
|
ignoreTooltip?: boolean | undefined;
|
|
2692
2819
|
offset: number;
|
|
2693
2820
|
scaleType: "sqrt";
|
|
2694
|
-
colorScale?: import("
|
|
2821
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
2695
2822
|
triggerTooltip?: boolean;
|
|
2823
|
+
isFullCircle?: boolean;
|
|
2696
2824
|
} | {
|
|
2697
2825
|
axis?: "x";
|
|
2698
2826
|
tickLabelMinGap: number;
|
|
@@ -2716,24 +2844,26 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
2716
2844
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
2717
2845
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
2718
2846
|
tickLabelPlacement?: "middle" | "tick";
|
|
2719
|
-
data?: readonly any[] | undefined;
|
|
2720
|
-
dataKey?: string | undefined;
|
|
2721
2847
|
id: import("../internals/index.js").AxisId;
|
|
2722
2848
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2849
|
+
data?: readonly any[] | undefined;
|
|
2850
|
+
dataKey?: string | undefined;
|
|
2851
|
+
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
2723
2852
|
height: number;
|
|
2724
2853
|
position?: "top" | "bottom" | "none";
|
|
2725
2854
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
2726
2855
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2727
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
2728
|
-
min: import("
|
|
2729
|
-
max: import("
|
|
2856
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
2857
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2858
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2730
2859
|
}) | undefined;
|
|
2731
2860
|
hideTooltip?: boolean | undefined;
|
|
2732
2861
|
ignoreTooltip?: boolean | undefined;
|
|
2733
2862
|
offset: number;
|
|
2734
2863
|
scaleType: "sqrt";
|
|
2735
|
-
colorScale?: import("
|
|
2864
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
2736
2865
|
triggerTooltip?: boolean;
|
|
2866
|
+
isFullCircle?: boolean;
|
|
2737
2867
|
} | {
|
|
2738
2868
|
axis?: "x";
|
|
2739
2869
|
tickLabelMinGap: number;
|
|
@@ -2757,24 +2887,26 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
2757
2887
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
2758
2888
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
2759
2889
|
tickLabelPlacement?: "middle" | "tick";
|
|
2760
|
-
data?: readonly any[] | undefined;
|
|
2761
|
-
dataKey?: string | undefined;
|
|
2762
2890
|
id: import("../internals/index.js").AxisId;
|
|
2763
2891
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2892
|
+
data?: readonly any[] | undefined;
|
|
2893
|
+
dataKey?: string | undefined;
|
|
2894
|
+
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
2764
2895
|
height: number;
|
|
2765
2896
|
position?: "top" | "bottom" | "none";
|
|
2766
2897
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
2767
2898
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2768
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
2769
|
-
min: import("
|
|
2770
|
-
max: import("
|
|
2899
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
2900
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2901
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2771
2902
|
}) | undefined;
|
|
2772
2903
|
hideTooltip?: boolean | undefined;
|
|
2773
2904
|
ignoreTooltip?: boolean | undefined;
|
|
2774
2905
|
offset: number;
|
|
2775
2906
|
scaleType: "sqrt";
|
|
2776
|
-
colorScale?: import("
|
|
2907
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
2777
2908
|
triggerTooltip?: boolean;
|
|
2909
|
+
isFullCircle?: boolean;
|
|
2778
2910
|
} | {
|
|
2779
2911
|
axis?: "x";
|
|
2780
2912
|
tickLabelMinGap: number;
|
|
@@ -2798,24 +2930,26 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
2798
2930
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
2799
2931
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
2800
2932
|
tickLabelPlacement?: "middle" | "tick";
|
|
2801
|
-
data?: readonly any[] | undefined;
|
|
2802
|
-
dataKey?: string | undefined;
|
|
2803
2933
|
id: import("../internals/index.js").AxisId;
|
|
2804
2934
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2935
|
+
data?: readonly any[] | undefined;
|
|
2936
|
+
dataKey?: string | undefined;
|
|
2937
|
+
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
2805
2938
|
height: number;
|
|
2806
2939
|
position?: "top" | "bottom" | "none";
|
|
2807
2940
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
2808
2941
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2809
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
2810
|
-
min: import("
|
|
2811
|
-
max: import("
|
|
2942
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
2943
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2944
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2812
2945
|
}) | undefined;
|
|
2813
2946
|
hideTooltip?: boolean | undefined;
|
|
2814
2947
|
ignoreTooltip?: boolean | undefined;
|
|
2815
2948
|
offset: number;
|
|
2816
2949
|
scaleType: "sqrt";
|
|
2817
|
-
colorScale?: import("
|
|
2950
|
+
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>;
|
|
2818
2951
|
triggerTooltip?: boolean;
|
|
2952
|
+
isFullCircle?: boolean;
|
|
2819
2953
|
} | {
|
|
2820
2954
|
axis?: "x";
|
|
2821
2955
|
tickLabelMinGap: number;
|
|
@@ -2839,24 +2973,26 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
2839
2973
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
2840
2974
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
2841
2975
|
tickLabelPlacement?: "middle" | "tick";
|
|
2842
|
-
data?: readonly any[] | undefined;
|
|
2843
|
-
dataKey?: string | undefined;
|
|
2844
2976
|
id: import("../internals/index.js").AxisId;
|
|
2845
2977
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2978
|
+
data?: readonly any[] | undefined;
|
|
2979
|
+
dataKey?: string | undefined;
|
|
2980
|
+
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
2846
2981
|
height: number;
|
|
2847
2982
|
position?: "top" | "bottom" | "none";
|
|
2848
2983
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
2849
2984
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2850
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
2851
|
-
min: import("
|
|
2852
|
-
max: import("
|
|
2985
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
2986
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2987
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2853
2988
|
}) | undefined;
|
|
2854
2989
|
hideTooltip?: boolean | undefined;
|
|
2855
2990
|
ignoreTooltip?: boolean | undefined;
|
|
2856
2991
|
offset: number;
|
|
2857
2992
|
scaleType: "sqrt";
|
|
2858
|
-
colorScale?: import("
|
|
2993
|
+
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>;
|
|
2859
2994
|
triggerTooltip?: boolean;
|
|
2995
|
+
isFullCircle?: boolean;
|
|
2860
2996
|
} | {
|
|
2861
2997
|
axis?: "x";
|
|
2862
2998
|
tickLabelMinGap: number;
|
|
@@ -2880,24 +3016,26 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
2880
3016
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
2881
3017
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
2882
3018
|
tickLabelPlacement?: "middle" | "tick";
|
|
2883
|
-
data?: readonly any[] | undefined;
|
|
2884
|
-
dataKey?: string | undefined;
|
|
2885
3019
|
id: import("../internals/index.js").AxisId;
|
|
2886
3020
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
3021
|
+
data?: readonly any[] | undefined;
|
|
3022
|
+
dataKey?: string | undefined;
|
|
3023
|
+
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
2887
3024
|
height: number;
|
|
2888
3025
|
position?: "top" | "bottom" | "none";
|
|
2889
3026
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
2890
3027
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2891
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
2892
|
-
min: import("
|
|
2893
|
-
max: import("
|
|
3028
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
3029
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
3030
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2894
3031
|
}) | undefined;
|
|
2895
3032
|
hideTooltip?: boolean | undefined;
|
|
2896
3033
|
ignoreTooltip?: boolean | undefined;
|
|
2897
3034
|
offset: number;
|
|
2898
3035
|
scaleType: "sqrt";
|
|
2899
|
-
colorScale?: import("
|
|
3036
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
2900
3037
|
triggerTooltip?: boolean;
|
|
3038
|
+
isFullCircle?: boolean;
|
|
2901
3039
|
} | {
|
|
2902
3040
|
axis?: "x";
|
|
2903
3041
|
tickLabelMinGap: number;
|
|
@@ -2921,24 +3059,26 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
2921
3059
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
2922
3060
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
2923
3061
|
tickLabelPlacement?: "middle" | "tick";
|
|
2924
|
-
data?: readonly any[] | undefined;
|
|
2925
|
-
dataKey?: string | undefined;
|
|
2926
3062
|
id: import("../internals/index.js").AxisId;
|
|
2927
3063
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
3064
|
+
data?: readonly any[] | undefined;
|
|
3065
|
+
dataKey?: string | undefined;
|
|
3066
|
+
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
2928
3067
|
height: number;
|
|
2929
3068
|
position?: "top" | "bottom" | "none";
|
|
2930
3069
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
2931
3070
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2932
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
2933
|
-
min: import("
|
|
2934
|
-
max: import("
|
|
3071
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
3072
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
3073
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2935
3074
|
}) | undefined;
|
|
2936
3075
|
hideTooltip?: boolean | undefined;
|
|
2937
3076
|
ignoreTooltip?: boolean | undefined;
|
|
2938
3077
|
offset: number;
|
|
2939
3078
|
scaleType: "sqrt";
|
|
2940
|
-
colorScale?: import("
|
|
3079
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
2941
3080
|
triggerTooltip?: boolean;
|
|
3081
|
+
isFullCircle?: boolean;
|
|
2942
3082
|
} | {
|
|
2943
3083
|
axis?: "x";
|
|
2944
3084
|
tickLabelMinGap: number;
|
|
@@ -2962,24 +3102,26 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
2962
3102
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
2963
3103
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
2964
3104
|
tickLabelPlacement?: "middle" | "tick";
|
|
2965
|
-
data?: readonly any[] | undefined;
|
|
2966
|
-
dataKey?: string | undefined;
|
|
2967
3105
|
id: import("../internals/index.js").AxisId;
|
|
2968
3106
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
3107
|
+
data?: readonly any[] | undefined;
|
|
3108
|
+
dataKey?: string | undefined;
|
|
3109
|
+
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
2969
3110
|
height: number;
|
|
2970
3111
|
position?: "top" | "bottom" | "none";
|
|
2971
3112
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
2972
3113
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2973
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
2974
|
-
min: import("
|
|
2975
|
-
max: import("
|
|
3114
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
3115
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
3116
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2976
3117
|
}) | undefined;
|
|
2977
3118
|
hideTooltip?: boolean | undefined;
|
|
2978
3119
|
ignoreTooltip?: boolean | undefined;
|
|
2979
3120
|
offset: number;
|
|
2980
3121
|
scaleType: "sqrt";
|
|
2981
|
-
colorScale?: import("
|
|
3122
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
2982
3123
|
triggerTooltip?: boolean;
|
|
3124
|
+
isFullCircle?: boolean;
|
|
2983
3125
|
} | {
|
|
2984
3126
|
axis?: "x";
|
|
2985
3127
|
tickLabelMinGap: number;
|
|
@@ -3003,24 +3145,26 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
3003
3145
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
3004
3146
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
3005
3147
|
tickLabelPlacement?: "middle" | "tick";
|
|
3006
|
-
data?: readonly any[] | undefined;
|
|
3007
|
-
dataKey?: string | undefined;
|
|
3008
3148
|
id: import("../internals/index.js").AxisId;
|
|
3009
3149
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
3150
|
+
data?: readonly any[] | undefined;
|
|
3151
|
+
dataKey?: string | undefined;
|
|
3152
|
+
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
3010
3153
|
height: number;
|
|
3011
3154
|
position?: "top" | "bottom" | "none";
|
|
3012
3155
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
3013
3156
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
3014
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
3015
|
-
min: import("
|
|
3016
|
-
max: import("
|
|
3157
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
3158
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
3159
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
3017
3160
|
}) | undefined;
|
|
3018
3161
|
hideTooltip?: boolean | undefined;
|
|
3019
3162
|
ignoreTooltip?: boolean | undefined;
|
|
3020
3163
|
offset: number;
|
|
3021
3164
|
scaleType: "sqrt";
|
|
3022
|
-
colorScale?: import("
|
|
3165
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
3023
3166
|
triggerTooltip?: boolean;
|
|
3167
|
+
isFullCircle?: boolean;
|
|
3024
3168
|
} | {
|
|
3025
3169
|
axis?: "x";
|
|
3026
3170
|
tickLabelMinGap: number;
|
|
@@ -3044,24 +3188,26 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
3044
3188
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
3045
3189
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
3046
3190
|
tickLabelPlacement?: "middle" | "tick";
|
|
3047
|
-
data?: readonly any[] | undefined;
|
|
3048
|
-
dataKey?: string | undefined;
|
|
3049
3191
|
id: import("../internals/index.js").AxisId;
|
|
3050
3192
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
3193
|
+
data?: readonly any[] | undefined;
|
|
3194
|
+
dataKey?: string | undefined;
|
|
3195
|
+
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
3051
3196
|
height: number;
|
|
3052
3197
|
position?: "top" | "bottom" | "none";
|
|
3053
3198
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
3054
3199
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
3055
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
3056
|
-
min: import("
|
|
3057
|
-
max: import("
|
|
3200
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
3201
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
3202
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
3058
3203
|
}) | undefined;
|
|
3059
3204
|
hideTooltip?: boolean | undefined;
|
|
3060
3205
|
ignoreTooltip?: boolean | undefined;
|
|
3061
3206
|
offset: number;
|
|
3062
3207
|
scaleType: "utc";
|
|
3063
|
-
colorScale?: import("
|
|
3208
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
3064
3209
|
triggerTooltip?: boolean;
|
|
3210
|
+
isFullCircle?: boolean;
|
|
3065
3211
|
} | {
|
|
3066
3212
|
axis?: "x";
|
|
3067
3213
|
tickLabelMinGap: number;
|
|
@@ -3085,24 +3231,26 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
3085
3231
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
3086
3232
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
3087
3233
|
tickLabelPlacement?: "middle" | "tick";
|
|
3088
|
-
data?: readonly any[] | undefined;
|
|
3089
|
-
dataKey?: string | undefined;
|
|
3090
3234
|
id: import("../internals/index.js").AxisId;
|
|
3091
3235
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
3236
|
+
data?: readonly any[] | undefined;
|
|
3237
|
+
dataKey?: string | undefined;
|
|
3238
|
+
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
3092
3239
|
height: number;
|
|
3093
3240
|
position?: "top" | "bottom" | "none";
|
|
3094
3241
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
3095
3242
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
3096
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
3097
|
-
min: import("
|
|
3098
|
-
max: import("
|
|
3243
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
3244
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
3245
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
3099
3246
|
}) | undefined;
|
|
3100
3247
|
hideTooltip?: boolean | undefined;
|
|
3101
3248
|
ignoreTooltip?: boolean | undefined;
|
|
3102
3249
|
offset: number;
|
|
3103
3250
|
scaleType: "utc";
|
|
3104
|
-
colorScale?: import("
|
|
3251
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
3105
3252
|
triggerTooltip?: boolean;
|
|
3253
|
+
isFullCircle?: boolean;
|
|
3106
3254
|
} | {
|
|
3107
3255
|
axis?: "x";
|
|
3108
3256
|
tickLabelMinGap: number;
|
|
@@ -3126,24 +3274,26 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
3126
3274
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
3127
3275
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
3128
3276
|
tickLabelPlacement?: "middle" | "tick";
|
|
3129
|
-
data?: readonly any[] | undefined;
|
|
3130
|
-
dataKey?: string | undefined;
|
|
3131
3277
|
id: import("../internals/index.js").AxisId;
|
|
3132
3278
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
3279
|
+
data?: readonly any[] | undefined;
|
|
3280
|
+
dataKey?: string | undefined;
|
|
3281
|
+
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
3133
3282
|
height: number;
|
|
3134
3283
|
position?: "top" | "bottom" | "none";
|
|
3135
3284
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
3136
3285
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
3137
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
3138
|
-
min: import("
|
|
3139
|
-
max: import("
|
|
3286
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
3287
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
3288
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
3140
3289
|
}) | undefined;
|
|
3141
3290
|
hideTooltip?: boolean | undefined;
|
|
3142
3291
|
ignoreTooltip?: boolean | undefined;
|
|
3143
3292
|
offset: number;
|
|
3144
3293
|
scaleType: "utc";
|
|
3145
|
-
colorScale?: import("
|
|
3294
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
3146
3295
|
triggerTooltip?: boolean;
|
|
3296
|
+
isFullCircle?: boolean;
|
|
3147
3297
|
} | {
|
|
3148
3298
|
axis?: "x";
|
|
3149
3299
|
tickLabelMinGap: number;
|
|
@@ -3167,24 +3317,26 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
3167
3317
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
3168
3318
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
3169
3319
|
tickLabelPlacement?: "middle" | "tick";
|
|
3170
|
-
data?: readonly any[] | undefined;
|
|
3171
|
-
dataKey?: string | undefined;
|
|
3172
3320
|
id: import("../internals/index.js").AxisId;
|
|
3173
3321
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
3322
|
+
data?: readonly any[] | undefined;
|
|
3323
|
+
dataKey?: string | undefined;
|
|
3324
|
+
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
3174
3325
|
height: number;
|
|
3175
3326
|
position?: "top" | "bottom" | "none";
|
|
3176
3327
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
3177
3328
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
3178
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
3179
|
-
min: import("
|
|
3180
|
-
max: import("
|
|
3329
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
3330
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
3331
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
3181
3332
|
}) | undefined;
|
|
3182
3333
|
hideTooltip?: boolean | undefined;
|
|
3183
3334
|
ignoreTooltip?: boolean | undefined;
|
|
3184
3335
|
offset: number;
|
|
3185
3336
|
scaleType: "utc";
|
|
3186
|
-
colorScale?: import("
|
|
3337
|
+
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>;
|
|
3187
3338
|
triggerTooltip?: boolean;
|
|
3339
|
+
isFullCircle?: boolean;
|
|
3188
3340
|
} | {
|
|
3189
3341
|
axis?: "x";
|
|
3190
3342
|
tickLabelMinGap: number;
|
|
@@ -3208,24 +3360,26 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
3208
3360
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
3209
3361
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
3210
3362
|
tickLabelPlacement?: "middle" | "tick";
|
|
3211
|
-
data?: readonly any[] | undefined;
|
|
3212
|
-
dataKey?: string | undefined;
|
|
3213
3363
|
id: import("../internals/index.js").AxisId;
|
|
3214
3364
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
3365
|
+
data?: readonly any[] | undefined;
|
|
3366
|
+
dataKey?: string | undefined;
|
|
3367
|
+
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
3215
3368
|
height: number;
|
|
3216
3369
|
position?: "top" | "bottom" | "none";
|
|
3217
3370
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
3218
3371
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
3219
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
3220
|
-
min: import("
|
|
3221
|
-
max: import("
|
|
3372
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
3373
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
3374
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
3222
3375
|
}) | undefined;
|
|
3223
3376
|
hideTooltip?: boolean | undefined;
|
|
3224
3377
|
ignoreTooltip?: boolean | undefined;
|
|
3225
3378
|
offset: number;
|
|
3226
3379
|
scaleType: "utc";
|
|
3227
|
-
colorScale?: import("
|
|
3380
|
+
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>;
|
|
3228
3381
|
triggerTooltip?: boolean;
|
|
3382
|
+
isFullCircle?: boolean;
|
|
3229
3383
|
} | {
|
|
3230
3384
|
axis?: "x";
|
|
3231
3385
|
tickLabelMinGap: number;
|
|
@@ -3249,24 +3403,26 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
3249
3403
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
3250
3404
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
3251
3405
|
tickLabelPlacement?: "middle" | "tick";
|
|
3252
|
-
data?: readonly any[] | undefined;
|
|
3253
|
-
dataKey?: string | undefined;
|
|
3254
3406
|
id: import("../internals/index.js").AxisId;
|
|
3255
3407
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
3408
|
+
data?: readonly any[] | undefined;
|
|
3409
|
+
dataKey?: string | undefined;
|
|
3410
|
+
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
3256
3411
|
height: number;
|
|
3257
3412
|
position?: "top" | "bottom" | "none";
|
|
3258
3413
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
3259
3414
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
3260
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
3261
|
-
min: import("
|
|
3262
|
-
max: import("
|
|
3415
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
3416
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
3417
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
3263
3418
|
}) | undefined;
|
|
3264
3419
|
hideTooltip?: boolean | undefined;
|
|
3265
3420
|
ignoreTooltip?: boolean | undefined;
|
|
3266
3421
|
offset: number;
|
|
3267
3422
|
scaleType: "utc";
|
|
3268
|
-
colorScale?: import("
|
|
3423
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
3269
3424
|
triggerTooltip?: boolean;
|
|
3425
|
+
isFullCircle?: boolean;
|
|
3270
3426
|
} | {
|
|
3271
3427
|
axis?: "x";
|
|
3272
3428
|
tickLabelMinGap: number;
|
|
@@ -3290,24 +3446,26 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
3290
3446
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
3291
3447
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
3292
3448
|
tickLabelPlacement?: "middle" | "tick";
|
|
3293
|
-
data?: readonly any[] | undefined;
|
|
3294
|
-
dataKey?: string | undefined;
|
|
3295
3449
|
id: import("../internals/index.js").AxisId;
|
|
3296
3450
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
3451
|
+
data?: readonly any[] | undefined;
|
|
3452
|
+
dataKey?: string | undefined;
|
|
3453
|
+
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
3297
3454
|
height: number;
|
|
3298
3455
|
position?: "top" | "bottom" | "none";
|
|
3299
3456
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
3300
3457
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
3301
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
3302
|
-
min: import("
|
|
3303
|
-
max: import("
|
|
3458
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
3459
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
3460
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
3304
3461
|
}) | undefined;
|
|
3305
3462
|
hideTooltip?: boolean | undefined;
|
|
3306
3463
|
ignoreTooltip?: boolean | undefined;
|
|
3307
3464
|
offset: number;
|
|
3308
3465
|
scaleType: "utc";
|
|
3309
|
-
colorScale?: import("
|
|
3466
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
3310
3467
|
triggerTooltip?: boolean;
|
|
3468
|
+
isFullCircle?: boolean;
|
|
3311
3469
|
} | {
|
|
3312
3470
|
axis?: "x";
|
|
3313
3471
|
tickLabelMinGap: number;
|
|
@@ -3331,24 +3489,26 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
3331
3489
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
3332
3490
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
3333
3491
|
tickLabelPlacement?: "middle" | "tick";
|
|
3334
|
-
data?: readonly any[] | undefined;
|
|
3335
|
-
dataKey?: string | undefined;
|
|
3336
3492
|
id: import("../internals/index.js").AxisId;
|
|
3337
3493
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
3494
|
+
data?: readonly any[] | undefined;
|
|
3495
|
+
dataKey?: string | undefined;
|
|
3496
|
+
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
3338
3497
|
height: number;
|
|
3339
3498
|
position?: "top" | "bottom" | "none";
|
|
3340
3499
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
3341
3500
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
3342
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
3343
|
-
min: import("
|
|
3344
|
-
max: import("
|
|
3501
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
3502
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
3503
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
3345
3504
|
}) | undefined;
|
|
3346
3505
|
hideTooltip?: boolean | undefined;
|
|
3347
3506
|
ignoreTooltip?: boolean | undefined;
|
|
3348
3507
|
offset: number;
|
|
3349
3508
|
scaleType: "utc";
|
|
3350
|
-
colorScale?: import("
|
|
3509
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
3351
3510
|
triggerTooltip?: boolean;
|
|
3511
|
+
isFullCircle?: boolean;
|
|
3352
3512
|
} | {
|
|
3353
3513
|
axis?: "x";
|
|
3354
3514
|
tickLabelMinGap: number;
|
|
@@ -3372,24 +3532,26 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
3372
3532
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
3373
3533
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
3374
3534
|
tickLabelPlacement?: "middle" | "tick";
|
|
3375
|
-
data?: readonly any[] | undefined;
|
|
3376
|
-
dataKey?: string | undefined;
|
|
3377
3535
|
id: import("../internals/index.js").AxisId;
|
|
3378
3536
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
3537
|
+
data?: readonly any[] | undefined;
|
|
3538
|
+
dataKey?: string | undefined;
|
|
3539
|
+
valueGetter?: ((item: import("../internals/index.js").DatasetElementType<unknown>) => any) | undefined;
|
|
3379
3540
|
height: number;
|
|
3380
3541
|
position?: "top" | "bottom" | "none";
|
|
3381
3542
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
3382
3543
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
3383
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
3384
|
-
min: import("
|
|
3385
|
-
max: import("
|
|
3544
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
3545
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
3546
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
3386
3547
|
}) | undefined;
|
|
3387
3548
|
hideTooltip?: boolean | undefined;
|
|
3388
3549
|
ignoreTooltip?: boolean | undefined;
|
|
3389
3550
|
offset: number;
|
|
3390
3551
|
scaleType: "utc";
|
|
3391
|
-
colorScale?: import("
|
|
3552
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
3392
3553
|
triggerTooltip?: boolean;
|
|
3554
|
+
isFullCircle?: boolean;
|
|
3393
3555
|
};
|
|
3394
3556
|
tickNumber: number;
|
|
3395
3557
|
positionSign: number;
|
|
@@ -3404,10 +3566,10 @@ export declare function useAxisTicksProps(inProps: ChartsXAxisProps): {
|
|
|
3404
3566
|
type?: string | undefined | undefined;
|
|
3405
3567
|
filter?: string | undefined | undefined;
|
|
3406
3568
|
values?: string | undefined | undefined;
|
|
3407
|
-
id?: string | undefined | undefined;
|
|
3408
|
-
color?: string | undefined | undefined;
|
|
3409
3569
|
min?: number | string | undefined | undefined;
|
|
3410
3570
|
max?: number | string | undefined | undefined;
|
|
3571
|
+
id?: string | undefined | undefined;
|
|
3572
|
+
color?: string | undefined | undefined;
|
|
3411
3573
|
slot?: string | undefined | undefined;
|
|
3412
3574
|
clipPath?: string | undefined | undefined;
|
|
3413
3575
|
mask?: string | undefined | undefined;
|