@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 ChartsYAxisProps } from "../models/axis.mjs";
|
|
2
2
|
import { ChartsText, type ChartsTextProps } from "../ChartsText/index.mjs";
|
|
3
3
|
export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
4
|
-
yScale: import("
|
|
4
|
+
yScale: import("@mui/x-charts-vendor/d3-scale").ScaleLinear<number, number, never> | import("@mui/x-charts-vendor/d3-scale").ScaleSymLog<number, number, never> | import("@mui/x-charts-vendor/d3-scale").ScaleLogarithmic<number, number, never> | import("@mui/x-charts-vendor/d3-scale").ScalePower<number, number, never> | import("@mui/x-charts-vendor/d3-scale").ScaleTime<number, number, never> | import("@mui/x-charts-vendor/d3-scale").ScaleBand<{
|
|
5
5
|
toString(): string;
|
|
6
|
-
}> | import("
|
|
6
|
+
}> | import("@mui/x-charts-vendor/d3-scale").ScalePoint<{
|
|
7
7
|
toString(): string;
|
|
8
8
|
}>;
|
|
9
9
|
defaultizedProps: {
|
|
@@ -28,24 +28,26 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
28
28
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
29
29
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
30
30
|
tickLabelPlacement?: "middle" | "tick";
|
|
31
|
-
data?: readonly any[] | undefined;
|
|
32
|
-
dataKey?: string | undefined;
|
|
33
31
|
id: import("../internals/index.mjs").AxisId;
|
|
34
32
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
33
|
+
data?: readonly any[] | undefined;
|
|
34
|
+
dataKey?: string | undefined;
|
|
35
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
35
36
|
position?: "left" | "right" | "none";
|
|
36
37
|
width: number;
|
|
37
38
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
38
39
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
39
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
40
|
-
min: import("
|
|
41
|
-
max: import("
|
|
40
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
41
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
42
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
42
43
|
}) | undefined;
|
|
43
44
|
hideTooltip?: boolean | undefined;
|
|
44
45
|
ignoreTooltip?: boolean | undefined;
|
|
45
46
|
offset: number;
|
|
46
47
|
scaleType: "linear";
|
|
47
|
-
colorScale?: import("
|
|
48
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
48
49
|
triggerTooltip?: boolean;
|
|
50
|
+
isFullCircle?: boolean;
|
|
49
51
|
} | {
|
|
50
52
|
axis?: "y";
|
|
51
53
|
className?: string;
|
|
@@ -68,24 +70,26 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
68
70
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
69
71
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
70
72
|
tickLabelPlacement?: "middle" | "tick";
|
|
71
|
-
data?: readonly any[] | undefined;
|
|
72
|
-
dataKey?: string | undefined;
|
|
73
73
|
id: import("../internals/index.mjs").AxisId;
|
|
74
74
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
75
|
+
data?: readonly any[] | undefined;
|
|
76
|
+
dataKey?: string | undefined;
|
|
77
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
75
78
|
position?: "left" | "right" | "none";
|
|
76
79
|
width: number;
|
|
77
80
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
78
81
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
79
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
80
|
-
min: import("
|
|
81
|
-
max: import("
|
|
82
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
83
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
84
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
82
85
|
}) | undefined;
|
|
83
86
|
hideTooltip?: boolean | undefined;
|
|
84
87
|
ignoreTooltip?: boolean | undefined;
|
|
85
88
|
offset: number;
|
|
86
89
|
scaleType: "linear";
|
|
87
|
-
colorScale?: import("
|
|
90
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
88
91
|
triggerTooltip?: boolean;
|
|
92
|
+
isFullCircle?: boolean;
|
|
89
93
|
} | {
|
|
90
94
|
axis?: "y";
|
|
91
95
|
className?: string;
|
|
@@ -108,24 +112,26 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
108
112
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
109
113
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
110
114
|
tickLabelPlacement?: "middle" | "tick";
|
|
111
|
-
data?: readonly any[] | undefined;
|
|
112
|
-
dataKey?: string | undefined;
|
|
113
115
|
id: import("../internals/index.mjs").AxisId;
|
|
114
116
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
117
|
+
data?: readonly any[] | undefined;
|
|
118
|
+
dataKey?: string | undefined;
|
|
119
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
115
120
|
position?: "left" | "right" | "none";
|
|
116
121
|
width: number;
|
|
117
122
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
118
123
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
119
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
120
|
-
min: import("
|
|
121
|
-
max: import("
|
|
124
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
125
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
126
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
122
127
|
}) | undefined;
|
|
123
128
|
hideTooltip?: boolean | undefined;
|
|
124
129
|
ignoreTooltip?: boolean | undefined;
|
|
125
130
|
offset: number;
|
|
126
131
|
scaleType: "linear";
|
|
127
|
-
colorScale?: import("
|
|
132
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
128
133
|
triggerTooltip?: boolean;
|
|
134
|
+
isFullCircle?: boolean;
|
|
129
135
|
} | {
|
|
130
136
|
axis?: "y";
|
|
131
137
|
className?: string;
|
|
@@ -148,24 +154,26 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
148
154
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
149
155
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
150
156
|
tickLabelPlacement?: "middle" | "tick";
|
|
151
|
-
data?: readonly any[] | undefined;
|
|
152
|
-
dataKey?: string | undefined;
|
|
153
157
|
id: import("../internals/index.mjs").AxisId;
|
|
154
158
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
159
|
+
data?: readonly any[] | undefined;
|
|
160
|
+
dataKey?: string | undefined;
|
|
161
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
155
162
|
position?: "left" | "right" | "none";
|
|
156
163
|
width: number;
|
|
157
164
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
158
165
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
159
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
160
|
-
min: import("
|
|
161
|
-
max: import("
|
|
166
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
167
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
168
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
162
169
|
}) | undefined;
|
|
163
170
|
hideTooltip?: boolean | undefined;
|
|
164
171
|
ignoreTooltip?: boolean | undefined;
|
|
165
172
|
offset: number;
|
|
166
173
|
scaleType: "linear";
|
|
167
|
-
colorScale?: import("
|
|
174
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<string | number | Date, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<number, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
168
175
|
triggerTooltip?: boolean;
|
|
176
|
+
isFullCircle?: boolean;
|
|
169
177
|
} | {
|
|
170
178
|
axis?: "y";
|
|
171
179
|
className?: string;
|
|
@@ -188,24 +196,26 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
188
196
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
189
197
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
190
198
|
tickLabelPlacement?: "middle" | "tick";
|
|
191
|
-
data?: readonly any[] | undefined;
|
|
192
|
-
dataKey?: string | undefined;
|
|
193
199
|
id: import("../internals/index.mjs").AxisId;
|
|
194
200
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
201
|
+
data?: readonly any[] | undefined;
|
|
202
|
+
dataKey?: string | undefined;
|
|
203
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
195
204
|
position?: "left" | "right" | "none";
|
|
196
205
|
width: number;
|
|
197
206
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
198
207
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
199
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
200
|
-
min: import("
|
|
201
|
-
max: import("
|
|
208
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
209
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
210
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
202
211
|
}) | undefined;
|
|
203
212
|
hideTooltip?: boolean | undefined;
|
|
204
213
|
ignoreTooltip?: boolean | undefined;
|
|
205
214
|
offset: number;
|
|
206
215
|
scaleType: "linear";
|
|
207
|
-
colorScale?: import("
|
|
216
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<string | number | Date, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<number, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
208
217
|
triggerTooltip?: boolean;
|
|
218
|
+
isFullCircle?: boolean;
|
|
209
219
|
} | {
|
|
210
220
|
axis?: "y";
|
|
211
221
|
className?: string;
|
|
@@ -228,24 +238,26 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
228
238
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
229
239
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
230
240
|
tickLabelPlacement?: "middle" | "tick";
|
|
231
|
-
data?: readonly any[] | undefined;
|
|
232
|
-
dataKey?: string | undefined;
|
|
233
241
|
id: import("../internals/index.mjs").AxisId;
|
|
234
242
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
243
|
+
data?: readonly any[] | undefined;
|
|
244
|
+
dataKey?: string | undefined;
|
|
245
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
235
246
|
position?: "left" | "right" | "none";
|
|
236
247
|
width: number;
|
|
237
248
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
238
249
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
239
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
240
|
-
min: import("
|
|
241
|
-
max: import("
|
|
250
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
251
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
252
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
242
253
|
}) | undefined;
|
|
243
254
|
hideTooltip?: boolean | undefined;
|
|
244
255
|
ignoreTooltip?: boolean | undefined;
|
|
245
256
|
offset: number;
|
|
246
257
|
scaleType: "linear";
|
|
247
|
-
colorScale?: import("
|
|
258
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
248
259
|
triggerTooltip?: boolean;
|
|
260
|
+
isFullCircle?: boolean;
|
|
249
261
|
} | {
|
|
250
262
|
axis?: "y";
|
|
251
263
|
className?: string;
|
|
@@ -268,24 +280,26 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
268
280
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
269
281
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
270
282
|
tickLabelPlacement?: "middle" | "tick";
|
|
271
|
-
data?: readonly any[] | undefined;
|
|
272
|
-
dataKey?: string | undefined;
|
|
273
283
|
id: import("../internals/index.mjs").AxisId;
|
|
274
284
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
285
|
+
data?: readonly any[] | undefined;
|
|
286
|
+
dataKey?: string | undefined;
|
|
287
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
275
288
|
position?: "left" | "right" | "none";
|
|
276
289
|
width: number;
|
|
277
290
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
278
291
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
279
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
280
|
-
min: import("
|
|
281
|
-
max: import("
|
|
292
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
293
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
294
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
282
295
|
}) | undefined;
|
|
283
296
|
hideTooltip?: boolean | undefined;
|
|
284
297
|
ignoreTooltip?: boolean | undefined;
|
|
285
298
|
offset: number;
|
|
286
299
|
scaleType: "linear";
|
|
287
|
-
colorScale?: import("
|
|
300
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
288
301
|
triggerTooltip?: boolean;
|
|
302
|
+
isFullCircle?: boolean;
|
|
289
303
|
} | {
|
|
290
304
|
axis?: "y";
|
|
291
305
|
className?: string;
|
|
@@ -308,24 +322,26 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
308
322
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
309
323
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
310
324
|
tickLabelPlacement?: "middle" | "tick";
|
|
311
|
-
data?: readonly any[] | undefined;
|
|
312
|
-
dataKey?: string | undefined;
|
|
313
325
|
id: import("../internals/index.mjs").AxisId;
|
|
314
326
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
327
|
+
data?: readonly any[] | undefined;
|
|
328
|
+
dataKey?: string | undefined;
|
|
329
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
315
330
|
position?: "left" | "right" | "none";
|
|
316
331
|
width: number;
|
|
317
332
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
318
333
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
319
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
320
|
-
min: import("
|
|
321
|
-
max: import("
|
|
334
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
335
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
336
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
322
337
|
}) | undefined;
|
|
323
338
|
hideTooltip?: boolean | undefined;
|
|
324
339
|
ignoreTooltip?: boolean | undefined;
|
|
325
340
|
offset: number;
|
|
326
341
|
scaleType: "linear";
|
|
327
|
-
colorScale?: import("
|
|
342
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
328
343
|
triggerTooltip?: boolean;
|
|
344
|
+
isFullCircle?: boolean;
|
|
329
345
|
} | {
|
|
330
346
|
axis?: "y";
|
|
331
347
|
className?: string;
|
|
@@ -348,24 +364,26 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
348
364
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
349
365
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
350
366
|
tickLabelPlacement?: "middle" | "tick";
|
|
351
|
-
data?: readonly any[] | undefined;
|
|
352
|
-
dataKey?: string | undefined;
|
|
353
367
|
id: import("../internals/index.mjs").AxisId;
|
|
354
368
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
369
|
+
data?: readonly any[] | undefined;
|
|
370
|
+
dataKey?: string | undefined;
|
|
371
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
355
372
|
position?: "left" | "right" | "none";
|
|
356
373
|
width: number;
|
|
357
374
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
358
375
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
359
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
360
|
-
min: import("
|
|
361
|
-
max: import("
|
|
376
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
377
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
378
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
362
379
|
}) | undefined;
|
|
363
380
|
hideTooltip?: boolean | undefined;
|
|
364
381
|
ignoreTooltip?: boolean | undefined;
|
|
365
382
|
offset: number;
|
|
366
383
|
scaleType: "linear";
|
|
367
|
-
colorScale?: import("
|
|
384
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
368
385
|
triggerTooltip?: boolean;
|
|
386
|
+
isFullCircle?: boolean;
|
|
369
387
|
} | {
|
|
370
388
|
axis?: "y";
|
|
371
389
|
className?: string;
|
|
@@ -388,24 +406,26 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
388
406
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
389
407
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
390
408
|
tickLabelPlacement?: "middle" | "tick";
|
|
391
|
-
data?: readonly any[] | undefined;
|
|
392
|
-
dataKey?: string | undefined;
|
|
393
409
|
id: import("../internals/index.mjs").AxisId;
|
|
394
410
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
411
|
+
data?: readonly any[] | undefined;
|
|
412
|
+
dataKey?: string | undefined;
|
|
413
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
395
414
|
position?: "left" | "right" | "none";
|
|
396
415
|
width: number;
|
|
397
416
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
398
417
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
399
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
400
|
-
min: import("
|
|
401
|
-
max: import("
|
|
418
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
419
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
420
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
402
421
|
}) | undefined;
|
|
403
422
|
hideTooltip?: boolean | undefined;
|
|
404
423
|
ignoreTooltip?: boolean | undefined;
|
|
405
424
|
offset: number;
|
|
406
425
|
scaleType: "time";
|
|
407
|
-
colorScale?: import("
|
|
426
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
408
427
|
triggerTooltip?: boolean;
|
|
428
|
+
isFullCircle?: boolean;
|
|
409
429
|
} | {
|
|
410
430
|
axis?: "y";
|
|
411
431
|
className?: string;
|
|
@@ -428,24 +448,26 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
428
448
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
429
449
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
430
450
|
tickLabelPlacement?: "middle" | "tick";
|
|
431
|
-
data?: readonly any[] | undefined;
|
|
432
|
-
dataKey?: string | undefined;
|
|
433
451
|
id: import("../internals/index.mjs").AxisId;
|
|
434
452
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
453
|
+
data?: readonly any[] | undefined;
|
|
454
|
+
dataKey?: string | undefined;
|
|
455
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
435
456
|
position?: "left" | "right" | "none";
|
|
436
457
|
width: number;
|
|
437
458
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
438
459
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
439
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
440
|
-
min: import("
|
|
441
|
-
max: import("
|
|
460
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
461
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
462
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
442
463
|
}) | undefined;
|
|
443
464
|
hideTooltip?: boolean | undefined;
|
|
444
465
|
ignoreTooltip?: boolean | undefined;
|
|
445
466
|
offset: number;
|
|
446
467
|
scaleType: "time";
|
|
447
|
-
colorScale?: import("
|
|
468
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
448
469
|
triggerTooltip?: boolean;
|
|
470
|
+
isFullCircle?: boolean;
|
|
449
471
|
} | {
|
|
450
472
|
axis?: "y";
|
|
451
473
|
className?: string;
|
|
@@ -468,24 +490,26 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
468
490
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
469
491
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
470
492
|
tickLabelPlacement?: "middle" | "tick";
|
|
471
|
-
data?: readonly any[] | undefined;
|
|
472
|
-
dataKey?: string | undefined;
|
|
473
493
|
id: import("../internals/index.mjs").AxisId;
|
|
474
494
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
495
|
+
data?: readonly any[] | undefined;
|
|
496
|
+
dataKey?: string | undefined;
|
|
497
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
475
498
|
position?: "left" | "right" | "none";
|
|
476
499
|
width: number;
|
|
477
500
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
478
501
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
479
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
480
|
-
min: import("
|
|
481
|
-
max: import("
|
|
502
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
503
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
504
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
482
505
|
}) | undefined;
|
|
483
506
|
hideTooltip?: boolean | undefined;
|
|
484
507
|
ignoreTooltip?: boolean | undefined;
|
|
485
508
|
offset: number;
|
|
486
509
|
scaleType: "time";
|
|
487
|
-
colorScale?: import("
|
|
510
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
488
511
|
triggerTooltip?: boolean;
|
|
512
|
+
isFullCircle?: boolean;
|
|
489
513
|
} | {
|
|
490
514
|
axis?: "y";
|
|
491
515
|
className?: string;
|
|
@@ -508,24 +532,26 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
508
532
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
509
533
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
510
534
|
tickLabelPlacement?: "middle" | "tick";
|
|
511
|
-
data?: readonly any[] | undefined;
|
|
512
|
-
dataKey?: string | undefined;
|
|
513
535
|
id: import("../internals/index.mjs").AxisId;
|
|
514
536
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
537
|
+
data?: readonly any[] | undefined;
|
|
538
|
+
dataKey?: string | undefined;
|
|
539
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
515
540
|
position?: "left" | "right" | "none";
|
|
516
541
|
width: number;
|
|
517
542
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
518
543
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
519
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
520
|
-
min: import("
|
|
521
|
-
max: import("
|
|
544
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
545
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
546
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
522
547
|
}) | undefined;
|
|
523
548
|
hideTooltip?: boolean | undefined;
|
|
524
549
|
ignoreTooltip?: boolean | undefined;
|
|
525
550
|
offset: number;
|
|
526
551
|
scaleType: "time";
|
|
527
|
-
colorScale?: import("
|
|
552
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<string | number | Date, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<number, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
528
553
|
triggerTooltip?: boolean;
|
|
554
|
+
isFullCircle?: boolean;
|
|
529
555
|
} | {
|
|
530
556
|
axis?: "y";
|
|
531
557
|
className?: string;
|
|
@@ -548,24 +574,26 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
548
574
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
549
575
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
550
576
|
tickLabelPlacement?: "middle" | "tick";
|
|
551
|
-
data?: readonly any[] | undefined;
|
|
552
|
-
dataKey?: string | undefined;
|
|
553
577
|
id: import("../internals/index.mjs").AxisId;
|
|
554
578
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
579
|
+
data?: readonly any[] | undefined;
|
|
580
|
+
dataKey?: string | undefined;
|
|
581
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
555
582
|
position?: "left" | "right" | "none";
|
|
556
583
|
width: number;
|
|
557
584
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
558
585
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
559
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
560
|
-
min: import("
|
|
561
|
-
max: import("
|
|
586
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
587
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
588
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
562
589
|
}) | undefined;
|
|
563
590
|
hideTooltip?: boolean | undefined;
|
|
564
591
|
ignoreTooltip?: boolean | undefined;
|
|
565
592
|
offset: number;
|
|
566
593
|
scaleType: "time";
|
|
567
|
-
colorScale?: import("
|
|
594
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<string | number | Date, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<number, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
568
595
|
triggerTooltip?: boolean;
|
|
596
|
+
isFullCircle?: boolean;
|
|
569
597
|
} | {
|
|
570
598
|
axis?: "y";
|
|
571
599
|
className?: string;
|
|
@@ -588,24 +616,26 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
588
616
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
589
617
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
590
618
|
tickLabelPlacement?: "middle" | "tick";
|
|
591
|
-
data?: readonly any[] | undefined;
|
|
592
|
-
dataKey?: string | undefined;
|
|
593
619
|
id: import("../internals/index.mjs").AxisId;
|
|
594
620
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
621
|
+
data?: readonly any[] | undefined;
|
|
622
|
+
dataKey?: string | undefined;
|
|
623
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
595
624
|
position?: "left" | "right" | "none";
|
|
596
625
|
width: number;
|
|
597
626
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
598
627
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
599
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
600
|
-
min: import("
|
|
601
|
-
max: import("
|
|
628
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
629
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
630
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
602
631
|
}) | undefined;
|
|
603
632
|
hideTooltip?: boolean | undefined;
|
|
604
633
|
ignoreTooltip?: boolean | undefined;
|
|
605
634
|
offset: number;
|
|
606
635
|
scaleType: "time";
|
|
607
|
-
colorScale?: import("
|
|
636
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
608
637
|
triggerTooltip?: boolean;
|
|
638
|
+
isFullCircle?: boolean;
|
|
609
639
|
} | {
|
|
610
640
|
axis?: "y";
|
|
611
641
|
className?: string;
|
|
@@ -628,24 +658,26 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
628
658
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
629
659
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
630
660
|
tickLabelPlacement?: "middle" | "tick";
|
|
631
|
-
data?: readonly any[] | undefined;
|
|
632
|
-
dataKey?: string | undefined;
|
|
633
661
|
id: import("../internals/index.mjs").AxisId;
|
|
634
662
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
663
|
+
data?: readonly any[] | undefined;
|
|
664
|
+
dataKey?: string | undefined;
|
|
665
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
635
666
|
position?: "left" | "right" | "none";
|
|
636
667
|
width: number;
|
|
637
668
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
638
669
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
639
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
640
|
-
min: import("
|
|
641
|
-
max: import("
|
|
670
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
671
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
672
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
642
673
|
}) | undefined;
|
|
643
674
|
hideTooltip?: boolean | undefined;
|
|
644
675
|
ignoreTooltip?: boolean | undefined;
|
|
645
676
|
offset: number;
|
|
646
677
|
scaleType: "time";
|
|
647
|
-
colorScale?: import("
|
|
678
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
648
679
|
triggerTooltip?: boolean;
|
|
680
|
+
isFullCircle?: boolean;
|
|
649
681
|
} | {
|
|
650
682
|
axis?: "y";
|
|
651
683
|
className?: string;
|
|
@@ -668,24 +700,26 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
668
700
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
669
701
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
670
702
|
tickLabelPlacement?: "middle" | "tick";
|
|
671
|
-
data?: readonly any[] | undefined;
|
|
672
|
-
dataKey?: string | undefined;
|
|
673
703
|
id: import("../internals/index.mjs").AxisId;
|
|
674
704
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
705
|
+
data?: readonly any[] | undefined;
|
|
706
|
+
dataKey?: string | undefined;
|
|
707
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
675
708
|
position?: "left" | "right" | "none";
|
|
676
709
|
width: number;
|
|
677
710
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
678
711
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
679
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
680
|
-
min: import("
|
|
681
|
-
max: import("
|
|
712
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
713
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
714
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
682
715
|
}) | undefined;
|
|
683
716
|
hideTooltip?: boolean | undefined;
|
|
684
717
|
ignoreTooltip?: boolean | undefined;
|
|
685
718
|
offset: number;
|
|
686
719
|
scaleType: "time";
|
|
687
|
-
colorScale?: import("
|
|
720
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
688
721
|
triggerTooltip?: boolean;
|
|
722
|
+
isFullCircle?: boolean;
|
|
689
723
|
} | {
|
|
690
724
|
axis?: "y";
|
|
691
725
|
className?: string;
|
|
@@ -708,24 +742,26 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
708
742
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
709
743
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
710
744
|
tickLabelPlacement?: "middle" | "tick";
|
|
711
|
-
data?: readonly any[] | undefined;
|
|
712
|
-
dataKey?: string | undefined;
|
|
713
745
|
id: import("../internals/index.mjs").AxisId;
|
|
714
746
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
747
|
+
data?: readonly any[] | undefined;
|
|
748
|
+
dataKey?: string | undefined;
|
|
749
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
715
750
|
position?: "left" | "right" | "none";
|
|
716
751
|
width: number;
|
|
717
752
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
718
753
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
719
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
720
|
-
min: import("
|
|
721
|
-
max: import("
|
|
754
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
755
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
756
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
722
757
|
}) | undefined;
|
|
723
758
|
hideTooltip?: boolean | undefined;
|
|
724
759
|
ignoreTooltip?: boolean | undefined;
|
|
725
760
|
offset: number;
|
|
726
761
|
scaleType: "time";
|
|
727
|
-
colorScale?: import("
|
|
762
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
728
763
|
triggerTooltip?: boolean;
|
|
764
|
+
isFullCircle?: boolean;
|
|
729
765
|
} | {
|
|
730
766
|
axis?: "y";
|
|
731
767
|
className?: string;
|
|
@@ -748,24 +784,26 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
748
784
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
749
785
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
750
786
|
tickLabelPlacement?: "middle" | "tick";
|
|
751
|
-
data?: readonly any[] | undefined;
|
|
752
|
-
dataKey?: string | undefined;
|
|
753
787
|
id: import("../internals/index.mjs").AxisId;
|
|
754
788
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
789
|
+
data?: readonly any[] | undefined;
|
|
790
|
+
dataKey?: string | undefined;
|
|
791
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
755
792
|
position?: "left" | "right" | "none";
|
|
756
793
|
width: number;
|
|
757
794
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
758
795
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
759
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
760
|
-
min: import("
|
|
761
|
-
max: import("
|
|
796
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
797
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
798
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
762
799
|
}) | undefined;
|
|
763
800
|
hideTooltip?: boolean | undefined;
|
|
764
801
|
ignoreTooltip?: boolean | undefined;
|
|
765
802
|
offset: number;
|
|
766
803
|
scaleType: "log";
|
|
767
|
-
colorScale?: import("
|
|
804
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
768
805
|
triggerTooltip?: boolean;
|
|
806
|
+
isFullCircle?: boolean;
|
|
769
807
|
} | {
|
|
770
808
|
axis?: "y";
|
|
771
809
|
className?: string;
|
|
@@ -788,24 +826,26 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
788
826
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
789
827
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
790
828
|
tickLabelPlacement?: "middle" | "tick";
|
|
791
|
-
data?: readonly any[] | undefined;
|
|
792
|
-
dataKey?: string | undefined;
|
|
793
829
|
id: import("../internals/index.mjs").AxisId;
|
|
794
830
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
831
|
+
data?: readonly any[] | undefined;
|
|
832
|
+
dataKey?: string | undefined;
|
|
833
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
795
834
|
position?: "left" | "right" | "none";
|
|
796
835
|
width: number;
|
|
797
836
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
798
837
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
799
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
800
|
-
min: import("
|
|
801
|
-
max: import("
|
|
838
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
839
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
840
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
802
841
|
}) | undefined;
|
|
803
842
|
hideTooltip?: boolean | undefined;
|
|
804
843
|
ignoreTooltip?: boolean | undefined;
|
|
805
844
|
offset: number;
|
|
806
845
|
scaleType: "log";
|
|
807
|
-
colorScale?: import("
|
|
846
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
808
847
|
triggerTooltip?: boolean;
|
|
848
|
+
isFullCircle?: boolean;
|
|
809
849
|
} | {
|
|
810
850
|
axis?: "y";
|
|
811
851
|
className?: string;
|
|
@@ -828,24 +868,26 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
828
868
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
829
869
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
830
870
|
tickLabelPlacement?: "middle" | "tick";
|
|
831
|
-
data?: readonly any[] | undefined;
|
|
832
|
-
dataKey?: string | undefined;
|
|
833
871
|
id: import("../internals/index.mjs").AxisId;
|
|
834
872
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
873
|
+
data?: readonly any[] | undefined;
|
|
874
|
+
dataKey?: string | undefined;
|
|
875
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
835
876
|
position?: "left" | "right" | "none";
|
|
836
877
|
width: number;
|
|
837
878
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
838
879
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
839
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
840
|
-
min: import("
|
|
841
|
-
max: import("
|
|
880
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
881
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
882
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
842
883
|
}) | undefined;
|
|
843
884
|
hideTooltip?: boolean | undefined;
|
|
844
885
|
ignoreTooltip?: boolean | undefined;
|
|
845
886
|
offset: number;
|
|
846
887
|
scaleType: "log";
|
|
847
|
-
colorScale?: import("
|
|
888
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
848
889
|
triggerTooltip?: boolean;
|
|
890
|
+
isFullCircle?: boolean;
|
|
849
891
|
} | {
|
|
850
892
|
axis?: "y";
|
|
851
893
|
className?: string;
|
|
@@ -868,24 +910,26 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
868
910
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
869
911
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
870
912
|
tickLabelPlacement?: "middle" | "tick";
|
|
871
|
-
data?: readonly any[] | undefined;
|
|
872
|
-
dataKey?: string | undefined;
|
|
873
913
|
id: import("../internals/index.mjs").AxisId;
|
|
874
914
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
915
|
+
data?: readonly any[] | undefined;
|
|
916
|
+
dataKey?: string | undefined;
|
|
917
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
875
918
|
position?: "left" | "right" | "none";
|
|
876
919
|
width: number;
|
|
877
920
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
878
921
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
879
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
880
|
-
min: import("
|
|
881
|
-
max: import("
|
|
922
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
923
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
924
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
882
925
|
}) | undefined;
|
|
883
926
|
hideTooltip?: boolean | undefined;
|
|
884
927
|
ignoreTooltip?: boolean | undefined;
|
|
885
928
|
offset: number;
|
|
886
929
|
scaleType: "log";
|
|
887
|
-
colorScale?: import("
|
|
930
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<string | number | Date, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<number, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
888
931
|
triggerTooltip?: boolean;
|
|
932
|
+
isFullCircle?: boolean;
|
|
889
933
|
} | {
|
|
890
934
|
axis?: "y";
|
|
891
935
|
className?: string;
|
|
@@ -908,24 +952,26 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
908
952
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
909
953
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
910
954
|
tickLabelPlacement?: "middle" | "tick";
|
|
911
|
-
data?: readonly any[] | undefined;
|
|
912
|
-
dataKey?: string | undefined;
|
|
913
955
|
id: import("../internals/index.mjs").AxisId;
|
|
914
956
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
957
|
+
data?: readonly any[] | undefined;
|
|
958
|
+
dataKey?: string | undefined;
|
|
959
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
915
960
|
position?: "left" | "right" | "none";
|
|
916
961
|
width: number;
|
|
917
962
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
918
963
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
919
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
920
|
-
min: import("
|
|
921
|
-
max: import("
|
|
964
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
965
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
966
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
922
967
|
}) | undefined;
|
|
923
968
|
hideTooltip?: boolean | undefined;
|
|
924
969
|
ignoreTooltip?: boolean | undefined;
|
|
925
970
|
offset: number;
|
|
926
971
|
scaleType: "log";
|
|
927
|
-
colorScale?: import("
|
|
972
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<string | number | Date, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<number, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
928
973
|
triggerTooltip?: boolean;
|
|
974
|
+
isFullCircle?: boolean;
|
|
929
975
|
} | {
|
|
930
976
|
axis?: "y";
|
|
931
977
|
className?: string;
|
|
@@ -948,24 +994,26 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
948
994
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
949
995
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
950
996
|
tickLabelPlacement?: "middle" | "tick";
|
|
951
|
-
data?: readonly any[] | undefined;
|
|
952
|
-
dataKey?: string | undefined;
|
|
953
997
|
id: import("../internals/index.mjs").AxisId;
|
|
954
998
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
999
|
+
data?: readonly any[] | undefined;
|
|
1000
|
+
dataKey?: string | undefined;
|
|
1001
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
955
1002
|
position?: "left" | "right" | "none";
|
|
956
1003
|
width: number;
|
|
957
1004
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
958
1005
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
959
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
960
|
-
min: import("
|
|
961
|
-
max: import("
|
|
1006
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
1007
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1008
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
962
1009
|
}) | undefined;
|
|
963
1010
|
hideTooltip?: boolean | undefined;
|
|
964
1011
|
ignoreTooltip?: boolean | undefined;
|
|
965
1012
|
offset: number;
|
|
966
1013
|
scaleType: "log";
|
|
967
|
-
colorScale?: import("
|
|
1014
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
968
1015
|
triggerTooltip?: boolean;
|
|
1016
|
+
isFullCircle?: boolean;
|
|
969
1017
|
} | {
|
|
970
1018
|
axis?: "y";
|
|
971
1019
|
className?: string;
|
|
@@ -988,24 +1036,26 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
988
1036
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
989
1037
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
990
1038
|
tickLabelPlacement?: "middle" | "tick";
|
|
991
|
-
data?: readonly any[] | undefined;
|
|
992
|
-
dataKey?: string | undefined;
|
|
993
1039
|
id: import("../internals/index.mjs").AxisId;
|
|
994
1040
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1041
|
+
data?: readonly any[] | undefined;
|
|
1042
|
+
dataKey?: string | undefined;
|
|
1043
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
995
1044
|
position?: "left" | "right" | "none";
|
|
996
1045
|
width: number;
|
|
997
1046
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
998
1047
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
999
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
1000
|
-
min: import("
|
|
1001
|
-
max: import("
|
|
1048
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
1049
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1050
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1002
1051
|
}) | undefined;
|
|
1003
1052
|
hideTooltip?: boolean | undefined;
|
|
1004
1053
|
ignoreTooltip?: boolean | undefined;
|
|
1005
1054
|
offset: number;
|
|
1006
1055
|
scaleType: "log";
|
|
1007
|
-
colorScale?: import("
|
|
1056
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
1008
1057
|
triggerTooltip?: boolean;
|
|
1058
|
+
isFullCircle?: boolean;
|
|
1009
1059
|
} | {
|
|
1010
1060
|
axis?: "y";
|
|
1011
1061
|
className?: string;
|
|
@@ -1028,24 +1078,26 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1028
1078
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
1029
1079
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
1030
1080
|
tickLabelPlacement?: "middle" | "tick";
|
|
1031
|
-
data?: readonly any[] | undefined;
|
|
1032
|
-
dataKey?: string | undefined;
|
|
1033
1081
|
id: import("../internals/index.mjs").AxisId;
|
|
1034
1082
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1083
|
+
data?: readonly any[] | undefined;
|
|
1084
|
+
dataKey?: string | undefined;
|
|
1085
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
1035
1086
|
position?: "left" | "right" | "none";
|
|
1036
1087
|
width: number;
|
|
1037
1088
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
1038
1089
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
1039
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
1040
|
-
min: import("
|
|
1041
|
-
max: import("
|
|
1090
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
1091
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1092
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1042
1093
|
}) | undefined;
|
|
1043
1094
|
hideTooltip?: boolean | undefined;
|
|
1044
1095
|
ignoreTooltip?: boolean | undefined;
|
|
1045
1096
|
offset: number;
|
|
1046
1097
|
scaleType: "log";
|
|
1047
|
-
colorScale?: import("
|
|
1098
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
1048
1099
|
triggerTooltip?: boolean;
|
|
1100
|
+
isFullCircle?: boolean;
|
|
1049
1101
|
} | {
|
|
1050
1102
|
axis?: "y";
|
|
1051
1103
|
className?: string;
|
|
@@ -1068,24 +1120,26 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1068
1120
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
1069
1121
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
1070
1122
|
tickLabelPlacement?: "middle" | "tick";
|
|
1071
|
-
data?: readonly any[] | undefined;
|
|
1072
|
-
dataKey?: string | undefined;
|
|
1073
1123
|
id: import("../internals/index.mjs").AxisId;
|
|
1074
1124
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1125
|
+
data?: readonly any[] | undefined;
|
|
1126
|
+
dataKey?: string | undefined;
|
|
1127
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
1075
1128
|
position?: "left" | "right" | "none";
|
|
1076
1129
|
width: number;
|
|
1077
1130
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
1078
1131
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
1079
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
1080
|
-
min: import("
|
|
1081
|
-
max: import("
|
|
1132
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
1133
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1134
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1082
1135
|
}) | undefined;
|
|
1083
1136
|
hideTooltip?: boolean | undefined;
|
|
1084
1137
|
ignoreTooltip?: boolean | undefined;
|
|
1085
1138
|
offset: number;
|
|
1086
1139
|
scaleType: "log";
|
|
1087
|
-
colorScale?: import("
|
|
1140
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
1088
1141
|
triggerTooltip?: boolean;
|
|
1142
|
+
isFullCircle?: boolean;
|
|
1089
1143
|
} | {
|
|
1090
1144
|
axis?: "y";
|
|
1091
1145
|
className?: string;
|
|
@@ -1108,17 +1162,18 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1108
1162
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
1109
1163
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
1110
1164
|
tickLabelPlacement?: "middle" | "tick";
|
|
1111
|
-
data?: readonly any[] | undefined;
|
|
1112
|
-
dataKey?: string | undefined;
|
|
1113
1165
|
id: import("../internals/index.mjs").AxisId;
|
|
1114
1166
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1167
|
+
data?: readonly any[] | undefined;
|
|
1168
|
+
dataKey?: string | undefined;
|
|
1169
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
1115
1170
|
position?: "left" | "right" | "none";
|
|
1116
1171
|
width: number;
|
|
1117
1172
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
1118
1173
|
colorMap?: import("../models/colorMapping.mjs").OrdinalColorConfig | import("../models/colorMapping.mjs").ContinuousColorConfig | import("../models/colorMapping.mjs").PiecewiseColorConfig;
|
|
1119
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
1120
|
-
min: import("
|
|
1121
|
-
max: import("
|
|
1174
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
1175
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1176
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1122
1177
|
}) | undefined;
|
|
1123
1178
|
hideTooltip?: boolean | undefined;
|
|
1124
1179
|
ignoreTooltip?: boolean | undefined;
|
|
@@ -1128,8 +1183,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1128
1183
|
categoryGapRatio: number;
|
|
1129
1184
|
barGapRatio: number;
|
|
1130
1185
|
groups?: import("../internals/index.mjs").AxisGroup[];
|
|
1131
|
-
colorScale?: import("
|
|
1186
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
1132
1187
|
triggerTooltip?: boolean;
|
|
1188
|
+
isFullCircle?: boolean;
|
|
1133
1189
|
} | {
|
|
1134
1190
|
axis?: "y";
|
|
1135
1191
|
className?: string;
|
|
@@ -1152,17 +1208,18 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1152
1208
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
1153
1209
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
1154
1210
|
tickLabelPlacement?: "middle" | "tick";
|
|
1155
|
-
data?: readonly any[] | undefined;
|
|
1156
|
-
dataKey?: string | undefined;
|
|
1157
1211
|
id: import("../internals/index.mjs").AxisId;
|
|
1158
1212
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1213
|
+
data?: readonly any[] | undefined;
|
|
1214
|
+
dataKey?: string | undefined;
|
|
1215
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
1159
1216
|
position?: "left" | "right" | "none";
|
|
1160
1217
|
width: number;
|
|
1161
1218
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
1162
1219
|
colorMap?: import("../models/colorMapping.mjs").OrdinalColorConfig | import("../models/colorMapping.mjs").ContinuousColorConfig | import("../models/colorMapping.mjs").PiecewiseColorConfig;
|
|
1163
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
1164
|
-
min: import("
|
|
1165
|
-
max: import("
|
|
1220
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
1221
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1222
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1166
1223
|
}) | undefined;
|
|
1167
1224
|
hideTooltip?: boolean | undefined;
|
|
1168
1225
|
ignoreTooltip?: boolean | undefined;
|
|
@@ -1172,8 +1229,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1172
1229
|
categoryGapRatio: number;
|
|
1173
1230
|
barGapRatio: number;
|
|
1174
1231
|
groups?: import("../internals/index.mjs").AxisGroup[];
|
|
1175
|
-
colorScale?: import("
|
|
1232
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
1176
1233
|
triggerTooltip?: boolean;
|
|
1234
|
+
isFullCircle?: boolean;
|
|
1177
1235
|
} | {
|
|
1178
1236
|
axis?: "y";
|
|
1179
1237
|
className?: string;
|
|
@@ -1196,17 +1254,18 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1196
1254
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
1197
1255
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
1198
1256
|
tickLabelPlacement?: "middle" | "tick";
|
|
1199
|
-
data?: readonly any[] | undefined;
|
|
1200
|
-
dataKey?: string | undefined;
|
|
1201
1257
|
id: import("../internals/index.mjs").AxisId;
|
|
1202
1258
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1259
|
+
data?: readonly any[] | undefined;
|
|
1260
|
+
dataKey?: string | undefined;
|
|
1261
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
1203
1262
|
position?: "left" | "right" | "none";
|
|
1204
1263
|
width: number;
|
|
1205
1264
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
1206
1265
|
colorMap?: import("../models/colorMapping.mjs").OrdinalColorConfig | import("../models/colorMapping.mjs").ContinuousColorConfig | import("../models/colorMapping.mjs").PiecewiseColorConfig;
|
|
1207
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
1208
|
-
min: import("
|
|
1209
|
-
max: import("
|
|
1266
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
1267
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1268
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1210
1269
|
}) | undefined;
|
|
1211
1270
|
hideTooltip?: boolean | undefined;
|
|
1212
1271
|
ignoreTooltip?: boolean | undefined;
|
|
@@ -1216,8 +1275,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1216
1275
|
categoryGapRatio: number;
|
|
1217
1276
|
barGapRatio: number;
|
|
1218
1277
|
groups?: import("../internals/index.mjs").AxisGroup[];
|
|
1219
|
-
colorScale?: import("
|
|
1278
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
1220
1279
|
triggerTooltip?: boolean;
|
|
1280
|
+
isFullCircle?: boolean;
|
|
1221
1281
|
} | {
|
|
1222
1282
|
axis?: "y";
|
|
1223
1283
|
className?: string;
|
|
@@ -1240,17 +1300,18 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1240
1300
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
1241
1301
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
1242
1302
|
tickLabelPlacement?: "middle" | "tick";
|
|
1243
|
-
data?: readonly any[] | undefined;
|
|
1244
|
-
dataKey?: string | undefined;
|
|
1245
1303
|
id: import("../internals/index.mjs").AxisId;
|
|
1246
1304
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1305
|
+
data?: readonly any[] | undefined;
|
|
1306
|
+
dataKey?: string | undefined;
|
|
1307
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
1247
1308
|
position?: "left" | "right" | "none";
|
|
1248
1309
|
width: number;
|
|
1249
1310
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
1250
1311
|
colorMap?: import("../models/colorMapping.mjs").OrdinalColorConfig | import("../models/colorMapping.mjs").ContinuousColorConfig | import("../models/colorMapping.mjs").PiecewiseColorConfig;
|
|
1251
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
1252
|
-
min: import("
|
|
1253
|
-
max: import("
|
|
1312
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
1313
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1314
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1254
1315
|
}) | undefined;
|
|
1255
1316
|
hideTooltip?: boolean | undefined;
|
|
1256
1317
|
ignoreTooltip?: boolean | undefined;
|
|
@@ -1260,8 +1321,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1260
1321
|
categoryGapRatio: number;
|
|
1261
1322
|
barGapRatio: number;
|
|
1262
1323
|
groups?: import("../internals/index.mjs").AxisGroup[];
|
|
1263
|
-
colorScale?: import("
|
|
1324
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<string | number | Date, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<number, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
1264
1325
|
triggerTooltip?: boolean;
|
|
1326
|
+
isFullCircle?: boolean;
|
|
1265
1327
|
} | {
|
|
1266
1328
|
axis?: "y";
|
|
1267
1329
|
className?: string;
|
|
@@ -1284,17 +1346,18 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1284
1346
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
1285
1347
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
1286
1348
|
tickLabelPlacement?: "middle" | "tick";
|
|
1287
|
-
data?: readonly any[] | undefined;
|
|
1288
|
-
dataKey?: string | undefined;
|
|
1289
1349
|
id: import("../internals/index.mjs").AxisId;
|
|
1290
1350
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1351
|
+
data?: readonly any[] | undefined;
|
|
1352
|
+
dataKey?: string | undefined;
|
|
1353
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
1291
1354
|
position?: "left" | "right" | "none";
|
|
1292
1355
|
width: number;
|
|
1293
1356
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
1294
1357
|
colorMap?: import("../models/colorMapping.mjs").OrdinalColorConfig | import("../models/colorMapping.mjs").ContinuousColorConfig | import("../models/colorMapping.mjs").PiecewiseColorConfig;
|
|
1295
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
1296
|
-
min: import("
|
|
1297
|
-
max: import("
|
|
1358
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
1359
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1360
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1298
1361
|
}) | undefined;
|
|
1299
1362
|
hideTooltip?: boolean | undefined;
|
|
1300
1363
|
ignoreTooltip?: boolean | undefined;
|
|
@@ -1304,8 +1367,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1304
1367
|
categoryGapRatio: number;
|
|
1305
1368
|
barGapRatio: number;
|
|
1306
1369
|
groups?: import("../internals/index.mjs").AxisGroup[];
|
|
1307
|
-
colorScale?: import("
|
|
1370
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<string | number | Date, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<number, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
1308
1371
|
triggerTooltip?: boolean;
|
|
1372
|
+
isFullCircle?: boolean;
|
|
1309
1373
|
} | {
|
|
1310
1374
|
axis?: "y";
|
|
1311
1375
|
className?: string;
|
|
@@ -1328,17 +1392,18 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1328
1392
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
1329
1393
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
1330
1394
|
tickLabelPlacement?: "middle" | "tick";
|
|
1331
|
-
data?: readonly any[] | undefined;
|
|
1332
|
-
dataKey?: string | undefined;
|
|
1333
1395
|
id: import("../internals/index.mjs").AxisId;
|
|
1334
1396
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1397
|
+
data?: readonly any[] | undefined;
|
|
1398
|
+
dataKey?: string | undefined;
|
|
1399
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
1335
1400
|
position?: "left" | "right" | "none";
|
|
1336
1401
|
width: number;
|
|
1337
1402
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
1338
1403
|
colorMap?: import("../models/colorMapping.mjs").OrdinalColorConfig | import("../models/colorMapping.mjs").ContinuousColorConfig | import("../models/colorMapping.mjs").PiecewiseColorConfig;
|
|
1339
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
1340
|
-
min: import("
|
|
1341
|
-
max: import("
|
|
1404
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
1405
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1406
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1342
1407
|
}) | undefined;
|
|
1343
1408
|
hideTooltip?: boolean | undefined;
|
|
1344
1409
|
ignoreTooltip?: boolean | undefined;
|
|
@@ -1348,8 +1413,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1348
1413
|
categoryGapRatio: number;
|
|
1349
1414
|
barGapRatio: number;
|
|
1350
1415
|
groups?: import("../internals/index.mjs").AxisGroup[];
|
|
1351
|
-
colorScale?: import("
|
|
1416
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
1352
1417
|
triggerTooltip?: boolean;
|
|
1418
|
+
isFullCircle?: boolean;
|
|
1353
1419
|
} | {
|
|
1354
1420
|
axis?: "y";
|
|
1355
1421
|
className?: string;
|
|
@@ -1372,17 +1438,18 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1372
1438
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
1373
1439
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
1374
1440
|
tickLabelPlacement?: "middle" | "tick";
|
|
1375
|
-
data?: readonly any[] | undefined;
|
|
1376
|
-
dataKey?: string | undefined;
|
|
1377
1441
|
id: import("../internals/index.mjs").AxisId;
|
|
1378
1442
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1443
|
+
data?: readonly any[] | undefined;
|
|
1444
|
+
dataKey?: string | undefined;
|
|
1445
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
1379
1446
|
position?: "left" | "right" | "none";
|
|
1380
1447
|
width: number;
|
|
1381
1448
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
1382
1449
|
colorMap?: import("../models/colorMapping.mjs").OrdinalColorConfig | import("../models/colorMapping.mjs").ContinuousColorConfig | import("../models/colorMapping.mjs").PiecewiseColorConfig;
|
|
1383
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
1384
|
-
min: import("
|
|
1385
|
-
max: import("
|
|
1450
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
1451
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1452
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1386
1453
|
}) | undefined;
|
|
1387
1454
|
hideTooltip?: boolean | undefined;
|
|
1388
1455
|
ignoreTooltip?: boolean | undefined;
|
|
@@ -1392,8 +1459,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1392
1459
|
categoryGapRatio: number;
|
|
1393
1460
|
barGapRatio: number;
|
|
1394
1461
|
groups?: import("../internals/index.mjs").AxisGroup[];
|
|
1395
|
-
colorScale?: import("
|
|
1462
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
1396
1463
|
triggerTooltip?: boolean;
|
|
1464
|
+
isFullCircle?: boolean;
|
|
1397
1465
|
} | {
|
|
1398
1466
|
axis?: "y";
|
|
1399
1467
|
className?: string;
|
|
@@ -1416,17 +1484,18 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1416
1484
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
1417
1485
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
1418
1486
|
tickLabelPlacement?: "middle" | "tick";
|
|
1419
|
-
data?: readonly any[] | undefined;
|
|
1420
|
-
dataKey?: string | undefined;
|
|
1421
1487
|
id: import("../internals/index.mjs").AxisId;
|
|
1422
1488
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1489
|
+
data?: readonly any[] | undefined;
|
|
1490
|
+
dataKey?: string | undefined;
|
|
1491
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
1423
1492
|
position?: "left" | "right" | "none";
|
|
1424
1493
|
width: number;
|
|
1425
1494
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
1426
1495
|
colorMap?: import("../models/colorMapping.mjs").OrdinalColorConfig | import("../models/colorMapping.mjs").ContinuousColorConfig | import("../models/colorMapping.mjs").PiecewiseColorConfig;
|
|
1427
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
1428
|
-
min: import("
|
|
1429
|
-
max: import("
|
|
1496
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
1497
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1498
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1430
1499
|
}) | undefined;
|
|
1431
1500
|
hideTooltip?: boolean | undefined;
|
|
1432
1501
|
ignoreTooltip?: boolean | undefined;
|
|
@@ -1436,8 +1505,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1436
1505
|
categoryGapRatio: number;
|
|
1437
1506
|
barGapRatio: number;
|
|
1438
1507
|
groups?: import("../internals/index.mjs").AxisGroup[];
|
|
1439
|
-
colorScale?: import("
|
|
1508
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
1440
1509
|
triggerTooltip?: boolean;
|
|
1510
|
+
isFullCircle?: boolean;
|
|
1441
1511
|
} | {
|
|
1442
1512
|
axis?: "y";
|
|
1443
1513
|
className?: string;
|
|
@@ -1460,17 +1530,18 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1460
1530
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
1461
1531
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
1462
1532
|
tickLabelPlacement?: "middle" | "tick";
|
|
1463
|
-
data?: readonly any[] | undefined;
|
|
1464
|
-
dataKey?: string | undefined;
|
|
1465
1533
|
id: import("../internals/index.mjs").AxisId;
|
|
1466
1534
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1535
|
+
data?: readonly any[] | undefined;
|
|
1536
|
+
dataKey?: string | undefined;
|
|
1537
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
1467
1538
|
position?: "left" | "right" | "none";
|
|
1468
1539
|
width: number;
|
|
1469
1540
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
1470
1541
|
colorMap?: import("../models/colorMapping.mjs").OrdinalColorConfig | import("../models/colorMapping.mjs").ContinuousColorConfig | import("../models/colorMapping.mjs").PiecewiseColorConfig;
|
|
1471
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
1472
|
-
min: import("
|
|
1473
|
-
max: import("
|
|
1542
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
1543
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1544
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1474
1545
|
}) | undefined;
|
|
1475
1546
|
hideTooltip?: boolean | undefined;
|
|
1476
1547
|
ignoreTooltip?: boolean | undefined;
|
|
@@ -1480,8 +1551,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1480
1551
|
categoryGapRatio: number;
|
|
1481
1552
|
barGapRatio: number;
|
|
1482
1553
|
groups?: import("../internals/index.mjs").AxisGroup[];
|
|
1483
|
-
colorScale?: import("
|
|
1554
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
1484
1555
|
triggerTooltip?: boolean;
|
|
1556
|
+
isFullCircle?: boolean;
|
|
1485
1557
|
} | {
|
|
1486
1558
|
axis?: "y";
|
|
1487
1559
|
className?: string;
|
|
@@ -1504,17 +1576,18 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1504
1576
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
1505
1577
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
1506
1578
|
tickLabelPlacement?: "middle" | "tick";
|
|
1507
|
-
data?: readonly any[] | undefined;
|
|
1508
|
-
dataKey?: string | undefined;
|
|
1509
1579
|
id: import("../internals/index.mjs").AxisId;
|
|
1510
1580
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1581
|
+
data?: readonly any[] | undefined;
|
|
1582
|
+
dataKey?: string | undefined;
|
|
1583
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
1511
1584
|
position?: "left" | "right" | "none";
|
|
1512
1585
|
width: number;
|
|
1513
1586
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
1514
1587
|
colorMap?: import("../models/colorMapping.mjs").OrdinalColorConfig | import("../models/colorMapping.mjs").ContinuousColorConfig | import("../models/colorMapping.mjs").PiecewiseColorConfig;
|
|
1515
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
1516
|
-
min: import("
|
|
1517
|
-
max: import("
|
|
1588
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
1589
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1590
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1518
1591
|
}) | undefined;
|
|
1519
1592
|
hideTooltip?: boolean | undefined;
|
|
1520
1593
|
ignoreTooltip?: boolean | undefined;
|
|
@@ -1522,8 +1595,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1522
1595
|
scaleType: "point";
|
|
1523
1596
|
ordinalTimeTicks?: import("../index.mjs").OrdinalTimeTicks;
|
|
1524
1597
|
groups?: import("../internals/index.mjs").AxisGroup[];
|
|
1525
|
-
colorScale?: import("
|
|
1598
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
1526
1599
|
triggerTooltip?: boolean;
|
|
1600
|
+
isFullCircle?: boolean;
|
|
1527
1601
|
} | {
|
|
1528
1602
|
axis?: "y";
|
|
1529
1603
|
className?: string;
|
|
@@ -1546,17 +1620,18 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1546
1620
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
1547
1621
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
1548
1622
|
tickLabelPlacement?: "middle" | "tick";
|
|
1549
|
-
data?: readonly any[] | undefined;
|
|
1550
|
-
dataKey?: string | undefined;
|
|
1551
1623
|
id: import("../internals/index.mjs").AxisId;
|
|
1552
1624
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1625
|
+
data?: readonly any[] | undefined;
|
|
1626
|
+
dataKey?: string | undefined;
|
|
1627
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
1553
1628
|
position?: "left" | "right" | "none";
|
|
1554
1629
|
width: number;
|
|
1555
1630
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
1556
1631
|
colorMap?: import("../models/colorMapping.mjs").OrdinalColorConfig | import("../models/colorMapping.mjs").ContinuousColorConfig | import("../models/colorMapping.mjs").PiecewiseColorConfig;
|
|
1557
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
1558
|
-
min: import("
|
|
1559
|
-
max: import("
|
|
1632
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
1633
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1634
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1560
1635
|
}) | undefined;
|
|
1561
1636
|
hideTooltip?: boolean | undefined;
|
|
1562
1637
|
ignoreTooltip?: boolean | undefined;
|
|
@@ -1564,8 +1639,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1564
1639
|
scaleType: "point";
|
|
1565
1640
|
ordinalTimeTicks?: import("../index.mjs").OrdinalTimeTicks;
|
|
1566
1641
|
groups?: import("../internals/index.mjs").AxisGroup[];
|
|
1567
|
-
colorScale?: import("
|
|
1642
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
1568
1643
|
triggerTooltip?: boolean;
|
|
1644
|
+
isFullCircle?: boolean;
|
|
1569
1645
|
} | {
|
|
1570
1646
|
axis?: "y";
|
|
1571
1647
|
className?: string;
|
|
@@ -1588,17 +1664,18 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1588
1664
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
1589
1665
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
1590
1666
|
tickLabelPlacement?: "middle" | "tick";
|
|
1591
|
-
data?: readonly any[] | undefined;
|
|
1592
|
-
dataKey?: string | undefined;
|
|
1593
1667
|
id: import("../internals/index.mjs").AxisId;
|
|
1594
1668
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1669
|
+
data?: readonly any[] | undefined;
|
|
1670
|
+
dataKey?: string | undefined;
|
|
1671
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
1595
1672
|
position?: "left" | "right" | "none";
|
|
1596
1673
|
width: number;
|
|
1597
1674
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
1598
1675
|
colorMap?: import("../models/colorMapping.mjs").OrdinalColorConfig | import("../models/colorMapping.mjs").ContinuousColorConfig | import("../models/colorMapping.mjs").PiecewiseColorConfig;
|
|
1599
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
1600
|
-
min: import("
|
|
1601
|
-
max: import("
|
|
1676
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
1677
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1678
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1602
1679
|
}) | undefined;
|
|
1603
1680
|
hideTooltip?: boolean | undefined;
|
|
1604
1681
|
ignoreTooltip?: boolean | undefined;
|
|
@@ -1606,8 +1683,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1606
1683
|
scaleType: "point";
|
|
1607
1684
|
ordinalTimeTicks?: import("../index.mjs").OrdinalTimeTicks;
|
|
1608
1685
|
groups?: import("../internals/index.mjs").AxisGroup[];
|
|
1609
|
-
colorScale?: import("
|
|
1686
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
1610
1687
|
triggerTooltip?: boolean;
|
|
1688
|
+
isFullCircle?: boolean;
|
|
1611
1689
|
} | {
|
|
1612
1690
|
axis?: "y";
|
|
1613
1691
|
className?: string;
|
|
@@ -1630,17 +1708,18 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1630
1708
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
1631
1709
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
1632
1710
|
tickLabelPlacement?: "middle" | "tick";
|
|
1633
|
-
data?: readonly any[] | undefined;
|
|
1634
|
-
dataKey?: string | undefined;
|
|
1635
1711
|
id: import("../internals/index.mjs").AxisId;
|
|
1636
1712
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1713
|
+
data?: readonly any[] | undefined;
|
|
1714
|
+
dataKey?: string | undefined;
|
|
1715
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
1637
1716
|
position?: "left" | "right" | "none";
|
|
1638
1717
|
width: number;
|
|
1639
1718
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
1640
1719
|
colorMap?: import("../models/colorMapping.mjs").OrdinalColorConfig | import("../models/colorMapping.mjs").ContinuousColorConfig | import("../models/colorMapping.mjs").PiecewiseColorConfig;
|
|
1641
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
1642
|
-
min: import("
|
|
1643
|
-
max: import("
|
|
1720
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
1721
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1722
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1644
1723
|
}) | undefined;
|
|
1645
1724
|
hideTooltip?: boolean | undefined;
|
|
1646
1725
|
ignoreTooltip?: boolean | undefined;
|
|
@@ -1648,8 +1727,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1648
1727
|
scaleType: "point";
|
|
1649
1728
|
ordinalTimeTicks?: import("../index.mjs").OrdinalTimeTicks;
|
|
1650
1729
|
groups?: import("../internals/index.mjs").AxisGroup[];
|
|
1651
|
-
colorScale?: import("
|
|
1730
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<string | number | Date, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<number, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
1652
1731
|
triggerTooltip?: boolean;
|
|
1732
|
+
isFullCircle?: boolean;
|
|
1653
1733
|
} | {
|
|
1654
1734
|
axis?: "y";
|
|
1655
1735
|
className?: string;
|
|
@@ -1672,17 +1752,18 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1672
1752
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
1673
1753
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
1674
1754
|
tickLabelPlacement?: "middle" | "tick";
|
|
1675
|
-
data?: readonly any[] | undefined;
|
|
1676
|
-
dataKey?: string | undefined;
|
|
1677
1755
|
id: import("../internals/index.mjs").AxisId;
|
|
1678
1756
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1757
|
+
data?: readonly any[] | undefined;
|
|
1758
|
+
dataKey?: string | undefined;
|
|
1759
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
1679
1760
|
position?: "left" | "right" | "none";
|
|
1680
1761
|
width: number;
|
|
1681
1762
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
1682
1763
|
colorMap?: import("../models/colorMapping.mjs").OrdinalColorConfig | import("../models/colorMapping.mjs").ContinuousColorConfig | import("../models/colorMapping.mjs").PiecewiseColorConfig;
|
|
1683
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
1684
|
-
min: import("
|
|
1685
|
-
max: import("
|
|
1764
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
1765
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1766
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1686
1767
|
}) | undefined;
|
|
1687
1768
|
hideTooltip?: boolean | undefined;
|
|
1688
1769
|
ignoreTooltip?: boolean | undefined;
|
|
@@ -1690,8 +1771,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1690
1771
|
scaleType: "point";
|
|
1691
1772
|
ordinalTimeTicks?: import("../index.mjs").OrdinalTimeTicks;
|
|
1692
1773
|
groups?: import("../internals/index.mjs").AxisGroup[];
|
|
1693
|
-
colorScale?: import("
|
|
1774
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<string | number | Date, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<number, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
1694
1775
|
triggerTooltip?: boolean;
|
|
1776
|
+
isFullCircle?: boolean;
|
|
1695
1777
|
} | {
|
|
1696
1778
|
axis?: "y";
|
|
1697
1779
|
className?: string;
|
|
@@ -1714,17 +1796,18 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1714
1796
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
1715
1797
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
1716
1798
|
tickLabelPlacement?: "middle" | "tick";
|
|
1717
|
-
data?: readonly any[] | undefined;
|
|
1718
|
-
dataKey?: string | undefined;
|
|
1719
1799
|
id: import("../internals/index.mjs").AxisId;
|
|
1720
1800
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1801
|
+
data?: readonly any[] | undefined;
|
|
1802
|
+
dataKey?: string | undefined;
|
|
1803
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
1721
1804
|
position?: "left" | "right" | "none";
|
|
1722
1805
|
width: number;
|
|
1723
1806
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
1724
1807
|
colorMap?: import("../models/colorMapping.mjs").OrdinalColorConfig | import("../models/colorMapping.mjs").ContinuousColorConfig | import("../models/colorMapping.mjs").PiecewiseColorConfig;
|
|
1725
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
1726
|
-
min: import("
|
|
1727
|
-
max: import("
|
|
1808
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
1809
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1810
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1728
1811
|
}) | undefined;
|
|
1729
1812
|
hideTooltip?: boolean | undefined;
|
|
1730
1813
|
ignoreTooltip?: boolean | undefined;
|
|
@@ -1732,8 +1815,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1732
1815
|
scaleType: "point";
|
|
1733
1816
|
ordinalTimeTicks?: import("../index.mjs").OrdinalTimeTicks;
|
|
1734
1817
|
groups?: import("../internals/index.mjs").AxisGroup[];
|
|
1735
|
-
colorScale?: import("
|
|
1818
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
1736
1819
|
triggerTooltip?: boolean;
|
|
1820
|
+
isFullCircle?: boolean;
|
|
1737
1821
|
} | {
|
|
1738
1822
|
axis?: "y";
|
|
1739
1823
|
className?: string;
|
|
@@ -1756,17 +1840,18 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1756
1840
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
1757
1841
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
1758
1842
|
tickLabelPlacement?: "middle" | "tick";
|
|
1759
|
-
data?: readonly any[] | undefined;
|
|
1760
|
-
dataKey?: string | undefined;
|
|
1761
1843
|
id: import("../internals/index.mjs").AxisId;
|
|
1762
1844
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1845
|
+
data?: readonly any[] | undefined;
|
|
1846
|
+
dataKey?: string | undefined;
|
|
1847
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
1763
1848
|
position?: "left" | "right" | "none";
|
|
1764
1849
|
width: number;
|
|
1765
1850
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
1766
1851
|
colorMap?: import("../models/colorMapping.mjs").OrdinalColorConfig | import("../models/colorMapping.mjs").ContinuousColorConfig | import("../models/colorMapping.mjs").PiecewiseColorConfig;
|
|
1767
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
1768
|
-
min: import("
|
|
1769
|
-
max: import("
|
|
1852
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
1853
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1854
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1770
1855
|
}) | undefined;
|
|
1771
1856
|
hideTooltip?: boolean | undefined;
|
|
1772
1857
|
ignoreTooltip?: boolean | undefined;
|
|
@@ -1774,8 +1859,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1774
1859
|
scaleType: "point";
|
|
1775
1860
|
ordinalTimeTicks?: import("../index.mjs").OrdinalTimeTicks;
|
|
1776
1861
|
groups?: import("../internals/index.mjs").AxisGroup[];
|
|
1777
|
-
colorScale?: import("
|
|
1862
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
1778
1863
|
triggerTooltip?: boolean;
|
|
1864
|
+
isFullCircle?: boolean;
|
|
1779
1865
|
} | {
|
|
1780
1866
|
axis?: "y";
|
|
1781
1867
|
className?: string;
|
|
@@ -1798,17 +1884,18 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1798
1884
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
1799
1885
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
1800
1886
|
tickLabelPlacement?: "middle" | "tick";
|
|
1801
|
-
data?: readonly any[] | undefined;
|
|
1802
|
-
dataKey?: string | undefined;
|
|
1803
1887
|
id: import("../internals/index.mjs").AxisId;
|
|
1804
1888
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1889
|
+
data?: readonly any[] | undefined;
|
|
1890
|
+
dataKey?: string | undefined;
|
|
1891
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
1805
1892
|
position?: "left" | "right" | "none";
|
|
1806
1893
|
width: number;
|
|
1807
1894
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
1808
1895
|
colorMap?: import("../models/colorMapping.mjs").OrdinalColorConfig | import("../models/colorMapping.mjs").ContinuousColorConfig | import("../models/colorMapping.mjs").PiecewiseColorConfig;
|
|
1809
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
1810
|
-
min: import("
|
|
1811
|
-
max: import("
|
|
1896
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
1897
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1898
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1812
1899
|
}) | undefined;
|
|
1813
1900
|
hideTooltip?: boolean | undefined;
|
|
1814
1901
|
ignoreTooltip?: boolean | undefined;
|
|
@@ -1816,8 +1903,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1816
1903
|
scaleType: "point";
|
|
1817
1904
|
ordinalTimeTicks?: import("../index.mjs").OrdinalTimeTicks;
|
|
1818
1905
|
groups?: import("../internals/index.mjs").AxisGroup[];
|
|
1819
|
-
colorScale?: import("
|
|
1906
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
1820
1907
|
triggerTooltip?: boolean;
|
|
1908
|
+
isFullCircle?: boolean;
|
|
1821
1909
|
} | {
|
|
1822
1910
|
axis?: "y";
|
|
1823
1911
|
className?: string;
|
|
@@ -1840,17 +1928,18 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1840
1928
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
1841
1929
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
1842
1930
|
tickLabelPlacement?: "middle" | "tick";
|
|
1843
|
-
data?: readonly any[] | undefined;
|
|
1844
|
-
dataKey?: string | undefined;
|
|
1845
1931
|
id: import("../internals/index.mjs").AxisId;
|
|
1846
1932
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1933
|
+
data?: readonly any[] | undefined;
|
|
1934
|
+
dataKey?: string | undefined;
|
|
1935
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
1847
1936
|
position?: "left" | "right" | "none";
|
|
1848
1937
|
width: number;
|
|
1849
1938
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
1850
1939
|
colorMap?: import("../models/colorMapping.mjs").OrdinalColorConfig | import("../models/colorMapping.mjs").ContinuousColorConfig | import("../models/colorMapping.mjs").PiecewiseColorConfig;
|
|
1851
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
1852
|
-
min: import("
|
|
1853
|
-
max: import("
|
|
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;
|
|
1854
1943
|
}) | undefined;
|
|
1855
1944
|
hideTooltip?: boolean | undefined;
|
|
1856
1945
|
ignoreTooltip?: boolean | undefined;
|
|
@@ -1858,8 +1947,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1858
1947
|
scaleType: "point";
|
|
1859
1948
|
ordinalTimeTicks?: import("../index.mjs").OrdinalTimeTicks;
|
|
1860
1949
|
groups?: import("../internals/index.mjs").AxisGroup[];
|
|
1861
|
-
colorScale?: import("
|
|
1950
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
1862
1951
|
triggerTooltip?: boolean;
|
|
1952
|
+
isFullCircle?: boolean;
|
|
1863
1953
|
} | {
|
|
1864
1954
|
axis?: "y";
|
|
1865
1955
|
className?: string;
|
|
@@ -1882,25 +1972,27 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1882
1972
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
1883
1973
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
1884
1974
|
tickLabelPlacement?: "middle" | "tick";
|
|
1885
|
-
data?: readonly any[] | undefined;
|
|
1886
|
-
dataKey?: string | undefined;
|
|
1887
1975
|
id: import("../internals/index.mjs").AxisId;
|
|
1888
1976
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1977
|
+
data?: readonly any[] | undefined;
|
|
1978
|
+
dataKey?: string | undefined;
|
|
1979
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
1889
1980
|
position?: "left" | "right" | "none";
|
|
1890
1981
|
width: number;
|
|
1891
1982
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
1892
1983
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
1893
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
1894
|
-
min: import("
|
|
1895
|
-
max: import("
|
|
1984
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
1985
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1986
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1896
1987
|
}) | undefined;
|
|
1897
1988
|
hideTooltip?: boolean | undefined;
|
|
1898
1989
|
ignoreTooltip?: boolean | undefined;
|
|
1899
1990
|
offset: number;
|
|
1900
1991
|
scaleType: "symlog";
|
|
1901
1992
|
constant?: number;
|
|
1902
|
-
colorScale?: import("
|
|
1993
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
1903
1994
|
triggerTooltip?: boolean;
|
|
1995
|
+
isFullCircle?: boolean;
|
|
1904
1996
|
} | {
|
|
1905
1997
|
axis?: "y";
|
|
1906
1998
|
className?: string;
|
|
@@ -1923,25 +2015,27 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1923
2015
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
1924
2016
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
1925
2017
|
tickLabelPlacement?: "middle" | "tick";
|
|
1926
|
-
data?: readonly any[] | undefined;
|
|
1927
|
-
dataKey?: string | undefined;
|
|
1928
2018
|
id: import("../internals/index.mjs").AxisId;
|
|
1929
2019
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2020
|
+
data?: readonly any[] | undefined;
|
|
2021
|
+
dataKey?: string | undefined;
|
|
2022
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
1930
2023
|
position?: "left" | "right" | "none";
|
|
1931
2024
|
width: number;
|
|
1932
2025
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
1933
2026
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
1934
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
1935
|
-
min: import("
|
|
1936
|
-
max: import("
|
|
2027
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
2028
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2029
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1937
2030
|
}) | undefined;
|
|
1938
2031
|
hideTooltip?: boolean | undefined;
|
|
1939
2032
|
ignoreTooltip?: boolean | undefined;
|
|
1940
2033
|
offset: number;
|
|
1941
2034
|
scaleType: "symlog";
|
|
1942
2035
|
constant?: number;
|
|
1943
|
-
colorScale?: import("
|
|
2036
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
1944
2037
|
triggerTooltip?: boolean;
|
|
2038
|
+
isFullCircle?: boolean;
|
|
1945
2039
|
} | {
|
|
1946
2040
|
axis?: "y";
|
|
1947
2041
|
className?: string;
|
|
@@ -1964,25 +2058,27 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1964
2058
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
1965
2059
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
1966
2060
|
tickLabelPlacement?: "middle" | "tick";
|
|
1967
|
-
data?: readonly any[] | undefined;
|
|
1968
|
-
dataKey?: string | undefined;
|
|
1969
2061
|
id: import("../internals/index.mjs").AxisId;
|
|
1970
2062
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2063
|
+
data?: readonly any[] | undefined;
|
|
2064
|
+
dataKey?: string | undefined;
|
|
2065
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
1971
2066
|
position?: "left" | "right" | "none";
|
|
1972
2067
|
width: number;
|
|
1973
2068
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
1974
2069
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
1975
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
1976
|
-
min: import("
|
|
1977
|
-
max: import("
|
|
2070
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
2071
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2072
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
1978
2073
|
}) | undefined;
|
|
1979
2074
|
hideTooltip?: boolean | undefined;
|
|
1980
2075
|
ignoreTooltip?: boolean | undefined;
|
|
1981
2076
|
offset: number;
|
|
1982
2077
|
scaleType: "symlog";
|
|
1983
2078
|
constant?: number;
|
|
1984
|
-
colorScale?: import("
|
|
2079
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
1985
2080
|
triggerTooltip?: boolean;
|
|
2081
|
+
isFullCircle?: boolean;
|
|
1986
2082
|
} | {
|
|
1987
2083
|
axis?: "y";
|
|
1988
2084
|
className?: string;
|
|
@@ -2005,25 +2101,27 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2005
2101
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
2006
2102
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
2007
2103
|
tickLabelPlacement?: "middle" | "tick";
|
|
2008
|
-
data?: readonly any[] | undefined;
|
|
2009
|
-
dataKey?: string | undefined;
|
|
2010
2104
|
id: import("../internals/index.mjs").AxisId;
|
|
2011
2105
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2106
|
+
data?: readonly any[] | undefined;
|
|
2107
|
+
dataKey?: string | undefined;
|
|
2108
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
2012
2109
|
position?: "left" | "right" | "none";
|
|
2013
2110
|
width: number;
|
|
2014
2111
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
2015
2112
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
2016
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
2017
|
-
min: import("
|
|
2018
|
-
max: import("
|
|
2113
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
2114
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2115
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2019
2116
|
}) | undefined;
|
|
2020
2117
|
hideTooltip?: boolean | undefined;
|
|
2021
2118
|
ignoreTooltip?: boolean | undefined;
|
|
2022
2119
|
offset: number;
|
|
2023
2120
|
scaleType: "symlog";
|
|
2024
2121
|
constant?: number;
|
|
2025
|
-
colorScale?: import("
|
|
2122
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<string | number | Date, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<number, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
2026
2123
|
triggerTooltip?: boolean;
|
|
2124
|
+
isFullCircle?: boolean;
|
|
2027
2125
|
} | {
|
|
2028
2126
|
axis?: "y";
|
|
2029
2127
|
className?: string;
|
|
@@ -2046,25 +2144,27 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2046
2144
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
2047
2145
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
2048
2146
|
tickLabelPlacement?: "middle" | "tick";
|
|
2049
|
-
data?: readonly any[] | undefined;
|
|
2050
|
-
dataKey?: string | undefined;
|
|
2051
2147
|
id: import("../internals/index.mjs").AxisId;
|
|
2052
2148
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2149
|
+
data?: readonly any[] | undefined;
|
|
2150
|
+
dataKey?: string | undefined;
|
|
2151
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
2053
2152
|
position?: "left" | "right" | "none";
|
|
2054
2153
|
width: number;
|
|
2055
2154
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
2056
2155
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
2057
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
2058
|
-
min: import("
|
|
2059
|
-
max: import("
|
|
2156
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
2157
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2158
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2060
2159
|
}) | undefined;
|
|
2061
2160
|
hideTooltip?: boolean | undefined;
|
|
2062
2161
|
ignoreTooltip?: boolean | undefined;
|
|
2063
2162
|
offset: number;
|
|
2064
2163
|
scaleType: "symlog";
|
|
2065
2164
|
constant?: number;
|
|
2066
|
-
colorScale?: import("
|
|
2165
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<string | number | Date, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<number, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
2067
2166
|
triggerTooltip?: boolean;
|
|
2167
|
+
isFullCircle?: boolean;
|
|
2068
2168
|
} | {
|
|
2069
2169
|
axis?: "y";
|
|
2070
2170
|
className?: string;
|
|
@@ -2087,25 +2187,27 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2087
2187
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
2088
2188
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
2089
2189
|
tickLabelPlacement?: "middle" | "tick";
|
|
2090
|
-
data?: readonly any[] | undefined;
|
|
2091
|
-
dataKey?: string | undefined;
|
|
2092
2190
|
id: import("../internals/index.mjs").AxisId;
|
|
2093
2191
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2192
|
+
data?: readonly any[] | undefined;
|
|
2193
|
+
dataKey?: string | undefined;
|
|
2194
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
2094
2195
|
position?: "left" | "right" | "none";
|
|
2095
2196
|
width: number;
|
|
2096
2197
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
2097
2198
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
2098
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
2099
|
-
min: import("
|
|
2100
|
-
max: import("
|
|
2199
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
2200
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2201
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2101
2202
|
}) | undefined;
|
|
2102
2203
|
hideTooltip?: boolean | undefined;
|
|
2103
2204
|
ignoreTooltip?: boolean | undefined;
|
|
2104
2205
|
offset: number;
|
|
2105
2206
|
scaleType: "symlog";
|
|
2106
2207
|
constant?: number;
|
|
2107
|
-
colorScale?: import("
|
|
2208
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
2108
2209
|
triggerTooltip?: boolean;
|
|
2210
|
+
isFullCircle?: boolean;
|
|
2109
2211
|
} | {
|
|
2110
2212
|
axis?: "y";
|
|
2111
2213
|
className?: string;
|
|
@@ -2128,25 +2230,27 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2128
2230
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
2129
2231
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
2130
2232
|
tickLabelPlacement?: "middle" | "tick";
|
|
2131
|
-
data?: readonly any[] | undefined;
|
|
2132
|
-
dataKey?: string | undefined;
|
|
2133
2233
|
id: import("../internals/index.mjs").AxisId;
|
|
2134
2234
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2235
|
+
data?: readonly any[] | undefined;
|
|
2236
|
+
dataKey?: string | undefined;
|
|
2237
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
2135
2238
|
position?: "left" | "right" | "none";
|
|
2136
2239
|
width: number;
|
|
2137
2240
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
2138
2241
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
2139
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
2140
|
-
min: import("
|
|
2141
|
-
max: import("
|
|
2242
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
2243
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2244
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2142
2245
|
}) | undefined;
|
|
2143
2246
|
hideTooltip?: boolean | undefined;
|
|
2144
2247
|
ignoreTooltip?: boolean | undefined;
|
|
2145
2248
|
offset: number;
|
|
2146
2249
|
scaleType: "symlog";
|
|
2147
2250
|
constant?: number;
|
|
2148
|
-
colorScale?: import("
|
|
2251
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
2149
2252
|
triggerTooltip?: boolean;
|
|
2253
|
+
isFullCircle?: boolean;
|
|
2150
2254
|
} | {
|
|
2151
2255
|
axis?: "y";
|
|
2152
2256
|
className?: string;
|
|
@@ -2169,25 +2273,27 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2169
2273
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
2170
2274
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
2171
2275
|
tickLabelPlacement?: "middle" | "tick";
|
|
2172
|
-
data?: readonly any[] | undefined;
|
|
2173
|
-
dataKey?: string | undefined;
|
|
2174
2276
|
id: import("../internals/index.mjs").AxisId;
|
|
2175
2277
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2278
|
+
data?: readonly any[] | undefined;
|
|
2279
|
+
dataKey?: string | undefined;
|
|
2280
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
2176
2281
|
position?: "left" | "right" | "none";
|
|
2177
2282
|
width: number;
|
|
2178
2283
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
2179
2284
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
2180
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
2181
|
-
min: import("
|
|
2182
|
-
max: import("
|
|
2285
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
2286
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2287
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2183
2288
|
}) | undefined;
|
|
2184
2289
|
hideTooltip?: boolean | undefined;
|
|
2185
2290
|
ignoreTooltip?: boolean | undefined;
|
|
2186
2291
|
offset: number;
|
|
2187
2292
|
scaleType: "symlog";
|
|
2188
2293
|
constant?: number;
|
|
2189
|
-
colorScale?: import("
|
|
2294
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
2190
2295
|
triggerTooltip?: boolean;
|
|
2296
|
+
isFullCircle?: boolean;
|
|
2191
2297
|
} | {
|
|
2192
2298
|
axis?: "y";
|
|
2193
2299
|
className?: string;
|
|
@@ -2210,25 +2316,27 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2210
2316
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
2211
2317
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
2212
2318
|
tickLabelPlacement?: "middle" | "tick";
|
|
2213
|
-
data?: readonly any[] | undefined;
|
|
2214
|
-
dataKey?: string | undefined;
|
|
2215
2319
|
id: import("../internals/index.mjs").AxisId;
|
|
2216
2320
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2321
|
+
data?: readonly any[] | undefined;
|
|
2322
|
+
dataKey?: string | undefined;
|
|
2323
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
2217
2324
|
position?: "left" | "right" | "none";
|
|
2218
2325
|
width: number;
|
|
2219
2326
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
2220
2327
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
2221
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
2222
|
-
min: import("
|
|
2223
|
-
max: import("
|
|
2328
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
2329
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2330
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2224
2331
|
}) | undefined;
|
|
2225
2332
|
hideTooltip?: boolean | undefined;
|
|
2226
2333
|
ignoreTooltip?: boolean | undefined;
|
|
2227
2334
|
offset: number;
|
|
2228
2335
|
scaleType: "symlog";
|
|
2229
2336
|
constant?: number;
|
|
2230
|
-
colorScale?: import("
|
|
2337
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
2231
2338
|
triggerTooltip?: boolean;
|
|
2339
|
+
isFullCircle?: boolean;
|
|
2232
2340
|
} | {
|
|
2233
2341
|
axis?: "y";
|
|
2234
2342
|
className?: string;
|
|
@@ -2251,24 +2359,26 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2251
2359
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
2252
2360
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
2253
2361
|
tickLabelPlacement?: "middle" | "tick";
|
|
2254
|
-
data?: readonly any[] | undefined;
|
|
2255
|
-
dataKey?: string | undefined;
|
|
2256
2362
|
id: import("../internals/index.mjs").AxisId;
|
|
2257
2363
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2364
|
+
data?: readonly any[] | undefined;
|
|
2365
|
+
dataKey?: string | undefined;
|
|
2366
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
2258
2367
|
position?: "left" | "right" | "none";
|
|
2259
2368
|
width: number;
|
|
2260
2369
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
2261
2370
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
2262
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
2263
|
-
min: import("
|
|
2264
|
-
max: import("
|
|
2371
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
2372
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2373
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2265
2374
|
}) | undefined;
|
|
2266
2375
|
hideTooltip?: boolean | undefined;
|
|
2267
2376
|
ignoreTooltip?: boolean | undefined;
|
|
2268
2377
|
offset: number;
|
|
2269
2378
|
scaleType: "pow";
|
|
2270
|
-
colorScale?: import("
|
|
2379
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
2271
2380
|
triggerTooltip?: boolean;
|
|
2381
|
+
isFullCircle?: boolean;
|
|
2272
2382
|
} | {
|
|
2273
2383
|
axis?: "y";
|
|
2274
2384
|
className?: string;
|
|
@@ -2291,24 +2401,26 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2291
2401
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
2292
2402
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
2293
2403
|
tickLabelPlacement?: "middle" | "tick";
|
|
2294
|
-
data?: readonly any[] | undefined;
|
|
2295
|
-
dataKey?: string | undefined;
|
|
2296
2404
|
id: import("../internals/index.mjs").AxisId;
|
|
2297
2405
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2406
|
+
data?: readonly any[] | undefined;
|
|
2407
|
+
dataKey?: string | undefined;
|
|
2408
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
2298
2409
|
position?: "left" | "right" | "none";
|
|
2299
2410
|
width: number;
|
|
2300
2411
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
2301
2412
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
2302
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
2303
|
-
min: import("
|
|
2304
|
-
max: import("
|
|
2413
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
2414
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2415
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2305
2416
|
}) | undefined;
|
|
2306
2417
|
hideTooltip?: boolean | undefined;
|
|
2307
2418
|
ignoreTooltip?: boolean | undefined;
|
|
2308
2419
|
offset: number;
|
|
2309
2420
|
scaleType: "pow";
|
|
2310
|
-
colorScale?: import("
|
|
2421
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
2311
2422
|
triggerTooltip?: boolean;
|
|
2423
|
+
isFullCircle?: boolean;
|
|
2312
2424
|
} | {
|
|
2313
2425
|
axis?: "y";
|
|
2314
2426
|
className?: string;
|
|
@@ -2331,24 +2443,26 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2331
2443
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
2332
2444
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
2333
2445
|
tickLabelPlacement?: "middle" | "tick";
|
|
2334
|
-
data?: readonly any[] | undefined;
|
|
2335
|
-
dataKey?: string | undefined;
|
|
2336
2446
|
id: import("../internals/index.mjs").AxisId;
|
|
2337
2447
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2448
|
+
data?: readonly any[] | undefined;
|
|
2449
|
+
dataKey?: string | undefined;
|
|
2450
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
2338
2451
|
position?: "left" | "right" | "none";
|
|
2339
2452
|
width: number;
|
|
2340
2453
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
2341
2454
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
2342
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
2343
|
-
min: import("
|
|
2344
|
-
max: import("
|
|
2455
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
2456
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2457
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2345
2458
|
}) | undefined;
|
|
2346
2459
|
hideTooltip?: boolean | undefined;
|
|
2347
2460
|
ignoreTooltip?: boolean | undefined;
|
|
2348
2461
|
offset: number;
|
|
2349
2462
|
scaleType: "pow";
|
|
2350
|
-
colorScale?: import("
|
|
2463
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
2351
2464
|
triggerTooltip?: boolean;
|
|
2465
|
+
isFullCircle?: boolean;
|
|
2352
2466
|
} | {
|
|
2353
2467
|
axis?: "y";
|
|
2354
2468
|
className?: string;
|
|
@@ -2371,24 +2485,26 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2371
2485
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
2372
2486
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
2373
2487
|
tickLabelPlacement?: "middle" | "tick";
|
|
2374
|
-
data?: readonly any[] | undefined;
|
|
2375
|
-
dataKey?: string | undefined;
|
|
2376
2488
|
id: import("../internals/index.mjs").AxisId;
|
|
2377
2489
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2490
|
+
data?: readonly any[] | undefined;
|
|
2491
|
+
dataKey?: string | undefined;
|
|
2492
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
2378
2493
|
position?: "left" | "right" | "none";
|
|
2379
2494
|
width: number;
|
|
2380
2495
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
2381
2496
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
2382
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
2383
|
-
min: import("
|
|
2384
|
-
max: import("
|
|
2497
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
2498
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2499
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2385
2500
|
}) | undefined;
|
|
2386
2501
|
hideTooltip?: boolean | undefined;
|
|
2387
2502
|
ignoreTooltip?: boolean | undefined;
|
|
2388
2503
|
offset: number;
|
|
2389
2504
|
scaleType: "pow";
|
|
2390
|
-
colorScale?: import("
|
|
2505
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<string | number | Date, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<number, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
2391
2506
|
triggerTooltip?: boolean;
|
|
2507
|
+
isFullCircle?: boolean;
|
|
2392
2508
|
} | {
|
|
2393
2509
|
axis?: "y";
|
|
2394
2510
|
className?: string;
|
|
@@ -2411,24 +2527,26 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2411
2527
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
2412
2528
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
2413
2529
|
tickLabelPlacement?: "middle" | "tick";
|
|
2414
|
-
data?: readonly any[] | undefined;
|
|
2415
|
-
dataKey?: string | undefined;
|
|
2416
2530
|
id: import("../internals/index.mjs").AxisId;
|
|
2417
2531
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2532
|
+
data?: readonly any[] | undefined;
|
|
2533
|
+
dataKey?: string | undefined;
|
|
2534
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
2418
2535
|
position?: "left" | "right" | "none";
|
|
2419
2536
|
width: number;
|
|
2420
2537
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
2421
2538
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
2422
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
2423
|
-
min: import("
|
|
2424
|
-
max: import("
|
|
2539
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
2540
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2541
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2425
2542
|
}) | undefined;
|
|
2426
2543
|
hideTooltip?: boolean | undefined;
|
|
2427
2544
|
ignoreTooltip?: boolean | undefined;
|
|
2428
2545
|
offset: number;
|
|
2429
2546
|
scaleType: "pow";
|
|
2430
|
-
colorScale?: import("
|
|
2547
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<string | number | Date, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<number, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
2431
2548
|
triggerTooltip?: boolean;
|
|
2549
|
+
isFullCircle?: boolean;
|
|
2432
2550
|
} | {
|
|
2433
2551
|
axis?: "y";
|
|
2434
2552
|
className?: string;
|
|
@@ -2451,24 +2569,26 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2451
2569
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
2452
2570
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
2453
2571
|
tickLabelPlacement?: "middle" | "tick";
|
|
2454
|
-
data?: readonly any[] | undefined;
|
|
2455
|
-
dataKey?: string | undefined;
|
|
2456
2572
|
id: import("../internals/index.mjs").AxisId;
|
|
2457
2573
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2574
|
+
data?: readonly any[] | undefined;
|
|
2575
|
+
dataKey?: string | undefined;
|
|
2576
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
2458
2577
|
position?: "left" | "right" | "none";
|
|
2459
2578
|
width: number;
|
|
2460
2579
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
2461
2580
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
2462
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
2463
|
-
min: import("
|
|
2464
|
-
max: import("
|
|
2581
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
2582
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2583
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2465
2584
|
}) | undefined;
|
|
2466
2585
|
hideTooltip?: boolean | undefined;
|
|
2467
2586
|
ignoreTooltip?: boolean | undefined;
|
|
2468
2587
|
offset: number;
|
|
2469
2588
|
scaleType: "pow";
|
|
2470
|
-
colorScale?: import("
|
|
2589
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
2471
2590
|
triggerTooltip?: boolean;
|
|
2591
|
+
isFullCircle?: boolean;
|
|
2472
2592
|
} | {
|
|
2473
2593
|
axis?: "y";
|
|
2474
2594
|
className?: string;
|
|
@@ -2491,24 +2611,26 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2491
2611
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
2492
2612
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
2493
2613
|
tickLabelPlacement?: "middle" | "tick";
|
|
2494
|
-
data?: readonly any[] | undefined;
|
|
2495
|
-
dataKey?: string | undefined;
|
|
2496
2614
|
id: import("../internals/index.mjs").AxisId;
|
|
2497
2615
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2616
|
+
data?: readonly any[] | undefined;
|
|
2617
|
+
dataKey?: string | undefined;
|
|
2618
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
2498
2619
|
position?: "left" | "right" | "none";
|
|
2499
2620
|
width: number;
|
|
2500
2621
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
2501
2622
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
2502
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
2503
|
-
min: import("
|
|
2504
|
-
max: import("
|
|
2623
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
2624
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2625
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2505
2626
|
}) | undefined;
|
|
2506
2627
|
hideTooltip?: boolean | undefined;
|
|
2507
2628
|
ignoreTooltip?: boolean | undefined;
|
|
2508
2629
|
offset: number;
|
|
2509
2630
|
scaleType: "pow";
|
|
2510
|
-
colorScale?: import("
|
|
2631
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
2511
2632
|
triggerTooltip?: boolean;
|
|
2633
|
+
isFullCircle?: boolean;
|
|
2512
2634
|
} | {
|
|
2513
2635
|
axis?: "y";
|
|
2514
2636
|
className?: string;
|
|
@@ -2531,24 +2653,26 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2531
2653
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
2532
2654
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
2533
2655
|
tickLabelPlacement?: "middle" | "tick";
|
|
2534
|
-
data?: readonly any[] | undefined;
|
|
2535
|
-
dataKey?: string | undefined;
|
|
2536
2656
|
id: import("../internals/index.mjs").AxisId;
|
|
2537
2657
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2658
|
+
data?: readonly any[] | undefined;
|
|
2659
|
+
dataKey?: string | undefined;
|
|
2660
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
2538
2661
|
position?: "left" | "right" | "none";
|
|
2539
2662
|
width: number;
|
|
2540
2663
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
2541
2664
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
2542
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
2543
|
-
min: import("
|
|
2544
|
-
max: import("
|
|
2665
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
2666
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2667
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2545
2668
|
}) | undefined;
|
|
2546
2669
|
hideTooltip?: boolean | undefined;
|
|
2547
2670
|
ignoreTooltip?: boolean | undefined;
|
|
2548
2671
|
offset: number;
|
|
2549
2672
|
scaleType: "pow";
|
|
2550
|
-
colorScale?: import("
|
|
2673
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
2551
2674
|
triggerTooltip?: boolean;
|
|
2675
|
+
isFullCircle?: boolean;
|
|
2552
2676
|
} | {
|
|
2553
2677
|
axis?: "y";
|
|
2554
2678
|
className?: string;
|
|
@@ -2571,24 +2695,26 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2571
2695
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
2572
2696
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
2573
2697
|
tickLabelPlacement?: "middle" | "tick";
|
|
2574
|
-
data?: readonly any[] | undefined;
|
|
2575
|
-
dataKey?: string | undefined;
|
|
2576
2698
|
id: import("../internals/index.mjs").AxisId;
|
|
2577
2699
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2700
|
+
data?: readonly any[] | undefined;
|
|
2701
|
+
dataKey?: string | undefined;
|
|
2702
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
2578
2703
|
position?: "left" | "right" | "none";
|
|
2579
2704
|
width: number;
|
|
2580
2705
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
2581
2706
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
2582
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
2583
|
-
min: import("
|
|
2584
|
-
max: import("
|
|
2707
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
2708
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2709
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2585
2710
|
}) | undefined;
|
|
2586
2711
|
hideTooltip?: boolean | undefined;
|
|
2587
2712
|
ignoreTooltip?: boolean | undefined;
|
|
2588
2713
|
offset: number;
|
|
2589
2714
|
scaleType: "pow";
|
|
2590
|
-
colorScale?: import("
|
|
2715
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
2591
2716
|
triggerTooltip?: boolean;
|
|
2717
|
+
isFullCircle?: boolean;
|
|
2592
2718
|
} | {
|
|
2593
2719
|
axis?: "y";
|
|
2594
2720
|
className?: string;
|
|
@@ -2611,24 +2737,26 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2611
2737
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
2612
2738
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
2613
2739
|
tickLabelPlacement?: "middle" | "tick";
|
|
2614
|
-
data?: readonly any[] | undefined;
|
|
2615
|
-
dataKey?: string | undefined;
|
|
2616
2740
|
id: import("../internals/index.mjs").AxisId;
|
|
2617
2741
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2742
|
+
data?: readonly any[] | undefined;
|
|
2743
|
+
dataKey?: string | undefined;
|
|
2744
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
2618
2745
|
position?: "left" | "right" | "none";
|
|
2619
2746
|
width: number;
|
|
2620
2747
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
2621
2748
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
2622
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
2623
|
-
min: import("
|
|
2624
|
-
max: import("
|
|
2749
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
2750
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2751
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2625
2752
|
}) | undefined;
|
|
2626
2753
|
hideTooltip?: boolean | undefined;
|
|
2627
2754
|
ignoreTooltip?: boolean | undefined;
|
|
2628
2755
|
offset: number;
|
|
2629
2756
|
scaleType: "sqrt";
|
|
2630
|
-
colorScale?: import("
|
|
2757
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
2631
2758
|
triggerTooltip?: boolean;
|
|
2759
|
+
isFullCircle?: boolean;
|
|
2632
2760
|
} | {
|
|
2633
2761
|
axis?: "y";
|
|
2634
2762
|
className?: string;
|
|
@@ -2651,24 +2779,26 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2651
2779
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
2652
2780
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
2653
2781
|
tickLabelPlacement?: "middle" | "tick";
|
|
2654
|
-
data?: readonly any[] | undefined;
|
|
2655
|
-
dataKey?: string | undefined;
|
|
2656
2782
|
id: import("../internals/index.mjs").AxisId;
|
|
2657
2783
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2784
|
+
data?: readonly any[] | undefined;
|
|
2785
|
+
dataKey?: string | undefined;
|
|
2786
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
2658
2787
|
position?: "left" | "right" | "none";
|
|
2659
2788
|
width: number;
|
|
2660
2789
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
2661
2790
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
2662
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
2663
|
-
min: import("
|
|
2664
|
-
max: import("
|
|
2791
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
2792
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2793
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2665
2794
|
}) | undefined;
|
|
2666
2795
|
hideTooltip?: boolean | undefined;
|
|
2667
2796
|
ignoreTooltip?: boolean | undefined;
|
|
2668
2797
|
offset: number;
|
|
2669
2798
|
scaleType: "sqrt";
|
|
2670
|
-
colorScale?: import("
|
|
2799
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
2671
2800
|
triggerTooltip?: boolean;
|
|
2801
|
+
isFullCircle?: boolean;
|
|
2672
2802
|
} | {
|
|
2673
2803
|
axis?: "y";
|
|
2674
2804
|
className?: string;
|
|
@@ -2691,24 +2821,26 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2691
2821
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
2692
2822
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
2693
2823
|
tickLabelPlacement?: "middle" | "tick";
|
|
2694
|
-
data?: readonly any[] | undefined;
|
|
2695
|
-
dataKey?: string | undefined;
|
|
2696
2824
|
id: import("../internals/index.mjs").AxisId;
|
|
2697
2825
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2826
|
+
data?: readonly any[] | undefined;
|
|
2827
|
+
dataKey?: string | undefined;
|
|
2828
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
2698
2829
|
position?: "left" | "right" | "none";
|
|
2699
2830
|
width: number;
|
|
2700
2831
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
2701
2832
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
2702
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
2703
|
-
min: import("
|
|
2704
|
-
max: import("
|
|
2833
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
2834
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2835
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2705
2836
|
}) | undefined;
|
|
2706
2837
|
hideTooltip?: boolean | undefined;
|
|
2707
2838
|
ignoreTooltip?: boolean | undefined;
|
|
2708
2839
|
offset: number;
|
|
2709
2840
|
scaleType: "sqrt";
|
|
2710
|
-
colorScale?: import("
|
|
2841
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
2711
2842
|
triggerTooltip?: boolean;
|
|
2843
|
+
isFullCircle?: boolean;
|
|
2712
2844
|
} | {
|
|
2713
2845
|
axis?: "y";
|
|
2714
2846
|
className?: string;
|
|
@@ -2731,24 +2863,26 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2731
2863
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
2732
2864
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
2733
2865
|
tickLabelPlacement?: "middle" | "tick";
|
|
2734
|
-
data?: readonly any[] | undefined;
|
|
2735
|
-
dataKey?: string | undefined;
|
|
2736
2866
|
id: import("../internals/index.mjs").AxisId;
|
|
2737
2867
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2868
|
+
data?: readonly any[] | undefined;
|
|
2869
|
+
dataKey?: string | undefined;
|
|
2870
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
2738
2871
|
position?: "left" | "right" | "none";
|
|
2739
2872
|
width: number;
|
|
2740
2873
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
2741
2874
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
2742
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
2743
|
-
min: import("
|
|
2744
|
-
max: import("
|
|
2875
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
2876
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2877
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2745
2878
|
}) | undefined;
|
|
2746
2879
|
hideTooltip?: boolean | undefined;
|
|
2747
2880
|
ignoreTooltip?: boolean | undefined;
|
|
2748
2881
|
offset: number;
|
|
2749
2882
|
scaleType: "sqrt";
|
|
2750
|
-
colorScale?: import("
|
|
2883
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<string | number | Date, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<number, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
2751
2884
|
triggerTooltip?: boolean;
|
|
2885
|
+
isFullCircle?: boolean;
|
|
2752
2886
|
} | {
|
|
2753
2887
|
axis?: "y";
|
|
2754
2888
|
className?: string;
|
|
@@ -2771,24 +2905,26 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2771
2905
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
2772
2906
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
2773
2907
|
tickLabelPlacement?: "middle" | "tick";
|
|
2774
|
-
data?: readonly any[] | undefined;
|
|
2775
|
-
dataKey?: string | undefined;
|
|
2776
2908
|
id: import("../internals/index.mjs").AxisId;
|
|
2777
2909
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2910
|
+
data?: readonly any[] | undefined;
|
|
2911
|
+
dataKey?: string | undefined;
|
|
2912
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
2778
2913
|
position?: "left" | "right" | "none";
|
|
2779
2914
|
width: number;
|
|
2780
2915
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
2781
2916
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
2782
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
2783
|
-
min: import("
|
|
2784
|
-
max: import("
|
|
2917
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
2918
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2919
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2785
2920
|
}) | undefined;
|
|
2786
2921
|
hideTooltip?: boolean | undefined;
|
|
2787
2922
|
ignoreTooltip?: boolean | undefined;
|
|
2788
2923
|
offset: number;
|
|
2789
2924
|
scaleType: "sqrt";
|
|
2790
|
-
colorScale?: import("
|
|
2925
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<string | number | Date, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<number, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
2791
2926
|
triggerTooltip?: boolean;
|
|
2927
|
+
isFullCircle?: boolean;
|
|
2792
2928
|
} | {
|
|
2793
2929
|
axis?: "y";
|
|
2794
2930
|
className?: string;
|
|
@@ -2811,24 +2947,26 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2811
2947
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
2812
2948
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
2813
2949
|
tickLabelPlacement?: "middle" | "tick";
|
|
2814
|
-
data?: readonly any[] | undefined;
|
|
2815
|
-
dataKey?: string | undefined;
|
|
2816
2950
|
id: import("../internals/index.mjs").AxisId;
|
|
2817
2951
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2952
|
+
data?: readonly any[] | undefined;
|
|
2953
|
+
dataKey?: string | undefined;
|
|
2954
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
2818
2955
|
position?: "left" | "right" | "none";
|
|
2819
2956
|
width: number;
|
|
2820
2957
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
2821
2958
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
2822
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
2823
|
-
min: import("
|
|
2824
|
-
max: import("
|
|
2959
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
2960
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2961
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2825
2962
|
}) | undefined;
|
|
2826
2963
|
hideTooltip?: boolean | undefined;
|
|
2827
2964
|
ignoreTooltip?: boolean | undefined;
|
|
2828
2965
|
offset: number;
|
|
2829
2966
|
scaleType: "sqrt";
|
|
2830
|
-
colorScale?: import("
|
|
2967
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
2831
2968
|
triggerTooltip?: boolean;
|
|
2969
|
+
isFullCircle?: boolean;
|
|
2832
2970
|
} | {
|
|
2833
2971
|
axis?: "y";
|
|
2834
2972
|
className?: string;
|
|
@@ -2851,24 +2989,26 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2851
2989
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
2852
2990
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
2853
2991
|
tickLabelPlacement?: "middle" | "tick";
|
|
2854
|
-
data?: readonly any[] | undefined;
|
|
2855
|
-
dataKey?: string | undefined;
|
|
2856
2992
|
id: import("../internals/index.mjs").AxisId;
|
|
2857
2993
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2994
|
+
data?: readonly any[] | undefined;
|
|
2995
|
+
dataKey?: string | undefined;
|
|
2996
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
2858
2997
|
position?: "left" | "right" | "none";
|
|
2859
2998
|
width: number;
|
|
2860
2999
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
2861
3000
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
2862
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
2863
|
-
min: import("
|
|
2864
|
-
max: import("
|
|
3001
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
3002
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
3003
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2865
3004
|
}) | undefined;
|
|
2866
3005
|
hideTooltip?: boolean | undefined;
|
|
2867
3006
|
ignoreTooltip?: boolean | undefined;
|
|
2868
3007
|
offset: number;
|
|
2869
3008
|
scaleType: "sqrt";
|
|
2870
|
-
colorScale?: import("
|
|
3009
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
2871
3010
|
triggerTooltip?: boolean;
|
|
3011
|
+
isFullCircle?: boolean;
|
|
2872
3012
|
} | {
|
|
2873
3013
|
axis?: "y";
|
|
2874
3014
|
className?: string;
|
|
@@ -2891,24 +3031,26 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2891
3031
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
2892
3032
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
2893
3033
|
tickLabelPlacement?: "middle" | "tick";
|
|
2894
|
-
data?: readonly any[] | undefined;
|
|
2895
|
-
dataKey?: string | undefined;
|
|
2896
3034
|
id: import("../internals/index.mjs").AxisId;
|
|
2897
3035
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
3036
|
+
data?: readonly any[] | undefined;
|
|
3037
|
+
dataKey?: string | undefined;
|
|
3038
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
2898
3039
|
position?: "left" | "right" | "none";
|
|
2899
3040
|
width: number;
|
|
2900
3041
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
2901
3042
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
2902
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
2903
|
-
min: import("
|
|
2904
|
-
max: import("
|
|
3043
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
3044
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
3045
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2905
3046
|
}) | undefined;
|
|
2906
3047
|
hideTooltip?: boolean | undefined;
|
|
2907
3048
|
ignoreTooltip?: boolean | undefined;
|
|
2908
3049
|
offset: number;
|
|
2909
3050
|
scaleType: "sqrt";
|
|
2910
|
-
colorScale?: import("
|
|
3051
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
2911
3052
|
triggerTooltip?: boolean;
|
|
3053
|
+
isFullCircle?: boolean;
|
|
2912
3054
|
} | {
|
|
2913
3055
|
axis?: "y";
|
|
2914
3056
|
className?: string;
|
|
@@ -2931,24 +3073,26 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2931
3073
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
2932
3074
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
2933
3075
|
tickLabelPlacement?: "middle" | "tick";
|
|
2934
|
-
data?: readonly any[] | undefined;
|
|
2935
|
-
dataKey?: string | undefined;
|
|
2936
3076
|
id: import("../internals/index.mjs").AxisId;
|
|
2937
3077
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
3078
|
+
data?: readonly any[] | undefined;
|
|
3079
|
+
dataKey?: string | undefined;
|
|
3080
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
2938
3081
|
position?: "left" | "right" | "none";
|
|
2939
3082
|
width: number;
|
|
2940
3083
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
2941
3084
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
2942
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
2943
|
-
min: import("
|
|
2944
|
-
max: import("
|
|
3085
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
3086
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
3087
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2945
3088
|
}) | undefined;
|
|
2946
3089
|
hideTooltip?: boolean | undefined;
|
|
2947
3090
|
ignoreTooltip?: boolean | undefined;
|
|
2948
3091
|
offset: number;
|
|
2949
3092
|
scaleType: "sqrt";
|
|
2950
|
-
colorScale?: import("
|
|
3093
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
2951
3094
|
triggerTooltip?: boolean;
|
|
3095
|
+
isFullCircle?: boolean;
|
|
2952
3096
|
} | {
|
|
2953
3097
|
axis?: "y";
|
|
2954
3098
|
className?: string;
|
|
@@ -2971,24 +3115,26 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2971
3115
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
2972
3116
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
2973
3117
|
tickLabelPlacement?: "middle" | "tick";
|
|
2974
|
-
data?: readonly any[] | undefined;
|
|
2975
|
-
dataKey?: string | undefined;
|
|
2976
3118
|
id: import("../internals/index.mjs").AxisId;
|
|
2977
3119
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
3120
|
+
data?: readonly any[] | undefined;
|
|
3121
|
+
dataKey?: string | undefined;
|
|
3122
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
2978
3123
|
position?: "left" | "right" | "none";
|
|
2979
3124
|
width: number;
|
|
2980
3125
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
2981
3126
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
2982
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
2983
|
-
min: import("
|
|
2984
|
-
max: import("
|
|
3127
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
3128
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
3129
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
2985
3130
|
}) | undefined;
|
|
2986
3131
|
hideTooltip?: boolean | undefined;
|
|
2987
3132
|
ignoreTooltip?: boolean | undefined;
|
|
2988
3133
|
offset: number;
|
|
2989
3134
|
scaleType: "utc";
|
|
2990
|
-
colorScale?: import("
|
|
3135
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
2991
3136
|
triggerTooltip?: boolean;
|
|
3137
|
+
isFullCircle?: boolean;
|
|
2992
3138
|
} | {
|
|
2993
3139
|
axis?: "y";
|
|
2994
3140
|
className?: string;
|
|
@@ -3011,24 +3157,26 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
3011
3157
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
3012
3158
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
3013
3159
|
tickLabelPlacement?: "middle" | "tick";
|
|
3014
|
-
data?: readonly any[] | undefined;
|
|
3015
|
-
dataKey?: string | undefined;
|
|
3016
3160
|
id: import("../internals/index.mjs").AxisId;
|
|
3017
3161
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
3162
|
+
data?: readonly any[] | undefined;
|
|
3163
|
+
dataKey?: string | undefined;
|
|
3164
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
3018
3165
|
position?: "left" | "right" | "none";
|
|
3019
3166
|
width: number;
|
|
3020
3167
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
3021
3168
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
3022
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
3023
|
-
min: import("
|
|
3024
|
-
max: import("
|
|
3169
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
3170
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
3171
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
3025
3172
|
}) | undefined;
|
|
3026
3173
|
hideTooltip?: boolean | undefined;
|
|
3027
3174
|
ignoreTooltip?: boolean | undefined;
|
|
3028
3175
|
offset: number;
|
|
3029
3176
|
scaleType: "utc";
|
|
3030
|
-
colorScale?: import("
|
|
3177
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
3031
3178
|
triggerTooltip?: boolean;
|
|
3179
|
+
isFullCircle?: boolean;
|
|
3032
3180
|
} | {
|
|
3033
3181
|
axis?: "y";
|
|
3034
3182
|
className?: string;
|
|
@@ -3051,24 +3199,26 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
3051
3199
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
3052
3200
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
3053
3201
|
tickLabelPlacement?: "middle" | "tick";
|
|
3054
|
-
data?: readonly any[] | undefined;
|
|
3055
|
-
dataKey?: string | undefined;
|
|
3056
3202
|
id: import("../internals/index.mjs").AxisId;
|
|
3057
3203
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
3204
|
+
data?: readonly any[] | undefined;
|
|
3205
|
+
dataKey?: string | undefined;
|
|
3206
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
3058
3207
|
position?: "left" | "right" | "none";
|
|
3059
3208
|
width: number;
|
|
3060
3209
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
3061
3210
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
3062
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
3063
|
-
min: import("
|
|
3064
|
-
max: import("
|
|
3211
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
3212
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
3213
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
3065
3214
|
}) | undefined;
|
|
3066
3215
|
hideTooltip?: boolean | undefined;
|
|
3067
3216
|
ignoreTooltip?: boolean | undefined;
|
|
3068
3217
|
offset: number;
|
|
3069
3218
|
scaleType: "utc";
|
|
3070
|
-
colorScale?: import("
|
|
3219
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
3071
3220
|
triggerTooltip?: boolean;
|
|
3221
|
+
isFullCircle?: boolean;
|
|
3072
3222
|
} | {
|
|
3073
3223
|
axis?: "y";
|
|
3074
3224
|
className?: string;
|
|
@@ -3091,24 +3241,26 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
3091
3241
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
3092
3242
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
3093
3243
|
tickLabelPlacement?: "middle" | "tick";
|
|
3094
|
-
data?: readonly any[] | undefined;
|
|
3095
|
-
dataKey?: string | undefined;
|
|
3096
3244
|
id: import("../internals/index.mjs").AxisId;
|
|
3097
3245
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
3246
|
+
data?: readonly any[] | undefined;
|
|
3247
|
+
dataKey?: string | undefined;
|
|
3248
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
3098
3249
|
position?: "left" | "right" | "none";
|
|
3099
3250
|
width: number;
|
|
3100
3251
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
3101
3252
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
3102
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
3103
|
-
min: import("
|
|
3104
|
-
max: import("
|
|
3253
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
3254
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
3255
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
3105
3256
|
}) | undefined;
|
|
3106
3257
|
hideTooltip?: boolean | undefined;
|
|
3107
3258
|
ignoreTooltip?: boolean | undefined;
|
|
3108
3259
|
offset: number;
|
|
3109
3260
|
scaleType: "utc";
|
|
3110
|
-
colorScale?: import("
|
|
3261
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<string | number | Date, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<number, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
3111
3262
|
triggerTooltip?: boolean;
|
|
3263
|
+
isFullCircle?: boolean;
|
|
3112
3264
|
} | {
|
|
3113
3265
|
axis?: "y";
|
|
3114
3266
|
className?: string;
|
|
@@ -3131,24 +3283,26 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
3131
3283
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
3132
3284
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
3133
3285
|
tickLabelPlacement?: "middle" | "tick";
|
|
3134
|
-
data?: readonly any[] | undefined;
|
|
3135
|
-
dataKey?: string | undefined;
|
|
3136
3286
|
id: import("../internals/index.mjs").AxisId;
|
|
3137
3287
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
3288
|
+
data?: readonly any[] | undefined;
|
|
3289
|
+
dataKey?: string | undefined;
|
|
3290
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
3138
3291
|
position?: "left" | "right" | "none";
|
|
3139
3292
|
width: number;
|
|
3140
3293
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
3141
3294
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
3142
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
3143
|
-
min: import("
|
|
3144
|
-
max: import("
|
|
3295
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
3296
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
3297
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
3145
3298
|
}) | undefined;
|
|
3146
3299
|
hideTooltip?: boolean | undefined;
|
|
3147
3300
|
ignoreTooltip?: boolean | undefined;
|
|
3148
3301
|
offset: number;
|
|
3149
3302
|
scaleType: "utc";
|
|
3150
|
-
colorScale?: import("
|
|
3303
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<string | number | Date, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleOrdinal<number, string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
3151
3304
|
triggerTooltip?: boolean;
|
|
3305
|
+
isFullCircle?: boolean;
|
|
3152
3306
|
} | {
|
|
3153
3307
|
axis?: "y";
|
|
3154
3308
|
className?: string;
|
|
@@ -3171,24 +3325,26 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
3171
3325
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
3172
3326
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
3173
3327
|
tickLabelPlacement?: "middle" | "tick";
|
|
3174
|
-
data?: readonly any[] | undefined;
|
|
3175
|
-
dataKey?: string | undefined;
|
|
3176
3328
|
id: import("../internals/index.mjs").AxisId;
|
|
3177
3329
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
3330
|
+
data?: readonly any[] | undefined;
|
|
3331
|
+
dataKey?: string | undefined;
|
|
3332
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
3178
3333
|
position?: "left" | "right" | "none";
|
|
3179
3334
|
width: number;
|
|
3180
3335
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
3181
3336
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
3182
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
3183
|
-
min: import("
|
|
3184
|
-
max: import("
|
|
3337
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
3338
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
3339
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
3185
3340
|
}) | undefined;
|
|
3186
3341
|
hideTooltip?: boolean | undefined;
|
|
3187
3342
|
ignoreTooltip?: boolean | undefined;
|
|
3188
3343
|
offset: number;
|
|
3189
3344
|
scaleType: "utc";
|
|
3190
|
-
colorScale?: import("
|
|
3345
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
3191
3346
|
triggerTooltip?: boolean;
|
|
3347
|
+
isFullCircle?: boolean;
|
|
3192
3348
|
} | {
|
|
3193
3349
|
axis?: "y";
|
|
3194
3350
|
className?: string;
|
|
@@ -3211,24 +3367,26 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
3211
3367
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
3212
3368
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
3213
3369
|
tickLabelPlacement?: "middle" | "tick";
|
|
3214
|
-
data?: readonly any[] | undefined;
|
|
3215
|
-
dataKey?: string | undefined;
|
|
3216
3370
|
id: import("../internals/index.mjs").AxisId;
|
|
3217
3371
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
3372
|
+
data?: readonly any[] | undefined;
|
|
3373
|
+
dataKey?: string | undefined;
|
|
3374
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
3218
3375
|
position?: "left" | "right" | "none";
|
|
3219
3376
|
width: number;
|
|
3220
3377
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
3221
3378
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
3222
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
3223
|
-
min: import("
|
|
3224
|
-
max: import("
|
|
3379
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
3380
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
3381
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
3225
3382
|
}) | undefined;
|
|
3226
3383
|
hideTooltip?: boolean | undefined;
|
|
3227
3384
|
ignoreTooltip?: boolean | undefined;
|
|
3228
3385
|
offset: number;
|
|
3229
3386
|
scaleType: "utc";
|
|
3230
|
-
colorScale?: import("
|
|
3387
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
3231
3388
|
triggerTooltip?: boolean;
|
|
3389
|
+
isFullCircle?: boolean;
|
|
3232
3390
|
} | {
|
|
3233
3391
|
axis?: "y";
|
|
3234
3392
|
className?: string;
|
|
@@ -3251,24 +3409,26 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
3251
3409
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
3252
3410
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
3253
3411
|
tickLabelPlacement?: "middle" | "tick";
|
|
3254
|
-
data?: readonly any[] | undefined;
|
|
3255
|
-
dataKey?: string | undefined;
|
|
3256
3412
|
id: import("../internals/index.mjs").AxisId;
|
|
3257
3413
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
3414
|
+
data?: readonly any[] | undefined;
|
|
3415
|
+
dataKey?: string | undefined;
|
|
3416
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
3258
3417
|
position?: "left" | "right" | "none";
|
|
3259
3418
|
width: number;
|
|
3260
3419
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
3261
3420
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
3262
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
3263
|
-
min: import("
|
|
3264
|
-
max: import("
|
|
3421
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
3422
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
3423
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
3265
3424
|
}) | undefined;
|
|
3266
3425
|
hideTooltip?: boolean | undefined;
|
|
3267
3426
|
ignoreTooltip?: boolean | undefined;
|
|
3268
3427
|
offset: number;
|
|
3269
3428
|
scaleType: "utc";
|
|
3270
|
-
colorScale?: import("
|
|
3429
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number, string | null>;
|
|
3271
3430
|
triggerTooltip?: boolean;
|
|
3431
|
+
isFullCircle?: boolean;
|
|
3272
3432
|
} | {
|
|
3273
3433
|
axis?: "y";
|
|
3274
3434
|
className?: string;
|
|
@@ -3291,24 +3451,26 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
3291
3451
|
tickInterval?: "auto" | ((value: any, index: number) => boolean) | any[];
|
|
3292
3452
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
3293
3453
|
tickLabelPlacement?: "middle" | "tick";
|
|
3294
|
-
data?: readonly any[] | undefined;
|
|
3295
|
-
dataKey?: string | undefined;
|
|
3296
3454
|
id: import("../internals/index.mjs").AxisId;
|
|
3297
3455
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.mjs").AxisScaleConfig>(value: any, context: import("../index.mjs").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
3456
|
+
data?: readonly any[] | undefined;
|
|
3457
|
+
dataKey?: string | undefined;
|
|
3458
|
+
valueGetter?: ((item: import("../internals/index.mjs").DatasetElementType<unknown>) => any) | undefined;
|
|
3298
3459
|
position?: "left" | "right" | "none";
|
|
3299
3460
|
width: number;
|
|
3300
3461
|
zoom: import("../internals/index.mjs").DefaultizedZoomOptions | undefined;
|
|
3301
3462
|
colorMap?: import("../models/colorMapping.mjs").ContinuousColorConfig<number | Date> | import("../models/colorMapping.mjs").PiecewiseColorConfig<number | Date> | undefined;
|
|
3302
|
-
domainLimit?: "nice" | "strict" | ((min: import("
|
|
3303
|
-
min: import("
|
|
3304
|
-
max: import("
|
|
3463
|
+
domainLimit?: "nice" | "strict" | ((min: import("@mui/x-charts-vendor/d3-scale").NumberValue, max: import("@mui/x-charts-vendor/d3-scale").NumberValue) => {
|
|
3464
|
+
min: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
3465
|
+
max: import("@mui/x-charts-vendor/d3-scale").NumberValue;
|
|
3305
3466
|
}) | undefined;
|
|
3306
3467
|
hideTooltip?: boolean | undefined;
|
|
3307
3468
|
ignoreTooltip?: boolean | undefined;
|
|
3308
3469
|
offset: number;
|
|
3309
3470
|
scaleType: "utc";
|
|
3310
|
-
colorScale?: import("
|
|
3471
|
+
colorScale?: import("@mui/x-charts-vendor/d3-scale").ScaleSequential<string, string | null> | import("@mui/x-charts-vendor/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
3311
3472
|
triggerTooltip?: boolean;
|
|
3473
|
+
isFullCircle?: boolean;
|
|
3312
3474
|
};
|
|
3313
3475
|
tickNumber: number;
|
|
3314
3476
|
positionSign: number;
|
|
@@ -3323,10 +3485,10 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
3323
3485
|
type?: string | undefined | undefined;
|
|
3324
3486
|
filter?: string | undefined | undefined;
|
|
3325
3487
|
values?: string | undefined | undefined;
|
|
3326
|
-
id?: string | undefined | undefined;
|
|
3327
|
-
color?: string | undefined | undefined;
|
|
3328
3488
|
min?: number | string | undefined | undefined;
|
|
3329
3489
|
max?: number | string | undefined | undefined;
|
|
3490
|
+
id?: string | undefined | undefined;
|
|
3491
|
+
color?: string | undefined | undefined;
|
|
3330
3492
|
slot?: string | undefined | undefined;
|
|
3331
3493
|
clipPath?: string | undefined | undefined;
|
|
3332
3494
|
mask?: string | undefined | undefined;
|