@mui/x-charts 8.20.0 → 8.21.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/BarChart/BarChart.d.ts +1 -1
- package/BarChart/BarChart.js +18 -0
- package/BarChart/BarLabel/BarLabel.types.d.ts +4 -3
- package/BarChart/BarLabel/BarLabelItem.d.ts +5 -4
- package/BarChart/BarLabel/BarLabelPlot.d.ts +25 -6
- package/BarChart/BarLabel/BarLabelPlot.js +10 -9
- package/BarChart/BarLabel/getBarLabel.d.ts +5 -4
- package/BarChart/BarLabel/getBarLabel.js +3 -4
- package/BarChart/BarPlot.js +4 -3
- package/BarChart/checkBarChartScaleErrors.d.ts +7 -0
- package/BarChart/{checkScaleErrors.js → checkBarChartScaleErrors.js} +6 -7
- package/BarChart/seriesConfig/bar/getSeriesWithDefaultValues.d.ts +5 -3
- package/BarChart/seriesConfig/bar/getSeriesWithDefaultValues.js +3 -4
- package/BarChart/seriesConfig/index.js +2 -2
- package/BarChart/types.d.ts +6 -3
- package/BarChart/useBarPlotData.js +17 -45
- package/CHANGELOG.md +112 -0
- package/ChartContainer/ChartContainer.js +28 -0
- package/ChartsGrid/ChartsHorizontalGrid.js +3 -1
- package/ChartsGrid/ChartsVerticalGrid.js +3 -1
- package/ChartsTooltip/ChartsTooltipContainer.js +2 -1
- package/ChartsXAxis/ChartsSingleXAxisTicks.js +2 -0
- package/ChartsXAxis/ChartsXAxisImpl.js +2 -0
- package/ChartsXAxis/useAxisTicksProps.d.ts +198 -117
- package/ChartsXAxis/useAxisTicksProps.js +2 -0
- package/ChartsYAxis/ChartsSingleYAxisTicks.js +2 -0
- package/ChartsYAxis/ChartsYAxisImpl.js +2 -0
- package/ChartsYAxis/useAxisTicksProps.d.ts +198 -117
- package/ChartsYAxis/useAxisTicksProps.js +2 -0
- package/LineChart/LineChart.js +18 -0
- package/RadarChart/seriesConfig/index.js +2 -0
- package/RadarChart/seriesConfig/tooltipPosition.d.ts +3 -0
- package/RadarChart/seriesConfig/tooltipPosition.js +80 -0
- package/ScatterChart/ScatterChart.js +18 -0
- package/SparkLineChart/SparkLineChart.js +18 -0
- package/esm/BarChart/BarChart.d.ts +1 -1
- package/esm/BarChart/BarChart.js +18 -0
- package/esm/BarChart/BarLabel/BarLabel.types.d.ts +4 -3
- package/esm/BarChart/BarLabel/BarLabelItem.d.ts +5 -4
- package/esm/BarChart/BarLabel/BarLabelPlot.d.ts +25 -6
- package/esm/BarChart/BarLabel/BarLabelPlot.js +9 -9
- package/esm/BarChart/BarLabel/getBarLabel.d.ts +5 -4
- package/esm/BarChart/BarLabel/getBarLabel.js +2 -2
- package/esm/BarChart/BarPlot.js +4 -3
- package/esm/BarChart/checkBarChartScaleErrors.d.ts +7 -0
- package/esm/BarChart/{checkScaleErrors.js → checkBarChartScaleErrors.js} +5 -6
- package/esm/BarChart/seriesConfig/bar/getSeriesWithDefaultValues.d.ts +5 -3
- package/esm/BarChart/seriesConfig/bar/getSeriesWithDefaultValues.js +2 -3
- package/esm/BarChart/seriesConfig/index.js +1 -1
- package/esm/BarChart/types.d.ts +6 -3
- package/esm/BarChart/useBarPlotData.js +17 -45
- package/esm/ChartContainer/ChartContainer.js +28 -0
- package/esm/ChartsGrid/ChartsHorizontalGrid.js +3 -1
- package/esm/ChartsGrid/ChartsVerticalGrid.js +3 -1
- package/esm/ChartsTooltip/ChartsTooltipContainer.js +2 -1
- package/esm/ChartsXAxis/ChartsSingleXAxisTicks.js +2 -0
- package/esm/ChartsXAxis/ChartsXAxisImpl.js +2 -0
- package/esm/ChartsXAxis/useAxisTicksProps.d.ts +198 -117
- package/esm/ChartsXAxis/useAxisTicksProps.js +2 -0
- package/esm/ChartsYAxis/ChartsSingleYAxisTicks.js +2 -0
- package/esm/ChartsYAxis/ChartsYAxisImpl.js +2 -0
- package/esm/ChartsYAxis/useAxisTicksProps.d.ts +198 -117
- package/esm/ChartsYAxis/useAxisTicksProps.js +2 -0
- package/esm/LineChart/LineChart.js +18 -0
- package/esm/RadarChart/seriesConfig/index.js +2 -0
- package/esm/RadarChart/seriesConfig/tooltipPosition.d.ts +3 -0
- package/esm/RadarChart/seriesConfig/tooltipPosition.js +74 -0
- package/esm/ScatterChart/ScatterChart.js +18 -0
- package/esm/SparkLineChart/SparkLineChart.js +18 -0
- package/esm/hooks/useIsHydrated.js +1 -1
- package/esm/hooks/useTicks.d.ts +15 -2
- package/esm/hooks/useTicks.js +32 -3
- package/esm/index.js +1 -1
- package/esm/internals/domUtils.d.ts +6 -3
- package/esm/internals/getBandSize.d.ts +13 -0
- package/esm/internals/getBandSize.js +23 -0
- package/esm/internals/getWordsByLines.d.ts +2 -1
- package/esm/internals/index.d.ts +5 -0
- package/esm/internals/index.js +5 -0
- package/esm/internals/plugins/corePlugins/useChartSeries/index.d.ts +1 -1
- package/esm/internals/plugins/corePlugins/useChartSeries/processSeries.d.ts +11 -2
- package/esm/internals/plugins/corePlugins/useChartSeries/processSeries.js +29 -0
- package/esm/internals/plugins/corePlugins/useChartSeries/useChartSeries.selectors.d.ts +9 -1
- package/esm/internals/plugins/corePlugins/useChartSeries/useChartSeries.selectors.js +11 -1
- package/esm/internals/plugins/corePlugins/useChartSeries/useChartSeries.types.d.ts +2 -1
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisPreview.selectors.js +5 -5
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianHighlight.selectors.js +2 -2
- package/esm/internals/plugins/featurePlugins/useChartClosestPoint/findClosestPoints.d.ts +1 -2
- package/esm/internals/plugins/featurePlugins/useChartClosestPoint/findClosestPoints.js +1 -1
- package/esm/internals/plugins/featurePlugins/useChartClosestPoint/useChartClosestPoint.js +2 -4
- package/esm/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.selectors.js +2 -2
- package/esm/internals/plugins/featurePlugins/useChartInteraction/useChartTooltip.selectors.js +37 -22
- package/esm/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarAxis.selectors.d.ts +5 -0
- package/esm/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarAxis.selectors.js +10 -7
- package/esm/internals/plugins/models/seriesConfig/index.d.ts +1 -0
- package/esm/internals/plugins/models/seriesConfig/index.js +1 -0
- package/esm/internals/plugins/models/seriesConfig/seriesConfig.types.d.ts +5 -0
- package/esm/internals/plugins/models/seriesConfig/seriesLayout.types.d.ts +6 -0
- package/esm/internals/plugins/models/seriesConfig/seriesLayout.types.js +1 -0
- package/esm/internals/plugins/models/seriesConfig/tooltipItemPositionGetter.types.d.ts +6 -4
- package/esm/internals/seriesSelectorOfType.d.ts +2 -2
- package/esm/internals/seriesSelectorOfType.js +1 -1
- package/esm/models/axis.d.ts +5 -0
- package/esm/models/seriesType/bar.d.ts +3 -2
- package/esm/models/seriesType/config.d.ts +10 -0
- package/esm/models/seriesType/index.d.ts +1 -0
- package/hooks/useIsHydrated.js +1 -1
- package/hooks/useTicks.d.ts +15 -2
- package/hooks/useTicks.js +33 -3
- package/index.js +1 -1
- package/internals/domUtils.d.ts +6 -3
- package/internals/getBandSize.d.ts +13 -0
- package/internals/getBandSize.js +29 -0
- package/internals/getWordsByLines.d.ts +2 -1
- package/internals/index.d.ts +5 -0
- package/internals/index.js +48 -0
- package/internals/plugins/corePlugins/useChartSeries/index.d.ts +1 -1
- package/internals/plugins/corePlugins/useChartSeries/processSeries.d.ts +11 -2
- package/internals/plugins/corePlugins/useChartSeries/processSeries.js +32 -2
- package/internals/plugins/corePlugins/useChartSeries/useChartSeries.selectors.d.ts +9 -1
- package/internals/plugins/corePlugins/useChartSeries/useChartSeries.selectors.js +11 -1
- package/internals/plugins/corePlugins/useChartSeries/useChartSeries.types.d.ts +2 -1
- package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisPreview.selectors.js +4 -4
- package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianHighlight.selectors.js +2 -2
- package/internals/plugins/featurePlugins/useChartClosestPoint/findClosestPoints.d.ts +1 -2
- package/internals/plugins/featurePlugins/useChartClosestPoint/findClosestPoints.js +1 -1
- package/internals/plugins/featurePlugins/useChartClosestPoint/useChartClosestPoint.js +2 -4
- package/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.selectors.js +2 -2
- package/internals/plugins/featurePlugins/useChartInteraction/useChartTooltip.selectors.js +35 -20
- package/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarAxis.selectors.d.ts +5 -0
- package/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarAxis.selectors.js +10 -6
- package/internals/plugins/models/seriesConfig/index.d.ts +1 -0
- package/internals/plugins/models/seriesConfig/index.js +11 -0
- package/internals/plugins/models/seriesConfig/seriesConfig.types.d.ts +5 -0
- package/internals/plugins/models/seriesConfig/seriesLayout.types.d.ts +6 -0
- package/internals/plugins/models/seriesConfig/seriesLayout.types.js +5 -0
- package/internals/plugins/models/seriesConfig/tooltipItemPositionGetter.types.d.ts +6 -4
- package/internals/seriesSelectorOfType.d.ts +2 -2
- package/internals/seriesSelectorOfType.js +1 -1
- package/models/axis.d.ts +5 -0
- package/models/seriesType/bar.d.ts +3 -2
- package/models/seriesType/config.d.ts +10 -0
- package/models/seriesType/index.d.ts +1 -0
- package/package.json +4 -4
- package/BarChart/checkScaleErrors.d.ts +0 -10
- package/esm/BarChart/checkScaleErrors.d.ts +0 -10
|
@@ -14,6 +14,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
14
14
|
tickLabelStyle?: ChartsTextProps["style"];
|
|
15
15
|
labelStyle?: ChartsTextProps["style"];
|
|
16
16
|
tickLabelInterval?: "auto" | ((value: any, index: number) => boolean);
|
|
17
|
+
tickSpacing?: number;
|
|
17
18
|
label?: string;
|
|
18
19
|
tickSize: number;
|
|
19
20
|
classes?: Partial<import("../index.js").ChartsAxisClasses>;
|
|
@@ -31,9 +32,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
31
32
|
width: number;
|
|
32
33
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
33
34
|
id: import("../internals/index.js").AxisId;
|
|
35
|
+
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
34
36
|
dataKey?: string | undefined;
|
|
35
37
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
36
|
-
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
37
38
|
hideTooltip?: boolean | undefined;
|
|
38
39
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
39
40
|
min: number;
|
|
@@ -52,6 +53,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
52
53
|
tickLabelStyle?: ChartsTextProps["style"];
|
|
53
54
|
labelStyle?: ChartsTextProps["style"];
|
|
54
55
|
tickLabelInterval?: "auto" | ((value: any, index: number) => boolean);
|
|
56
|
+
tickSpacing?: number;
|
|
55
57
|
label?: string;
|
|
56
58
|
tickSize: number;
|
|
57
59
|
classes?: Partial<import("../index.js").ChartsAxisClasses>;
|
|
@@ -69,9 +71,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
69
71
|
width: number;
|
|
70
72
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
71
73
|
id: import("../internals/index.js").AxisId;
|
|
74
|
+
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
72
75
|
dataKey?: string | undefined;
|
|
73
76
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
74
|
-
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
75
77
|
hideTooltip?: boolean | undefined;
|
|
76
78
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
77
79
|
min: number;
|
|
@@ -90,6 +92,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
90
92
|
tickLabelStyle?: ChartsTextProps["style"];
|
|
91
93
|
labelStyle?: ChartsTextProps["style"];
|
|
92
94
|
tickLabelInterval?: "auto" | ((value: any, index: number) => boolean);
|
|
95
|
+
tickSpacing?: number;
|
|
93
96
|
label?: string;
|
|
94
97
|
tickSize: number;
|
|
95
98
|
classes?: Partial<import("../index.js").ChartsAxisClasses>;
|
|
@@ -107,9 +110,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
107
110
|
width: number;
|
|
108
111
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
109
112
|
id: import("../internals/index.js").AxisId;
|
|
113
|
+
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
110
114
|
dataKey?: string | undefined;
|
|
111
115
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
112
|
-
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
113
116
|
hideTooltip?: boolean | undefined;
|
|
114
117
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
115
118
|
min: number;
|
|
@@ -128,6 +131,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
128
131
|
tickLabelStyle?: ChartsTextProps["style"];
|
|
129
132
|
labelStyle?: ChartsTextProps["style"];
|
|
130
133
|
tickLabelInterval?: "auto" | ((value: any, index: number) => boolean);
|
|
134
|
+
tickSpacing?: number;
|
|
131
135
|
label?: string;
|
|
132
136
|
tickSize: number;
|
|
133
137
|
classes?: Partial<import("../index.js").ChartsAxisClasses>;
|
|
@@ -145,9 +149,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
145
149
|
width: number;
|
|
146
150
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
147
151
|
id: import("../internals/index.js").AxisId;
|
|
152
|
+
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
148
153
|
dataKey?: string | undefined;
|
|
149
154
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
150
|
-
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
151
155
|
hideTooltip?: boolean | undefined;
|
|
152
156
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
153
157
|
min: number;
|
|
@@ -166,6 +170,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
166
170
|
tickLabelStyle?: ChartsTextProps["style"];
|
|
167
171
|
labelStyle?: ChartsTextProps["style"];
|
|
168
172
|
tickLabelInterval?: "auto" | ((value: any, index: number) => boolean);
|
|
173
|
+
tickSpacing?: number;
|
|
169
174
|
label?: string;
|
|
170
175
|
tickSize: number;
|
|
171
176
|
classes?: Partial<import("../index.js").ChartsAxisClasses>;
|
|
@@ -183,9 +188,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
183
188
|
width: number;
|
|
184
189
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
185
190
|
id: import("../internals/index.js").AxisId;
|
|
191
|
+
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
186
192
|
dataKey?: string | undefined;
|
|
187
193
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
188
|
-
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
189
194
|
hideTooltip?: boolean | undefined;
|
|
190
195
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
191
196
|
min: number;
|
|
@@ -204,6 +209,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
204
209
|
tickLabelStyle?: ChartsTextProps["style"];
|
|
205
210
|
labelStyle?: ChartsTextProps["style"];
|
|
206
211
|
tickLabelInterval?: "auto" | ((value: any, index: number) => boolean);
|
|
212
|
+
tickSpacing?: number;
|
|
207
213
|
label?: string;
|
|
208
214
|
tickSize: number;
|
|
209
215
|
classes?: Partial<import("../index.js").ChartsAxisClasses>;
|
|
@@ -221,9 +227,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
221
227
|
width: number;
|
|
222
228
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
223
229
|
id: import("../internals/index.js").AxisId;
|
|
230
|
+
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
224
231
|
dataKey?: string | undefined;
|
|
225
232
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
226
|
-
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
227
233
|
hideTooltip?: boolean | undefined;
|
|
228
234
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
229
235
|
min: number;
|
|
@@ -242,6 +248,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
242
248
|
tickLabelStyle?: ChartsTextProps["style"];
|
|
243
249
|
labelStyle?: ChartsTextProps["style"];
|
|
244
250
|
tickLabelInterval?: "auto" | ((value: any, index: number) => boolean);
|
|
251
|
+
tickSpacing?: number;
|
|
245
252
|
label?: string;
|
|
246
253
|
tickSize: number;
|
|
247
254
|
classes?: Partial<import("../index.js").ChartsAxisClasses>;
|
|
@@ -259,9 +266,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
259
266
|
width: number;
|
|
260
267
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
261
268
|
id: import("../internals/index.js").AxisId;
|
|
269
|
+
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
262
270
|
dataKey?: string | undefined;
|
|
263
271
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
264
|
-
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
265
272
|
hideTooltip?: boolean | undefined;
|
|
266
273
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
267
274
|
min: number;
|
|
@@ -280,6 +287,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
280
287
|
tickLabelStyle?: ChartsTextProps["style"];
|
|
281
288
|
labelStyle?: ChartsTextProps["style"];
|
|
282
289
|
tickLabelInterval?: "auto" | ((value: any, index: number) => boolean);
|
|
290
|
+
tickSpacing?: number;
|
|
283
291
|
label?: string;
|
|
284
292
|
tickSize: number;
|
|
285
293
|
classes?: Partial<import("../index.js").ChartsAxisClasses>;
|
|
@@ -297,9 +305,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
297
305
|
width: number;
|
|
298
306
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
299
307
|
id: import("../internals/index.js").AxisId;
|
|
308
|
+
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
300
309
|
dataKey?: string | undefined;
|
|
301
310
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
302
|
-
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
303
311
|
hideTooltip?: boolean | undefined;
|
|
304
312
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
305
313
|
min: number;
|
|
@@ -318,6 +326,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
318
326
|
tickLabelStyle?: ChartsTextProps["style"];
|
|
319
327
|
labelStyle?: ChartsTextProps["style"];
|
|
320
328
|
tickLabelInterval?: "auto" | ((value: any, index: number) => boolean);
|
|
329
|
+
tickSpacing?: number;
|
|
321
330
|
label?: string;
|
|
322
331
|
tickSize: number;
|
|
323
332
|
classes?: Partial<import("../index.js").ChartsAxisClasses>;
|
|
@@ -335,9 +344,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
335
344
|
width: number;
|
|
336
345
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
337
346
|
id: import("../internals/index.js").AxisId;
|
|
347
|
+
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
338
348
|
dataKey?: string | undefined;
|
|
339
349
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
340
|
-
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
341
350
|
hideTooltip?: boolean | undefined;
|
|
342
351
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
343
352
|
min: number;
|
|
@@ -356,6 +365,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
356
365
|
tickLabelStyle?: ChartsTextProps["style"];
|
|
357
366
|
labelStyle?: ChartsTextProps["style"];
|
|
358
367
|
tickLabelInterval?: "auto" | ((value: any, index: number) => boolean);
|
|
368
|
+
tickSpacing?: number;
|
|
359
369
|
label?: string;
|
|
360
370
|
tickSize: number;
|
|
361
371
|
classes?: Partial<import("../index.js").ChartsAxisClasses>;
|
|
@@ -373,9 +383,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
373
383
|
width: number;
|
|
374
384
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
375
385
|
id: import("../internals/index.js").AxisId;
|
|
386
|
+
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
376
387
|
dataKey?: string | undefined;
|
|
377
388
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
378
|
-
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
379
389
|
hideTooltip?: boolean | undefined;
|
|
380
390
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
381
391
|
min: number;
|
|
@@ -394,6 +404,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
394
404
|
tickLabelStyle?: ChartsTextProps["style"];
|
|
395
405
|
labelStyle?: ChartsTextProps["style"];
|
|
396
406
|
tickLabelInterval?: "auto" | ((value: any, index: number) => boolean);
|
|
407
|
+
tickSpacing?: number;
|
|
397
408
|
label?: string;
|
|
398
409
|
tickSize: number;
|
|
399
410
|
classes?: Partial<import("../index.js").ChartsAxisClasses>;
|
|
@@ -411,9 +422,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
411
422
|
width: number;
|
|
412
423
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
413
424
|
id: import("../internals/index.js").AxisId;
|
|
425
|
+
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
414
426
|
dataKey?: string | undefined;
|
|
415
427
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
416
|
-
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
417
428
|
hideTooltip?: boolean | undefined;
|
|
418
429
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
419
430
|
min: number;
|
|
@@ -432,6 +443,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
432
443
|
tickLabelStyle?: ChartsTextProps["style"];
|
|
433
444
|
labelStyle?: ChartsTextProps["style"];
|
|
434
445
|
tickLabelInterval?: "auto" | ((value: any, index: number) => boolean);
|
|
446
|
+
tickSpacing?: number;
|
|
435
447
|
label?: string;
|
|
436
448
|
tickSize: number;
|
|
437
449
|
classes?: Partial<import("../index.js").ChartsAxisClasses>;
|
|
@@ -449,9 +461,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
449
461
|
width: number;
|
|
450
462
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
451
463
|
id: import("../internals/index.js").AxisId;
|
|
464
|
+
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
452
465
|
dataKey?: string | undefined;
|
|
453
466
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
454
|
-
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
455
467
|
hideTooltip?: boolean | undefined;
|
|
456
468
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
457
469
|
min: number;
|
|
@@ -470,6 +482,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
470
482
|
tickLabelStyle?: ChartsTextProps["style"];
|
|
471
483
|
labelStyle?: ChartsTextProps["style"];
|
|
472
484
|
tickLabelInterval?: "auto" | ((value: any, index: number) => boolean);
|
|
485
|
+
tickSpacing?: number;
|
|
473
486
|
label?: string;
|
|
474
487
|
tickSize: number;
|
|
475
488
|
classes?: Partial<import("../index.js").ChartsAxisClasses>;
|
|
@@ -487,9 +500,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
487
500
|
width: number;
|
|
488
501
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
489
502
|
id: import("../internals/index.js").AxisId;
|
|
503
|
+
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
490
504
|
dataKey?: string | undefined;
|
|
491
505
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
492
|
-
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
493
506
|
hideTooltip?: boolean | undefined;
|
|
494
507
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
495
508
|
min: number;
|
|
@@ -508,6 +521,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
508
521
|
tickLabelStyle?: ChartsTextProps["style"];
|
|
509
522
|
labelStyle?: ChartsTextProps["style"];
|
|
510
523
|
tickLabelInterval?: "auto" | ((value: any, index: number) => boolean);
|
|
524
|
+
tickSpacing?: number;
|
|
511
525
|
label?: string;
|
|
512
526
|
tickSize: number;
|
|
513
527
|
classes?: Partial<import("../index.js").ChartsAxisClasses>;
|
|
@@ -525,9 +539,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
525
539
|
width: number;
|
|
526
540
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
527
541
|
id: import("../internals/index.js").AxisId;
|
|
542
|
+
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
528
543
|
dataKey?: string | undefined;
|
|
529
544
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
530
|
-
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
531
545
|
hideTooltip?: boolean | undefined;
|
|
532
546
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
533
547
|
min: number;
|
|
@@ -546,6 +560,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
546
560
|
tickLabelStyle?: ChartsTextProps["style"];
|
|
547
561
|
labelStyle?: ChartsTextProps["style"];
|
|
548
562
|
tickLabelInterval?: "auto" | ((value: any, index: number) => boolean);
|
|
563
|
+
tickSpacing?: number;
|
|
549
564
|
label?: string;
|
|
550
565
|
tickSize: number;
|
|
551
566
|
classes?: Partial<import("../index.js").ChartsAxisClasses>;
|
|
@@ -563,9 +578,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
563
578
|
width: number;
|
|
564
579
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
565
580
|
id: import("../internals/index.js").AxisId;
|
|
581
|
+
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
566
582
|
dataKey?: string | undefined;
|
|
567
583
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
568
|
-
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
569
584
|
hideTooltip?: boolean | undefined;
|
|
570
585
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
571
586
|
min: number;
|
|
@@ -584,6 +599,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
584
599
|
tickLabelStyle?: ChartsTextProps["style"];
|
|
585
600
|
labelStyle?: ChartsTextProps["style"];
|
|
586
601
|
tickLabelInterval?: "auto" | ((value: any, index: number) => boolean);
|
|
602
|
+
tickSpacing?: number;
|
|
587
603
|
label?: string;
|
|
588
604
|
tickSize: number;
|
|
589
605
|
classes?: Partial<import("../index.js").ChartsAxisClasses>;
|
|
@@ -601,9 +617,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
601
617
|
width: number;
|
|
602
618
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
603
619
|
id: import("../internals/index.js").AxisId;
|
|
620
|
+
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
604
621
|
dataKey?: string | undefined;
|
|
605
622
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
606
|
-
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
607
623
|
hideTooltip?: boolean | undefined;
|
|
608
624
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
609
625
|
min: number;
|
|
@@ -622,6 +638,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
622
638
|
tickLabelStyle?: ChartsTextProps["style"];
|
|
623
639
|
labelStyle?: ChartsTextProps["style"];
|
|
624
640
|
tickLabelInterval?: "auto" | ((value: any, index: number) => boolean);
|
|
641
|
+
tickSpacing?: number;
|
|
625
642
|
label?: string;
|
|
626
643
|
tickSize: number;
|
|
627
644
|
classes?: Partial<import("../index.js").ChartsAxisClasses>;
|
|
@@ -639,9 +656,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
639
656
|
width: number;
|
|
640
657
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
641
658
|
id: import("../internals/index.js").AxisId;
|
|
659
|
+
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
642
660
|
dataKey?: string | undefined;
|
|
643
661
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
644
|
-
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
645
662
|
hideTooltip?: boolean | undefined;
|
|
646
663
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
647
664
|
min: number;
|
|
@@ -660,6 +677,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
660
677
|
tickLabelStyle?: ChartsTextProps["style"];
|
|
661
678
|
labelStyle?: ChartsTextProps["style"];
|
|
662
679
|
tickLabelInterval?: "auto" | ((value: any, index: number) => boolean);
|
|
680
|
+
tickSpacing?: number;
|
|
663
681
|
label?: string;
|
|
664
682
|
tickSize: number;
|
|
665
683
|
classes?: Partial<import("../index.js").ChartsAxisClasses>;
|
|
@@ -677,9 +695,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
677
695
|
width: number;
|
|
678
696
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
679
697
|
id: import("../internals/index.js").AxisId;
|
|
698
|
+
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
680
699
|
dataKey?: string | undefined;
|
|
681
700
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
682
|
-
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
683
701
|
hideTooltip?: boolean | undefined;
|
|
684
702
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
685
703
|
min: number;
|
|
@@ -698,6 +716,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
698
716
|
tickLabelStyle?: ChartsTextProps["style"];
|
|
699
717
|
labelStyle?: ChartsTextProps["style"];
|
|
700
718
|
tickLabelInterval?: "auto" | ((value: any, index: number) => boolean);
|
|
719
|
+
tickSpacing?: number;
|
|
701
720
|
label?: string;
|
|
702
721
|
tickSize: number;
|
|
703
722
|
classes?: Partial<import("../index.js").ChartsAxisClasses>;
|
|
@@ -715,9 +734,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
715
734
|
width: number;
|
|
716
735
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
717
736
|
id: import("../internals/index.js").AxisId;
|
|
737
|
+
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
718
738
|
dataKey?: string | undefined;
|
|
719
739
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
720
|
-
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
721
740
|
hideTooltip?: boolean | undefined;
|
|
722
741
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
723
742
|
min: number;
|
|
@@ -736,6 +755,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
736
755
|
tickLabelStyle?: ChartsTextProps["style"];
|
|
737
756
|
labelStyle?: ChartsTextProps["style"];
|
|
738
757
|
tickLabelInterval?: "auto" | ((value: any, index: number) => boolean);
|
|
758
|
+
tickSpacing?: number;
|
|
739
759
|
label?: string;
|
|
740
760
|
tickSize: number;
|
|
741
761
|
classes?: Partial<import("../index.js").ChartsAxisClasses>;
|
|
@@ -753,9 +773,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
753
773
|
width: number;
|
|
754
774
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
755
775
|
id: import("../internals/index.js").AxisId;
|
|
776
|
+
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
756
777
|
dataKey?: string | undefined;
|
|
757
778
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
758
|
-
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
759
779
|
hideTooltip?: boolean | undefined;
|
|
760
780
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
761
781
|
min: number;
|
|
@@ -774,6 +794,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
774
794
|
tickLabelStyle?: ChartsTextProps["style"];
|
|
775
795
|
labelStyle?: ChartsTextProps["style"];
|
|
776
796
|
tickLabelInterval?: "auto" | ((value: any, index: number) => boolean);
|
|
797
|
+
tickSpacing?: number;
|
|
777
798
|
label?: string;
|
|
778
799
|
tickSize: number;
|
|
779
800
|
classes?: Partial<import("../index.js").ChartsAxisClasses>;
|
|
@@ -791,9 +812,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
791
812
|
width: number;
|
|
792
813
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
793
814
|
id: import("../internals/index.js").AxisId;
|
|
815
|
+
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
794
816
|
dataKey?: string | undefined;
|
|
795
817
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
796
|
-
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
797
818
|
hideTooltip?: boolean | undefined;
|
|
798
819
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
799
820
|
min: number;
|
|
@@ -812,6 +833,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
812
833
|
tickLabelStyle?: ChartsTextProps["style"];
|
|
813
834
|
labelStyle?: ChartsTextProps["style"];
|
|
814
835
|
tickLabelInterval?: "auto" | ((value: any, index: number) => boolean);
|
|
836
|
+
tickSpacing?: number;
|
|
815
837
|
label?: string;
|
|
816
838
|
tickSize: number;
|
|
817
839
|
classes?: Partial<import("../index.js").ChartsAxisClasses>;
|
|
@@ -829,9 +851,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
829
851
|
width: number;
|
|
830
852
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
831
853
|
id: import("../internals/index.js").AxisId;
|
|
854
|
+
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
832
855
|
dataKey?: string | undefined;
|
|
833
856
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
834
|
-
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
835
857
|
hideTooltip?: boolean | undefined;
|
|
836
858
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
837
859
|
min: number;
|
|
@@ -850,6 +872,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
850
872
|
tickLabelStyle?: ChartsTextProps["style"];
|
|
851
873
|
labelStyle?: ChartsTextProps["style"];
|
|
852
874
|
tickLabelInterval?: "auto" | ((value: any, index: number) => boolean);
|
|
875
|
+
tickSpacing?: number;
|
|
853
876
|
label?: string;
|
|
854
877
|
tickSize: number;
|
|
855
878
|
classes?: Partial<import("../index.js").ChartsAxisClasses>;
|
|
@@ -867,9 +890,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
867
890
|
width: number;
|
|
868
891
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
869
892
|
id: import("../internals/index.js").AxisId;
|
|
893
|
+
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
870
894
|
dataKey?: string | undefined;
|
|
871
895
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
872
|
-
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
873
896
|
hideTooltip?: boolean | undefined;
|
|
874
897
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
875
898
|
min: number;
|
|
@@ -888,6 +911,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
888
911
|
tickLabelStyle?: ChartsTextProps["style"];
|
|
889
912
|
labelStyle?: ChartsTextProps["style"];
|
|
890
913
|
tickLabelInterval?: "auto" | ((value: any, index: number) => boolean);
|
|
914
|
+
tickSpacing?: number;
|
|
891
915
|
label?: string;
|
|
892
916
|
tickSize: number;
|
|
893
917
|
classes?: Partial<import("../index.js").ChartsAxisClasses>;
|
|
@@ -905,9 +929,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
905
929
|
width: number;
|
|
906
930
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
907
931
|
id: import("../internals/index.js").AxisId;
|
|
932
|
+
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
908
933
|
dataKey?: string | undefined;
|
|
909
934
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
910
|
-
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
911
935
|
hideTooltip?: boolean | undefined;
|
|
912
936
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
913
937
|
min: number;
|
|
@@ -926,6 +950,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
926
950
|
tickLabelStyle?: ChartsTextProps["style"];
|
|
927
951
|
labelStyle?: ChartsTextProps["style"];
|
|
928
952
|
tickLabelInterval?: "auto" | ((value: any, index: number) => boolean);
|
|
953
|
+
tickSpacing?: number;
|
|
929
954
|
label?: string;
|
|
930
955
|
tickSize: number;
|
|
931
956
|
classes?: Partial<import("../index.js").ChartsAxisClasses>;
|
|
@@ -943,9 +968,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
943
968
|
width: number;
|
|
944
969
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
945
970
|
id: import("../internals/index.js").AxisId;
|
|
971
|
+
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
946
972
|
dataKey?: string | undefined;
|
|
947
973
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
948
|
-
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
949
974
|
hideTooltip?: boolean | undefined;
|
|
950
975
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
951
976
|
min: number;
|
|
@@ -964,6 +989,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
964
989
|
tickLabelStyle?: ChartsTextProps["style"];
|
|
965
990
|
labelStyle?: ChartsTextProps["style"];
|
|
966
991
|
tickLabelInterval?: "auto" | ((value: any, index: number) => boolean);
|
|
992
|
+
tickSpacing?: number;
|
|
967
993
|
label?: string;
|
|
968
994
|
tickSize: number;
|
|
969
995
|
classes?: Partial<import("../index.js").ChartsAxisClasses>;
|
|
@@ -981,9 +1007,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
981
1007
|
width: number;
|
|
982
1008
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
983
1009
|
id: import("../internals/index.js").AxisId;
|
|
1010
|
+
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
984
1011
|
dataKey?: string | undefined;
|
|
985
1012
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
986
|
-
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
987
1013
|
hideTooltip?: boolean | undefined;
|
|
988
1014
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
989
1015
|
min: number;
|
|
@@ -1002,6 +1028,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1002
1028
|
tickLabelStyle?: ChartsTextProps["style"];
|
|
1003
1029
|
labelStyle?: ChartsTextProps["style"];
|
|
1004
1030
|
tickLabelInterval?: "auto" | ((value: any, index: number) => boolean);
|
|
1031
|
+
tickSpacing?: number;
|
|
1005
1032
|
label?: string;
|
|
1006
1033
|
tickSize: number;
|
|
1007
1034
|
classes?: Partial<import("../index.js").ChartsAxisClasses>;
|
|
@@ -1019,9 +1046,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1019
1046
|
width: number;
|
|
1020
1047
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
1021
1048
|
id: import("../internals/index.js").AxisId;
|
|
1049
|
+
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
1022
1050
|
dataKey?: string | undefined;
|
|
1023
1051
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1024
|
-
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
1025
1052
|
hideTooltip?: boolean | undefined;
|
|
1026
1053
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
1027
1054
|
min: number;
|
|
@@ -1040,6 +1067,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1040
1067
|
tickLabelStyle?: ChartsTextProps["style"];
|
|
1041
1068
|
labelStyle?: ChartsTextProps["style"];
|
|
1042
1069
|
tickLabelInterval?: "auto" | ((value: any, index: number) => boolean);
|
|
1070
|
+
tickSpacing?: number;
|
|
1043
1071
|
label?: string;
|
|
1044
1072
|
tickSize: number;
|
|
1045
1073
|
classes?: Partial<import("../index.js").ChartsAxisClasses>;
|
|
@@ -1057,9 +1085,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1057
1085
|
width: number;
|
|
1058
1086
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
1059
1087
|
id: import("../internals/index.js").AxisId;
|
|
1088
|
+
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
1060
1089
|
dataKey?: string | undefined;
|
|
1061
1090
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1062
|
-
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
1063
1091
|
hideTooltip?: boolean | undefined;
|
|
1064
1092
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
1065
1093
|
min: number;
|
|
@@ -1079,6 +1107,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1079
1107
|
tickLabelStyle?: ChartsTextProps["style"];
|
|
1080
1108
|
labelStyle?: ChartsTextProps["style"];
|
|
1081
1109
|
tickLabelInterval?: "auto" | ((value: any, index: number) => boolean);
|
|
1110
|
+
tickSpacing?: number;
|
|
1082
1111
|
label?: string;
|
|
1083
1112
|
tickSize: number;
|
|
1084
1113
|
classes?: Partial<import("../index.js").ChartsAxisClasses>;
|
|
@@ -1096,9 +1125,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1096
1125
|
width: number;
|
|
1097
1126
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
1098
1127
|
id: import("../internals/index.js").AxisId;
|
|
1128
|
+
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
1099
1129
|
dataKey?: string | undefined;
|
|
1100
1130
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1101
|
-
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
1102
1131
|
hideTooltip?: boolean | undefined;
|
|
1103
1132
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
1104
1133
|
min: number;
|
|
@@ -1118,6 +1147,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1118
1147
|
tickLabelStyle?: ChartsTextProps["style"];
|
|
1119
1148
|
labelStyle?: ChartsTextProps["style"];
|
|
1120
1149
|
tickLabelInterval?: "auto" | ((value: any, index: number) => boolean);
|
|
1150
|
+
tickSpacing?: number;
|
|
1121
1151
|
label?: string;
|
|
1122
1152
|
tickSize: number;
|
|
1123
1153
|
classes?: Partial<import("../index.js").ChartsAxisClasses>;
|
|
@@ -1135,9 +1165,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1135
1165
|
width: number;
|
|
1136
1166
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
1137
1167
|
id: import("../internals/index.js").AxisId;
|
|
1168
|
+
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
1138
1169
|
dataKey?: string | undefined;
|
|
1139
1170
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1140
|
-
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
1141
1171
|
hideTooltip?: boolean | undefined;
|
|
1142
1172
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
1143
1173
|
min: number;
|
|
@@ -1157,6 +1187,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1157
1187
|
tickLabelStyle?: ChartsTextProps["style"];
|
|
1158
1188
|
labelStyle?: ChartsTextProps["style"];
|
|
1159
1189
|
tickLabelInterval?: "auto" | ((value: any, index: number) => boolean);
|
|
1190
|
+
tickSpacing?: number;
|
|
1160
1191
|
label?: string;
|
|
1161
1192
|
tickSize: number;
|
|
1162
1193
|
classes?: Partial<import("../index.js").ChartsAxisClasses>;
|
|
@@ -1174,9 +1205,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1174
1205
|
width: number;
|
|
1175
1206
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
1176
1207
|
id: import("../internals/index.js").AxisId;
|
|
1208
|
+
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
1177
1209
|
dataKey?: string | undefined;
|
|
1178
1210
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1179
|
-
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
1180
1211
|
hideTooltip?: boolean | undefined;
|
|
1181
1212
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
1182
1213
|
min: number;
|
|
@@ -1196,6 +1227,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1196
1227
|
tickLabelStyle?: ChartsTextProps["style"];
|
|
1197
1228
|
labelStyle?: ChartsTextProps["style"];
|
|
1198
1229
|
tickLabelInterval?: "auto" | ((value: any, index: number) => boolean);
|
|
1230
|
+
tickSpacing?: number;
|
|
1199
1231
|
label?: string;
|
|
1200
1232
|
tickSize: number;
|
|
1201
1233
|
classes?: Partial<import("../index.js").ChartsAxisClasses>;
|
|
@@ -1213,9 +1245,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1213
1245
|
width: number;
|
|
1214
1246
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
1215
1247
|
id: import("../internals/index.js").AxisId;
|
|
1248
|
+
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
1216
1249
|
dataKey?: string | undefined;
|
|
1217
1250
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1218
|
-
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
1219
1251
|
hideTooltip?: boolean | undefined;
|
|
1220
1252
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
1221
1253
|
min: number;
|
|
@@ -1235,6 +1267,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1235
1267
|
tickLabelStyle?: ChartsTextProps["style"];
|
|
1236
1268
|
labelStyle?: ChartsTextProps["style"];
|
|
1237
1269
|
tickLabelInterval?: "auto" | ((value: any, index: number) => boolean);
|
|
1270
|
+
tickSpacing?: number;
|
|
1238
1271
|
label?: string;
|
|
1239
1272
|
tickSize: number;
|
|
1240
1273
|
classes?: Partial<import("../index.js").ChartsAxisClasses>;
|
|
@@ -1252,9 +1285,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1252
1285
|
width: number;
|
|
1253
1286
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
1254
1287
|
id: import("../internals/index.js").AxisId;
|
|
1288
|
+
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
1255
1289
|
dataKey?: string | undefined;
|
|
1256
1290
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1257
|
-
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
1258
1291
|
hideTooltip?: boolean | undefined;
|
|
1259
1292
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
1260
1293
|
min: number;
|
|
@@ -1274,6 +1307,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1274
1307
|
tickLabelStyle?: ChartsTextProps["style"];
|
|
1275
1308
|
labelStyle?: ChartsTextProps["style"];
|
|
1276
1309
|
tickLabelInterval?: "auto" | ((value: any, index: number) => boolean);
|
|
1310
|
+
tickSpacing?: number;
|
|
1277
1311
|
label?: string;
|
|
1278
1312
|
tickSize: number;
|
|
1279
1313
|
classes?: Partial<import("../index.js").ChartsAxisClasses>;
|
|
@@ -1291,9 +1325,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1291
1325
|
width: number;
|
|
1292
1326
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
1293
1327
|
id: import("../internals/index.js").AxisId;
|
|
1328
|
+
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
1294
1329
|
dataKey?: string | undefined;
|
|
1295
1330
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1296
|
-
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
1297
1331
|
hideTooltip?: boolean | undefined;
|
|
1298
1332
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
1299
1333
|
min: number;
|
|
@@ -1313,6 +1347,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1313
1347
|
tickLabelStyle?: ChartsTextProps["style"];
|
|
1314
1348
|
labelStyle?: ChartsTextProps["style"];
|
|
1315
1349
|
tickLabelInterval?: "auto" | ((value: any, index: number) => boolean);
|
|
1350
|
+
tickSpacing?: number;
|
|
1316
1351
|
label?: string;
|
|
1317
1352
|
tickSize: number;
|
|
1318
1353
|
classes?: Partial<import("../index.js").ChartsAxisClasses>;
|
|
@@ -1330,9 +1365,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1330
1365
|
width: number;
|
|
1331
1366
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
1332
1367
|
id: import("../internals/index.js").AxisId;
|
|
1368
|
+
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
1333
1369
|
dataKey?: string | undefined;
|
|
1334
1370
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1335
|
-
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
1336
1371
|
hideTooltip?: boolean | undefined;
|
|
1337
1372
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
1338
1373
|
min: number;
|
|
@@ -1352,6 +1387,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1352
1387
|
tickLabelStyle?: ChartsTextProps["style"];
|
|
1353
1388
|
labelStyle?: ChartsTextProps["style"];
|
|
1354
1389
|
tickLabelInterval?: "auto" | ((value: any, index: number) => boolean);
|
|
1390
|
+
tickSpacing?: number;
|
|
1355
1391
|
label?: string;
|
|
1356
1392
|
tickSize: number;
|
|
1357
1393
|
classes?: Partial<import("../index.js").ChartsAxisClasses>;
|
|
@@ -1369,9 +1405,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1369
1405
|
width: number;
|
|
1370
1406
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
1371
1407
|
id: import("../internals/index.js").AxisId;
|
|
1408
|
+
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
1372
1409
|
dataKey?: string | undefined;
|
|
1373
1410
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1374
|
-
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
1375
1411
|
hideTooltip?: boolean | undefined;
|
|
1376
1412
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
1377
1413
|
min: number;
|
|
@@ -1391,6 +1427,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1391
1427
|
tickLabelStyle?: ChartsTextProps["style"];
|
|
1392
1428
|
labelStyle?: ChartsTextProps["style"];
|
|
1393
1429
|
tickLabelInterval?: "auto" | ((value: any, index: number) => boolean);
|
|
1430
|
+
tickSpacing?: number;
|
|
1394
1431
|
label?: string;
|
|
1395
1432
|
tickSize: number;
|
|
1396
1433
|
classes?: Partial<import("../index.js").ChartsAxisClasses>;
|
|
@@ -1408,9 +1445,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1408
1445
|
width: number;
|
|
1409
1446
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
1410
1447
|
id: import("../internals/index.js").AxisId;
|
|
1448
|
+
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
1411
1449
|
dataKey?: string | undefined;
|
|
1412
1450
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1413
|
-
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
1414
1451
|
hideTooltip?: boolean | undefined;
|
|
1415
1452
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
1416
1453
|
min: number;
|
|
@@ -1429,6 +1466,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1429
1466
|
tickLabelStyle?: ChartsTextProps["style"];
|
|
1430
1467
|
labelStyle?: ChartsTextProps["style"];
|
|
1431
1468
|
tickLabelInterval?: "auto" | ((value: any, index: number) => boolean);
|
|
1469
|
+
tickSpacing?: number;
|
|
1432
1470
|
label?: string;
|
|
1433
1471
|
tickSize: number;
|
|
1434
1472
|
classes?: Partial<import("../index.js").ChartsAxisClasses>;
|
|
@@ -1446,9 +1484,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1446
1484
|
width: number;
|
|
1447
1485
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
1448
1486
|
id: import("../internals/index.js").AxisId;
|
|
1487
|
+
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
1449
1488
|
dataKey?: string | undefined;
|
|
1450
1489
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1451
|
-
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
1452
1490
|
hideTooltip?: boolean | undefined;
|
|
1453
1491
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
1454
1492
|
min: number;
|
|
@@ -1467,6 +1505,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1467
1505
|
tickLabelStyle?: ChartsTextProps["style"];
|
|
1468
1506
|
labelStyle?: ChartsTextProps["style"];
|
|
1469
1507
|
tickLabelInterval?: "auto" | ((value: any, index: number) => boolean);
|
|
1508
|
+
tickSpacing?: number;
|
|
1470
1509
|
label?: string;
|
|
1471
1510
|
tickSize: number;
|
|
1472
1511
|
classes?: Partial<import("../index.js").ChartsAxisClasses>;
|
|
@@ -1484,9 +1523,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1484
1523
|
width: number;
|
|
1485
1524
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
1486
1525
|
id: import("../internals/index.js").AxisId;
|
|
1526
|
+
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
1487
1527
|
dataKey?: string | undefined;
|
|
1488
1528
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1489
|
-
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
1490
1529
|
hideTooltip?: boolean | undefined;
|
|
1491
1530
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
1492
1531
|
min: number;
|
|
@@ -1505,6 +1544,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1505
1544
|
tickLabelStyle?: ChartsTextProps["style"];
|
|
1506
1545
|
labelStyle?: ChartsTextProps["style"];
|
|
1507
1546
|
tickLabelInterval?: "auto" | ((value: any, index: number) => boolean);
|
|
1547
|
+
tickSpacing?: number;
|
|
1508
1548
|
label?: string;
|
|
1509
1549
|
tickSize: number;
|
|
1510
1550
|
classes?: Partial<import("../index.js").ChartsAxisClasses>;
|
|
@@ -1522,9 +1562,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1522
1562
|
width: number;
|
|
1523
1563
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
1524
1564
|
id: import("../internals/index.js").AxisId;
|
|
1565
|
+
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
1525
1566
|
dataKey?: string | undefined;
|
|
1526
1567
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1527
|
-
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
1528
1568
|
hideTooltip?: boolean | undefined;
|
|
1529
1569
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
1530
1570
|
min: number;
|
|
@@ -1543,6 +1583,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1543
1583
|
tickLabelStyle?: ChartsTextProps["style"];
|
|
1544
1584
|
labelStyle?: ChartsTextProps["style"];
|
|
1545
1585
|
tickLabelInterval?: "auto" | ((value: any, index: number) => boolean);
|
|
1586
|
+
tickSpacing?: number;
|
|
1546
1587
|
label?: string;
|
|
1547
1588
|
tickSize: number;
|
|
1548
1589
|
classes?: Partial<import("../index.js").ChartsAxisClasses>;
|
|
@@ -1560,9 +1601,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1560
1601
|
width: number;
|
|
1561
1602
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
1562
1603
|
id: import("../internals/index.js").AxisId;
|
|
1604
|
+
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
1563
1605
|
dataKey?: string | undefined;
|
|
1564
1606
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1565
|
-
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
1566
1607
|
hideTooltip?: boolean | undefined;
|
|
1567
1608
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
1568
1609
|
min: number;
|
|
@@ -1581,6 +1622,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1581
1622
|
tickLabelStyle?: ChartsTextProps["style"];
|
|
1582
1623
|
labelStyle?: ChartsTextProps["style"];
|
|
1583
1624
|
tickLabelInterval?: "auto" | ((value: any, index: number) => boolean);
|
|
1625
|
+
tickSpacing?: number;
|
|
1584
1626
|
label?: string;
|
|
1585
1627
|
tickSize: number;
|
|
1586
1628
|
classes?: Partial<import("../index.js").ChartsAxisClasses>;
|
|
@@ -1598,9 +1640,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1598
1640
|
width: number;
|
|
1599
1641
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
1600
1642
|
id: import("../internals/index.js").AxisId;
|
|
1643
|
+
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
1601
1644
|
dataKey?: string | undefined;
|
|
1602
1645
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1603
|
-
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
1604
1646
|
hideTooltip?: boolean | undefined;
|
|
1605
1647
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
1606
1648
|
min: number;
|
|
@@ -1619,6 +1661,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1619
1661
|
tickLabelStyle?: ChartsTextProps["style"];
|
|
1620
1662
|
labelStyle?: ChartsTextProps["style"];
|
|
1621
1663
|
tickLabelInterval?: "auto" | ((value: any, index: number) => boolean);
|
|
1664
|
+
tickSpacing?: number;
|
|
1622
1665
|
label?: string;
|
|
1623
1666
|
tickSize: number;
|
|
1624
1667
|
classes?: Partial<import("../index.js").ChartsAxisClasses>;
|
|
@@ -1636,9 +1679,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1636
1679
|
width: number;
|
|
1637
1680
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
1638
1681
|
id: import("../internals/index.js").AxisId;
|
|
1682
|
+
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
1639
1683
|
dataKey?: string | undefined;
|
|
1640
1684
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1641
|
-
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
1642
1685
|
hideTooltip?: boolean | undefined;
|
|
1643
1686
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
1644
1687
|
min: number;
|
|
@@ -1657,6 +1700,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1657
1700
|
tickLabelStyle?: ChartsTextProps["style"];
|
|
1658
1701
|
labelStyle?: ChartsTextProps["style"];
|
|
1659
1702
|
tickLabelInterval?: "auto" | ((value: any, index: number) => boolean);
|
|
1703
|
+
tickSpacing?: number;
|
|
1660
1704
|
label?: string;
|
|
1661
1705
|
tickSize: number;
|
|
1662
1706
|
classes?: Partial<import("../index.js").ChartsAxisClasses>;
|
|
@@ -1674,9 +1718,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1674
1718
|
width: number;
|
|
1675
1719
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
1676
1720
|
id: import("../internals/index.js").AxisId;
|
|
1721
|
+
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
1677
1722
|
dataKey?: string | undefined;
|
|
1678
1723
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1679
|
-
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
1680
1724
|
hideTooltip?: boolean | undefined;
|
|
1681
1725
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
1682
1726
|
min: number;
|
|
@@ -1695,6 +1739,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1695
1739
|
tickLabelStyle?: ChartsTextProps["style"];
|
|
1696
1740
|
labelStyle?: ChartsTextProps["style"];
|
|
1697
1741
|
tickLabelInterval?: "auto" | ((value: any, index: number) => boolean);
|
|
1742
|
+
tickSpacing?: number;
|
|
1698
1743
|
label?: string;
|
|
1699
1744
|
tickSize: number;
|
|
1700
1745
|
classes?: Partial<import("../index.js").ChartsAxisClasses>;
|
|
@@ -1712,9 +1757,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1712
1757
|
width: number;
|
|
1713
1758
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
1714
1759
|
id: import("../internals/index.js").AxisId;
|
|
1760
|
+
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
1715
1761
|
dataKey?: string | undefined;
|
|
1716
1762
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1717
|
-
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
1718
1763
|
hideTooltip?: boolean | undefined;
|
|
1719
1764
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
1720
1765
|
min: number;
|
|
@@ -1733,6 +1778,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1733
1778
|
tickLabelStyle?: ChartsTextProps["style"];
|
|
1734
1779
|
labelStyle?: ChartsTextProps["style"];
|
|
1735
1780
|
tickLabelInterval?: "auto" | ((value: any, index: number) => boolean);
|
|
1781
|
+
tickSpacing?: number;
|
|
1736
1782
|
label?: string;
|
|
1737
1783
|
tickSize: number;
|
|
1738
1784
|
classes?: Partial<import("../index.js").ChartsAxisClasses>;
|
|
@@ -1750,9 +1796,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1750
1796
|
width: number;
|
|
1751
1797
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
1752
1798
|
id: import("../internals/index.js").AxisId;
|
|
1799
|
+
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
1753
1800
|
dataKey?: string | undefined;
|
|
1754
1801
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1755
|
-
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
1756
1802
|
hideTooltip?: boolean | undefined;
|
|
1757
1803
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
1758
1804
|
min: number;
|
|
@@ -1771,6 +1817,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1771
1817
|
tickLabelStyle?: ChartsTextProps["style"];
|
|
1772
1818
|
labelStyle?: ChartsTextProps["style"];
|
|
1773
1819
|
tickLabelInterval?: "auto" | ((value: any, index: number) => boolean);
|
|
1820
|
+
tickSpacing?: number;
|
|
1774
1821
|
label?: string;
|
|
1775
1822
|
tickSize: number;
|
|
1776
1823
|
classes?: Partial<import("../index.js").ChartsAxisClasses>;
|
|
@@ -1788,9 +1835,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1788
1835
|
width: number;
|
|
1789
1836
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
1790
1837
|
id: import("../internals/index.js").AxisId;
|
|
1838
|
+
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
1791
1839
|
dataKey?: string | undefined;
|
|
1792
1840
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1793
|
-
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
1794
1841
|
hideTooltip?: boolean | undefined;
|
|
1795
1842
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
1796
1843
|
min: number;
|
|
@@ -1809,6 +1856,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1809
1856
|
tickLabelStyle?: ChartsTextProps["style"];
|
|
1810
1857
|
labelStyle?: ChartsTextProps["style"];
|
|
1811
1858
|
tickLabelInterval?: "auto" | ((value: any, index: number) => boolean);
|
|
1859
|
+
tickSpacing?: number;
|
|
1812
1860
|
label?: string;
|
|
1813
1861
|
tickSize: number;
|
|
1814
1862
|
classes?: Partial<import("../index.js").ChartsAxisClasses>;
|
|
@@ -1826,9 +1874,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1826
1874
|
width: number;
|
|
1827
1875
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
1828
1876
|
id: import("../internals/index.js").AxisId;
|
|
1877
|
+
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
1829
1878
|
dataKey?: string | undefined;
|
|
1830
1879
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1831
|
-
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
1832
1880
|
hideTooltip?: boolean | undefined;
|
|
1833
1881
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
1834
1882
|
min: number;
|
|
@@ -1847,6 +1895,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1847
1895
|
tickLabelStyle?: ChartsTextProps["style"];
|
|
1848
1896
|
labelStyle?: ChartsTextProps["style"];
|
|
1849
1897
|
tickLabelInterval?: "auto" | ((value: any, index: number) => boolean);
|
|
1898
|
+
tickSpacing?: number;
|
|
1850
1899
|
label?: string;
|
|
1851
1900
|
tickSize: number;
|
|
1852
1901
|
classes?: Partial<import("../index.js").ChartsAxisClasses>;
|
|
@@ -1864,9 +1913,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1864
1913
|
width: number;
|
|
1865
1914
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
1866
1915
|
id: import("../internals/index.js").AxisId;
|
|
1916
|
+
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
1867
1917
|
dataKey?: string | undefined;
|
|
1868
1918
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1869
|
-
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
1870
1919
|
hideTooltip?: boolean | undefined;
|
|
1871
1920
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
1872
1921
|
min: number;
|
|
@@ -1885,6 +1934,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1885
1934
|
tickLabelStyle?: ChartsTextProps["style"];
|
|
1886
1935
|
labelStyle?: ChartsTextProps["style"];
|
|
1887
1936
|
tickLabelInterval?: "auto" | ((value: any, index: number) => boolean);
|
|
1937
|
+
tickSpacing?: number;
|
|
1888
1938
|
label?: string;
|
|
1889
1939
|
tickSize: number;
|
|
1890
1940
|
classes?: Partial<import("../index.js").ChartsAxisClasses>;
|
|
@@ -1902,9 +1952,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1902
1952
|
width: number;
|
|
1903
1953
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
1904
1954
|
id: import("../internals/index.js").AxisId;
|
|
1955
|
+
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
1905
1956
|
dataKey?: string | undefined;
|
|
1906
1957
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1907
|
-
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
1908
1958
|
hideTooltip?: boolean | undefined;
|
|
1909
1959
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
1910
1960
|
min: number;
|
|
@@ -1923,6 +1973,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1923
1973
|
tickLabelStyle?: ChartsTextProps["style"];
|
|
1924
1974
|
labelStyle?: ChartsTextProps["style"];
|
|
1925
1975
|
tickLabelInterval?: "auto" | ((value: any, index: number) => boolean);
|
|
1976
|
+
tickSpacing?: number;
|
|
1926
1977
|
label?: string;
|
|
1927
1978
|
tickSize: number;
|
|
1928
1979
|
classes?: Partial<import("../index.js").ChartsAxisClasses>;
|
|
@@ -1940,9 +1991,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1940
1991
|
width: number;
|
|
1941
1992
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
1942
1993
|
id: import("../internals/index.js").AxisId;
|
|
1994
|
+
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
1943
1995
|
dataKey?: string | undefined;
|
|
1944
1996
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1945
|
-
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
1946
1997
|
hideTooltip?: boolean | undefined;
|
|
1947
1998
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
1948
1999
|
min: number;
|
|
@@ -1961,6 +2012,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1961
2012
|
tickLabelStyle?: ChartsTextProps["style"];
|
|
1962
2013
|
labelStyle?: ChartsTextProps["style"];
|
|
1963
2014
|
tickLabelInterval?: "auto" | ((value: any, index: number) => boolean);
|
|
2015
|
+
tickSpacing?: number;
|
|
1964
2016
|
label?: string;
|
|
1965
2017
|
tickSize: number;
|
|
1966
2018
|
classes?: Partial<import("../index.js").ChartsAxisClasses>;
|
|
@@ -1978,9 +2030,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1978
2030
|
width: number;
|
|
1979
2031
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
1980
2032
|
id: import("../internals/index.js").AxisId;
|
|
2033
|
+
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
1981
2034
|
dataKey?: string | undefined;
|
|
1982
2035
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1983
|
-
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
1984
2036
|
hideTooltip?: boolean | undefined;
|
|
1985
2037
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
1986
2038
|
min: number;
|
|
@@ -1999,6 +2051,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1999
2051
|
tickLabelStyle?: ChartsTextProps["style"];
|
|
2000
2052
|
labelStyle?: ChartsTextProps["style"];
|
|
2001
2053
|
tickLabelInterval?: "auto" | ((value: any, index: number) => boolean);
|
|
2054
|
+
tickSpacing?: number;
|
|
2002
2055
|
label?: string;
|
|
2003
2056
|
tickSize: number;
|
|
2004
2057
|
classes?: Partial<import("../index.js").ChartsAxisClasses>;
|
|
@@ -2016,9 +2069,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2016
2069
|
width: number;
|
|
2017
2070
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
2018
2071
|
id: import("../internals/index.js").AxisId;
|
|
2072
|
+
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2019
2073
|
dataKey?: string | undefined;
|
|
2020
2074
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2021
|
-
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2022
2075
|
hideTooltip?: boolean | undefined;
|
|
2023
2076
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
2024
2077
|
min: number;
|
|
@@ -2037,6 +2090,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2037
2090
|
tickLabelStyle?: ChartsTextProps["style"];
|
|
2038
2091
|
labelStyle?: ChartsTextProps["style"];
|
|
2039
2092
|
tickLabelInterval?: "auto" | ((value: any, index: number) => boolean);
|
|
2093
|
+
tickSpacing?: number;
|
|
2040
2094
|
label?: string;
|
|
2041
2095
|
tickSize: number;
|
|
2042
2096
|
classes?: Partial<import("../index.js").ChartsAxisClasses>;
|
|
@@ -2054,9 +2108,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2054
2108
|
width: number;
|
|
2055
2109
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
2056
2110
|
id: import("../internals/index.js").AxisId;
|
|
2111
|
+
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2057
2112
|
dataKey?: string | undefined;
|
|
2058
2113
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2059
|
-
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2060
2114
|
hideTooltip?: boolean | undefined;
|
|
2061
2115
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
2062
2116
|
min: number;
|
|
@@ -2075,6 +2129,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2075
2129
|
tickLabelStyle?: ChartsTextProps["style"];
|
|
2076
2130
|
labelStyle?: ChartsTextProps["style"];
|
|
2077
2131
|
tickLabelInterval?: "auto" | ((value: any, index: number) => boolean);
|
|
2132
|
+
tickSpacing?: number;
|
|
2078
2133
|
label?: string;
|
|
2079
2134
|
tickSize: number;
|
|
2080
2135
|
classes?: Partial<import("../index.js").ChartsAxisClasses>;
|
|
@@ -2092,9 +2147,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2092
2147
|
width: number;
|
|
2093
2148
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
2094
2149
|
id: import("../internals/index.js").AxisId;
|
|
2150
|
+
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2095
2151
|
dataKey?: string | undefined;
|
|
2096
2152
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2097
|
-
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2098
2153
|
hideTooltip?: boolean | undefined;
|
|
2099
2154
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
2100
2155
|
min: number;
|
|
@@ -2113,6 +2168,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2113
2168
|
tickLabelStyle?: ChartsTextProps["style"];
|
|
2114
2169
|
labelStyle?: ChartsTextProps["style"];
|
|
2115
2170
|
tickLabelInterval?: "auto" | ((value: any, index: number) => boolean);
|
|
2171
|
+
tickSpacing?: number;
|
|
2116
2172
|
label?: string;
|
|
2117
2173
|
tickSize: number;
|
|
2118
2174
|
classes?: Partial<import("../index.js").ChartsAxisClasses>;
|
|
@@ -2130,9 +2186,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2130
2186
|
width: number;
|
|
2131
2187
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
2132
2188
|
id: import("../internals/index.js").AxisId;
|
|
2189
|
+
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2133
2190
|
dataKey?: string | undefined;
|
|
2134
2191
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2135
|
-
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2136
2192
|
hideTooltip?: boolean | undefined;
|
|
2137
2193
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
2138
2194
|
min: number;
|
|
@@ -2151,6 +2207,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2151
2207
|
tickLabelStyle?: ChartsTextProps["style"];
|
|
2152
2208
|
labelStyle?: ChartsTextProps["style"];
|
|
2153
2209
|
tickLabelInterval?: "auto" | ((value: any, index: number) => boolean);
|
|
2210
|
+
tickSpacing?: number;
|
|
2154
2211
|
label?: string;
|
|
2155
2212
|
tickSize: number;
|
|
2156
2213
|
classes?: Partial<import("../index.js").ChartsAxisClasses>;
|
|
@@ -2168,9 +2225,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2168
2225
|
width: number;
|
|
2169
2226
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
2170
2227
|
id: import("../internals/index.js").AxisId;
|
|
2228
|
+
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2171
2229
|
dataKey?: string | undefined;
|
|
2172
2230
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2173
|
-
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2174
2231
|
hideTooltip?: boolean | undefined;
|
|
2175
2232
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
2176
2233
|
min: number;
|
|
@@ -2189,6 +2246,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2189
2246
|
tickLabelStyle?: ChartsTextProps["style"];
|
|
2190
2247
|
labelStyle?: ChartsTextProps["style"];
|
|
2191
2248
|
tickLabelInterval?: "auto" | ((value: any, index: number) => boolean);
|
|
2249
|
+
tickSpacing?: number;
|
|
2192
2250
|
label?: string;
|
|
2193
2251
|
tickSize: number;
|
|
2194
2252
|
classes?: Partial<import("../index.js").ChartsAxisClasses>;
|
|
@@ -2206,9 +2264,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2206
2264
|
width: number;
|
|
2207
2265
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
2208
2266
|
id: import("../internals/index.js").AxisId;
|
|
2267
|
+
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2209
2268
|
dataKey?: string | undefined;
|
|
2210
2269
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2211
|
-
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2212
2270
|
hideTooltip?: boolean | undefined;
|
|
2213
2271
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
2214
2272
|
min: number;
|
|
@@ -2227,6 +2285,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2227
2285
|
tickLabelStyle?: ChartsTextProps["style"];
|
|
2228
2286
|
labelStyle?: ChartsTextProps["style"];
|
|
2229
2287
|
tickLabelInterval?: "auto" | ((value: any, index: number) => boolean);
|
|
2288
|
+
tickSpacing?: number;
|
|
2230
2289
|
label?: string;
|
|
2231
2290
|
tickSize: number;
|
|
2232
2291
|
classes?: Partial<import("../index.js").ChartsAxisClasses>;
|
|
@@ -2244,9 +2303,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2244
2303
|
width: number;
|
|
2245
2304
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
2246
2305
|
id: import("../internals/index.js").AxisId;
|
|
2306
|
+
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2247
2307
|
dataKey?: string | undefined;
|
|
2248
2308
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2249
|
-
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2250
2309
|
hideTooltip?: boolean | undefined;
|
|
2251
2310
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
2252
2311
|
min: number;
|
|
@@ -2265,6 +2324,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2265
2324
|
tickLabelStyle?: ChartsTextProps["style"];
|
|
2266
2325
|
labelStyle?: ChartsTextProps["style"];
|
|
2267
2326
|
tickLabelInterval?: "auto" | ((value: any, index: number) => boolean);
|
|
2327
|
+
tickSpacing?: number;
|
|
2268
2328
|
label?: string;
|
|
2269
2329
|
tickSize: number;
|
|
2270
2330
|
classes?: Partial<import("../index.js").ChartsAxisClasses>;
|
|
@@ -2282,9 +2342,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2282
2342
|
width: number;
|
|
2283
2343
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
2284
2344
|
id: import("../internals/index.js").AxisId;
|
|
2345
|
+
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2285
2346
|
dataKey?: string | undefined;
|
|
2286
2347
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2287
|
-
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2288
2348
|
hideTooltip?: boolean | undefined;
|
|
2289
2349
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
2290
2350
|
min: number;
|
|
@@ -2303,6 +2363,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2303
2363
|
tickLabelStyle?: ChartsTextProps["style"];
|
|
2304
2364
|
labelStyle?: ChartsTextProps["style"];
|
|
2305
2365
|
tickLabelInterval?: "auto" | ((value: any, index: number) => boolean);
|
|
2366
|
+
tickSpacing?: number;
|
|
2306
2367
|
label?: string;
|
|
2307
2368
|
tickSize: number;
|
|
2308
2369
|
classes?: Partial<import("../index.js").ChartsAxisClasses>;
|
|
@@ -2320,9 +2381,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2320
2381
|
width: number;
|
|
2321
2382
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
2322
2383
|
id: import("../internals/index.js").AxisId;
|
|
2384
|
+
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2323
2385
|
dataKey?: string | undefined;
|
|
2324
2386
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2325
|
-
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2326
2387
|
hideTooltip?: boolean | undefined;
|
|
2327
2388
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
2328
2389
|
min: number;
|
|
@@ -2341,6 +2402,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2341
2402
|
tickLabelStyle?: ChartsTextProps["style"];
|
|
2342
2403
|
labelStyle?: ChartsTextProps["style"];
|
|
2343
2404
|
tickLabelInterval?: "auto" | ((value: any, index: number) => boolean);
|
|
2405
|
+
tickSpacing?: number;
|
|
2344
2406
|
label?: string;
|
|
2345
2407
|
tickSize: number;
|
|
2346
2408
|
classes?: Partial<import("../index.js").ChartsAxisClasses>;
|
|
@@ -2358,9 +2420,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2358
2420
|
width: number;
|
|
2359
2421
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
2360
2422
|
id: import("../internals/index.js").AxisId;
|
|
2423
|
+
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2361
2424
|
dataKey?: string | undefined;
|
|
2362
2425
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2363
|
-
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2364
2426
|
hideTooltip?: boolean | undefined;
|
|
2365
2427
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
2366
2428
|
min: number;
|
|
@@ -2379,6 +2441,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2379
2441
|
tickLabelStyle?: ChartsTextProps["style"];
|
|
2380
2442
|
labelStyle?: ChartsTextProps["style"];
|
|
2381
2443
|
tickLabelInterval?: "auto" | ((value: any, index: number) => boolean);
|
|
2444
|
+
tickSpacing?: number;
|
|
2382
2445
|
label?: string;
|
|
2383
2446
|
tickSize: number;
|
|
2384
2447
|
classes?: Partial<import("../index.js").ChartsAxisClasses>;
|
|
@@ -2396,9 +2459,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2396
2459
|
width: number;
|
|
2397
2460
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
2398
2461
|
id: import("../internals/index.js").AxisId;
|
|
2462
|
+
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2399
2463
|
dataKey?: string | undefined;
|
|
2400
2464
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2401
|
-
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2402
2465
|
hideTooltip?: boolean | undefined;
|
|
2403
2466
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
2404
2467
|
min: number;
|
|
@@ -2417,6 +2480,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2417
2480
|
tickLabelStyle?: ChartsTextProps["style"];
|
|
2418
2481
|
labelStyle?: ChartsTextProps["style"];
|
|
2419
2482
|
tickLabelInterval?: "auto" | ((value: any, index: number) => boolean);
|
|
2483
|
+
tickSpacing?: number;
|
|
2420
2484
|
label?: string;
|
|
2421
2485
|
tickSize: number;
|
|
2422
2486
|
classes?: Partial<import("../index.js").ChartsAxisClasses>;
|
|
@@ -2434,9 +2498,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2434
2498
|
width: number;
|
|
2435
2499
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
2436
2500
|
id: import("../internals/index.js").AxisId;
|
|
2501
|
+
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
2437
2502
|
dataKey?: string | undefined;
|
|
2438
2503
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2439
|
-
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
2440
2504
|
hideTooltip?: boolean | undefined;
|
|
2441
2505
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
2442
2506
|
min: number;
|
|
@@ -2458,6 +2522,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2458
2522
|
tickLabelStyle?: ChartsTextProps["style"];
|
|
2459
2523
|
labelStyle?: ChartsTextProps["style"];
|
|
2460
2524
|
tickLabelInterval?: "auto" | ((value: any, index: number) => boolean);
|
|
2525
|
+
tickSpacing?: number;
|
|
2461
2526
|
label?: string;
|
|
2462
2527
|
tickSize: number;
|
|
2463
2528
|
classes?: Partial<import("../index.js").ChartsAxisClasses>;
|
|
@@ -2475,9 +2540,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2475
2540
|
width: number;
|
|
2476
2541
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
2477
2542
|
id: import("../internals/index.js").AxisId;
|
|
2543
|
+
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
2478
2544
|
dataKey?: string | undefined;
|
|
2479
2545
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2480
|
-
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
2481
2546
|
hideTooltip?: boolean | undefined;
|
|
2482
2547
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
2483
2548
|
min: number;
|
|
@@ -2499,6 +2564,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2499
2564
|
tickLabelStyle?: ChartsTextProps["style"];
|
|
2500
2565
|
labelStyle?: ChartsTextProps["style"];
|
|
2501
2566
|
tickLabelInterval?: "auto" | ((value: any, index: number) => boolean);
|
|
2567
|
+
tickSpacing?: number;
|
|
2502
2568
|
label?: string;
|
|
2503
2569
|
tickSize: number;
|
|
2504
2570
|
classes?: Partial<import("../index.js").ChartsAxisClasses>;
|
|
@@ -2516,9 +2582,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2516
2582
|
width: number;
|
|
2517
2583
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
2518
2584
|
id: import("../internals/index.js").AxisId;
|
|
2585
|
+
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
2519
2586
|
dataKey?: string | undefined;
|
|
2520
2587
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2521
|
-
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
2522
2588
|
hideTooltip?: boolean | undefined;
|
|
2523
2589
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
2524
2590
|
min: number;
|
|
@@ -2540,6 +2606,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2540
2606
|
tickLabelStyle?: ChartsTextProps["style"];
|
|
2541
2607
|
labelStyle?: ChartsTextProps["style"];
|
|
2542
2608
|
tickLabelInterval?: "auto" | ((value: any, index: number) => boolean);
|
|
2609
|
+
tickSpacing?: number;
|
|
2543
2610
|
label?: string;
|
|
2544
2611
|
tickSize: number;
|
|
2545
2612
|
classes?: Partial<import("../index.js").ChartsAxisClasses>;
|
|
@@ -2557,9 +2624,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2557
2624
|
width: number;
|
|
2558
2625
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
2559
2626
|
id: import("../internals/index.js").AxisId;
|
|
2627
|
+
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
2560
2628
|
dataKey?: string | undefined;
|
|
2561
2629
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2562
|
-
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
2563
2630
|
hideTooltip?: boolean | undefined;
|
|
2564
2631
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
2565
2632
|
min: number;
|
|
@@ -2581,6 +2648,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2581
2648
|
tickLabelStyle?: ChartsTextProps["style"];
|
|
2582
2649
|
labelStyle?: ChartsTextProps["style"];
|
|
2583
2650
|
tickLabelInterval?: "auto" | ((value: any, index: number) => boolean);
|
|
2651
|
+
tickSpacing?: number;
|
|
2584
2652
|
label?: string;
|
|
2585
2653
|
tickSize: number;
|
|
2586
2654
|
classes?: Partial<import("../index.js").ChartsAxisClasses>;
|
|
@@ -2598,9 +2666,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2598
2666
|
width: number;
|
|
2599
2667
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
2600
2668
|
id: import("../internals/index.js").AxisId;
|
|
2669
|
+
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
2601
2670
|
dataKey?: string | undefined;
|
|
2602
2671
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2603
|
-
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
2604
2672
|
hideTooltip?: boolean | undefined;
|
|
2605
2673
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
2606
2674
|
min: number;
|
|
@@ -2622,6 +2690,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2622
2690
|
tickLabelStyle?: ChartsTextProps["style"];
|
|
2623
2691
|
labelStyle?: ChartsTextProps["style"];
|
|
2624
2692
|
tickLabelInterval?: "auto" | ((value: any, index: number) => boolean);
|
|
2693
|
+
tickSpacing?: number;
|
|
2625
2694
|
label?: string;
|
|
2626
2695
|
tickSize: number;
|
|
2627
2696
|
classes?: Partial<import("../index.js").ChartsAxisClasses>;
|
|
@@ -2639,9 +2708,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2639
2708
|
width: number;
|
|
2640
2709
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
2641
2710
|
id: import("../internals/index.js").AxisId;
|
|
2711
|
+
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
2642
2712
|
dataKey?: string | undefined;
|
|
2643
2713
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2644
|
-
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
2645
2714
|
hideTooltip?: boolean | undefined;
|
|
2646
2715
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
2647
2716
|
min: number;
|
|
@@ -2663,6 +2732,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2663
2732
|
tickLabelStyle?: ChartsTextProps["style"];
|
|
2664
2733
|
labelStyle?: ChartsTextProps["style"];
|
|
2665
2734
|
tickLabelInterval?: "auto" | ((value: any, index: number) => boolean);
|
|
2735
|
+
tickSpacing?: number;
|
|
2666
2736
|
label?: string;
|
|
2667
2737
|
tickSize: number;
|
|
2668
2738
|
classes?: Partial<import("../index.js").ChartsAxisClasses>;
|
|
@@ -2680,9 +2750,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2680
2750
|
width: number;
|
|
2681
2751
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
2682
2752
|
id: import("../internals/index.js").AxisId;
|
|
2753
|
+
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
2683
2754
|
dataKey?: string | undefined;
|
|
2684
2755
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2685
|
-
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
2686
2756
|
hideTooltip?: boolean | undefined;
|
|
2687
2757
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
2688
2758
|
min: number;
|
|
@@ -2704,6 +2774,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2704
2774
|
tickLabelStyle?: ChartsTextProps["style"];
|
|
2705
2775
|
labelStyle?: ChartsTextProps["style"];
|
|
2706
2776
|
tickLabelInterval?: "auto" | ((value: any, index: number) => boolean);
|
|
2777
|
+
tickSpacing?: number;
|
|
2707
2778
|
label?: string;
|
|
2708
2779
|
tickSize: number;
|
|
2709
2780
|
classes?: Partial<import("../index.js").ChartsAxisClasses>;
|
|
@@ -2721,9 +2792,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2721
2792
|
width: number;
|
|
2722
2793
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
2723
2794
|
id: import("../internals/index.js").AxisId;
|
|
2795
|
+
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
2724
2796
|
dataKey?: string | undefined;
|
|
2725
2797
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2726
|
-
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
2727
2798
|
hideTooltip?: boolean | undefined;
|
|
2728
2799
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
2729
2800
|
min: number;
|
|
@@ -2745,6 +2816,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2745
2816
|
tickLabelStyle?: ChartsTextProps["style"];
|
|
2746
2817
|
labelStyle?: ChartsTextProps["style"];
|
|
2747
2818
|
tickLabelInterval?: "auto" | ((value: any, index: number) => boolean);
|
|
2819
|
+
tickSpacing?: number;
|
|
2748
2820
|
label?: string;
|
|
2749
2821
|
tickSize: number;
|
|
2750
2822
|
classes?: Partial<import("../index.js").ChartsAxisClasses>;
|
|
@@ -2762,9 +2834,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2762
2834
|
width: number;
|
|
2763
2835
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
2764
2836
|
id: import("../internals/index.js").AxisId;
|
|
2837
|
+
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
2765
2838
|
dataKey?: string | undefined;
|
|
2766
2839
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2767
|
-
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
2768
2840
|
hideTooltip?: boolean | undefined;
|
|
2769
2841
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
2770
2842
|
min: number;
|
|
@@ -2786,6 +2858,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2786
2858
|
tickLabelStyle?: ChartsTextProps["style"];
|
|
2787
2859
|
labelStyle?: ChartsTextProps["style"];
|
|
2788
2860
|
tickLabelInterval?: "auto" | ((value: any, index: number) => boolean);
|
|
2861
|
+
tickSpacing?: number;
|
|
2789
2862
|
label?: string;
|
|
2790
2863
|
tickSize: number;
|
|
2791
2864
|
classes?: Partial<import("../index.js").ChartsAxisClasses>;
|
|
@@ -2803,9 +2876,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2803
2876
|
width: number;
|
|
2804
2877
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
2805
2878
|
id: import("../internals/index.js").AxisId;
|
|
2879
|
+
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
2806
2880
|
dataKey?: string | undefined;
|
|
2807
2881
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2808
|
-
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
2809
2882
|
hideTooltip?: boolean | undefined;
|
|
2810
2883
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
2811
2884
|
min: number;
|
|
@@ -2825,6 +2898,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2825
2898
|
tickLabelStyle?: ChartsTextProps["style"];
|
|
2826
2899
|
labelStyle?: ChartsTextProps["style"];
|
|
2827
2900
|
tickLabelInterval?: "auto" | ((value: any, index: number) => boolean);
|
|
2901
|
+
tickSpacing?: number;
|
|
2828
2902
|
label?: string;
|
|
2829
2903
|
tickSize: number;
|
|
2830
2904
|
classes?: Partial<import("../index.js").ChartsAxisClasses>;
|
|
@@ -2842,9 +2916,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2842
2916
|
width: number;
|
|
2843
2917
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
2844
2918
|
id: import("../internals/index.js").AxisId;
|
|
2919
|
+
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
2845
2920
|
dataKey?: string | undefined;
|
|
2846
2921
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2847
|
-
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
2848
2922
|
hideTooltip?: boolean | undefined;
|
|
2849
2923
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
2850
2924
|
min: number;
|
|
@@ -2864,6 +2938,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2864
2938
|
tickLabelStyle?: ChartsTextProps["style"];
|
|
2865
2939
|
labelStyle?: ChartsTextProps["style"];
|
|
2866
2940
|
tickLabelInterval?: "auto" | ((value: any, index: number) => boolean);
|
|
2941
|
+
tickSpacing?: number;
|
|
2867
2942
|
label?: string;
|
|
2868
2943
|
tickSize: number;
|
|
2869
2944
|
classes?: Partial<import("../index.js").ChartsAxisClasses>;
|
|
@@ -2881,9 +2956,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2881
2956
|
width: number;
|
|
2882
2957
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
2883
2958
|
id: import("../internals/index.js").AxisId;
|
|
2959
|
+
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
2884
2960
|
dataKey?: string | undefined;
|
|
2885
2961
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2886
|
-
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
2887
2962
|
hideTooltip?: boolean | undefined;
|
|
2888
2963
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
2889
2964
|
min: number;
|
|
@@ -2903,6 +2978,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2903
2978
|
tickLabelStyle?: ChartsTextProps["style"];
|
|
2904
2979
|
labelStyle?: ChartsTextProps["style"];
|
|
2905
2980
|
tickLabelInterval?: "auto" | ((value: any, index: number) => boolean);
|
|
2981
|
+
tickSpacing?: number;
|
|
2906
2982
|
label?: string;
|
|
2907
2983
|
tickSize: number;
|
|
2908
2984
|
classes?: Partial<import("../index.js").ChartsAxisClasses>;
|
|
@@ -2920,9 +2996,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2920
2996
|
width: number;
|
|
2921
2997
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
2922
2998
|
id: import("../internals/index.js").AxisId;
|
|
2999
|
+
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
2923
3000
|
dataKey?: string | undefined;
|
|
2924
3001
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2925
|
-
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
2926
3002
|
hideTooltip?: boolean | undefined;
|
|
2927
3003
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
2928
3004
|
min: number;
|
|
@@ -2942,6 +3018,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2942
3018
|
tickLabelStyle?: ChartsTextProps["style"];
|
|
2943
3019
|
labelStyle?: ChartsTextProps["style"];
|
|
2944
3020
|
tickLabelInterval?: "auto" | ((value: any, index: number) => boolean);
|
|
3021
|
+
tickSpacing?: number;
|
|
2945
3022
|
label?: string;
|
|
2946
3023
|
tickSize: number;
|
|
2947
3024
|
classes?: Partial<import("../index.js").ChartsAxisClasses>;
|
|
@@ -2959,9 +3036,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2959
3036
|
width: number;
|
|
2960
3037
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
2961
3038
|
id: import("../internals/index.js").AxisId;
|
|
3039
|
+
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
2962
3040
|
dataKey?: string | undefined;
|
|
2963
3041
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2964
|
-
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
2965
3042
|
hideTooltip?: boolean | undefined;
|
|
2966
3043
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
2967
3044
|
min: number;
|
|
@@ -2981,6 +3058,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2981
3058
|
tickLabelStyle?: ChartsTextProps["style"];
|
|
2982
3059
|
labelStyle?: ChartsTextProps["style"];
|
|
2983
3060
|
tickLabelInterval?: "auto" | ((value: any, index: number) => boolean);
|
|
3061
|
+
tickSpacing?: number;
|
|
2984
3062
|
label?: string;
|
|
2985
3063
|
tickSize: number;
|
|
2986
3064
|
classes?: Partial<import("../index.js").ChartsAxisClasses>;
|
|
@@ -2998,9 +3076,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2998
3076
|
width: number;
|
|
2999
3077
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
3000
3078
|
id: import("../internals/index.js").AxisId;
|
|
3079
|
+
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
3001
3080
|
dataKey?: string | undefined;
|
|
3002
3081
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
3003
|
-
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
3004
3082
|
hideTooltip?: boolean | undefined;
|
|
3005
3083
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
3006
3084
|
min: number;
|
|
@@ -3020,6 +3098,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
3020
3098
|
tickLabelStyle?: ChartsTextProps["style"];
|
|
3021
3099
|
labelStyle?: ChartsTextProps["style"];
|
|
3022
3100
|
tickLabelInterval?: "auto" | ((value: any, index: number) => boolean);
|
|
3101
|
+
tickSpacing?: number;
|
|
3023
3102
|
label?: string;
|
|
3024
3103
|
tickSize: number;
|
|
3025
3104
|
classes?: Partial<import("../index.js").ChartsAxisClasses>;
|
|
@@ -3037,9 +3116,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
3037
3116
|
width: number;
|
|
3038
3117
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
3039
3118
|
id: import("../internals/index.js").AxisId;
|
|
3119
|
+
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
3040
3120
|
dataKey?: string | undefined;
|
|
3041
3121
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
3042
|
-
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
3043
3122
|
hideTooltip?: boolean | undefined;
|
|
3044
3123
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
3045
3124
|
min: number;
|
|
@@ -3059,6 +3138,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
3059
3138
|
tickLabelStyle?: ChartsTextProps["style"];
|
|
3060
3139
|
labelStyle?: ChartsTextProps["style"];
|
|
3061
3140
|
tickLabelInterval?: "auto" | ((value: any, index: number) => boolean);
|
|
3141
|
+
tickSpacing?: number;
|
|
3062
3142
|
label?: string;
|
|
3063
3143
|
tickSize: number;
|
|
3064
3144
|
classes?: Partial<import("../index.js").ChartsAxisClasses>;
|
|
@@ -3076,9 +3156,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
3076
3156
|
width: number;
|
|
3077
3157
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
3078
3158
|
id: import("../internals/index.js").AxisId;
|
|
3159
|
+
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
3079
3160
|
dataKey?: string | undefined;
|
|
3080
3161
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
3081
|
-
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
3082
3162
|
hideTooltip?: boolean | undefined;
|
|
3083
3163
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
3084
3164
|
min: number;
|
|
@@ -3098,6 +3178,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
3098
3178
|
tickLabelStyle?: ChartsTextProps["style"];
|
|
3099
3179
|
labelStyle?: ChartsTextProps["style"];
|
|
3100
3180
|
tickLabelInterval?: "auto" | ((value: any, index: number) => boolean);
|
|
3181
|
+
tickSpacing?: number;
|
|
3101
3182
|
label?: string;
|
|
3102
3183
|
tickSize: number;
|
|
3103
3184
|
classes?: Partial<import("../index.js").ChartsAxisClasses>;
|
|
@@ -3115,9 +3196,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
3115
3196
|
width: number;
|
|
3116
3197
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
3117
3198
|
id: import("../internals/index.js").AxisId;
|
|
3199
|
+
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
3118
3200
|
dataKey?: string | undefined;
|
|
3119
3201
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
3120
|
-
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
3121
3202
|
hideTooltip?: boolean | undefined;
|
|
3122
3203
|
domainLimit?: "nice" | "strict" | ((min: number, max: number) => {
|
|
3123
3204
|
min: number;
|
|
@@ -3150,49 +3231,41 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
3150
3231
|
spacing?: number | string | undefined | undefined;
|
|
3151
3232
|
name?: string | undefined | undefined;
|
|
3152
3233
|
fontWeight?: number | string | undefined | undefined;
|
|
3234
|
+
alignmentBaseline?: "auto" | "baseline" | "before-edge" | "text-before-edge" | "middle" | "central" | "after-edge" | "text-after-edge" | "ideographic" | "alphabetic" | "hanging" | "mathematical" | "inherit" | undefined | undefined;
|
|
3235
|
+
baselineShift?: number | string | undefined | undefined;
|
|
3236
|
+
clipRule?: number | string | undefined | undefined;
|
|
3153
3237
|
color?: string | undefined | undefined;
|
|
3238
|
+
colorInterpolationFilters?: "auto" | "sRGB" | "linearRGB" | "inherit" | undefined | undefined;
|
|
3154
3239
|
cursor?: number | string | undefined | undefined;
|
|
3240
|
+
cx?: number | string | undefined | undefined;
|
|
3241
|
+
cy?: number | string | undefined | undefined;
|
|
3242
|
+
d?: string | undefined | undefined;
|
|
3155
3243
|
display?: number | string | undefined | undefined;
|
|
3244
|
+
fillOpacity?: number | string | undefined | undefined;
|
|
3245
|
+
fillRule?: "nonzero" | "evenodd" | "inherit" | undefined | undefined;
|
|
3246
|
+
floodColor?: number | string | undefined | undefined;
|
|
3247
|
+
floodOpacity?: number | string | undefined | undefined;
|
|
3156
3248
|
fontFamily?: string | undefined | undefined;
|
|
3157
3249
|
fontSize?: number | string | undefined | undefined;
|
|
3158
3250
|
fontSizeAdjust?: number | string | undefined | undefined;
|
|
3159
|
-
fontStretch?: number | string | undefined | undefined;
|
|
3160
3251
|
fontStyle?: number | string | undefined | undefined;
|
|
3161
3252
|
fontVariant?: number | string | undefined | undefined;
|
|
3162
3253
|
height?: number | string | undefined | undefined;
|
|
3163
3254
|
imageRendering?: number | string | undefined | undefined;
|
|
3164
3255
|
letterSpacing?: number | string | undefined | undefined;
|
|
3256
|
+
lightingColor?: number | string | undefined | undefined;
|
|
3257
|
+
markerEnd?: string | undefined | undefined;
|
|
3258
|
+
markerMid?: string | undefined | undefined;
|
|
3259
|
+
markerStart?: string | undefined | undefined;
|
|
3165
3260
|
opacity?: number | string | undefined | undefined;
|
|
3166
3261
|
order?: number | string | undefined | undefined;
|
|
3167
3262
|
paintOrder?: number | string | undefined | undefined;
|
|
3168
3263
|
pointerEvents?: number | string | undefined | undefined;
|
|
3264
|
+
r?: number | string | undefined | undefined;
|
|
3169
3265
|
rotate?: number | string | undefined | undefined;
|
|
3266
|
+
rx?: number | string | undefined | undefined;
|
|
3267
|
+
ry?: number | string | undefined | undefined;
|
|
3170
3268
|
scale?: number | string | undefined | undefined;
|
|
3171
|
-
textRendering?: number | string | undefined | undefined;
|
|
3172
|
-
transform?: string | undefined | undefined;
|
|
3173
|
-
unicodeBidi?: number | string | undefined | undefined;
|
|
3174
|
-
visibility?: number | string | undefined | undefined;
|
|
3175
|
-
wordSpacing?: number | string | undefined | undefined;
|
|
3176
|
-
writingMode?: number | string | undefined | undefined;
|
|
3177
|
-
offset?: number | string | undefined | undefined;
|
|
3178
|
-
overflow?: number | string | undefined | undefined;
|
|
3179
|
-
textDecoration?: number | string | undefined | undefined;
|
|
3180
|
-
azimuth?: number | string | undefined | undefined;
|
|
3181
|
-
clip?: number | string | undefined | undefined;
|
|
3182
|
-
alignmentBaseline?: "auto" | "baseline" | "before-edge" | "text-before-edge" | "middle" | "central" | "after-edge" | "text-after-edge" | "ideographic" | "alphabetic" | "hanging" | "mathematical" | "inherit" | undefined | undefined;
|
|
3183
|
-
baselineShift?: number | string | undefined | undefined;
|
|
3184
|
-
clipRule?: number | string | undefined | undefined;
|
|
3185
|
-
colorInterpolation?: number | string | undefined | undefined;
|
|
3186
|
-
colorRendering?: number | string | undefined | undefined;
|
|
3187
|
-
fillOpacity?: number | string | undefined | undefined;
|
|
3188
|
-
fillRule?: "nonzero" | "evenodd" | "inherit" | undefined | undefined;
|
|
3189
|
-
floodColor?: number | string | undefined | undefined;
|
|
3190
|
-
floodOpacity?: number | string | undefined | undefined;
|
|
3191
|
-
glyphOrientationVertical?: number | string | undefined | undefined;
|
|
3192
|
-
lightingColor?: number | string | undefined | undefined;
|
|
3193
|
-
markerEnd?: string | undefined | undefined;
|
|
3194
|
-
markerMid?: string | undefined | undefined;
|
|
3195
|
-
markerStart?: string | undefined | undefined;
|
|
3196
3269
|
shapeRendering?: number | string | undefined | undefined;
|
|
3197
3270
|
stopColor?: string | undefined | undefined;
|
|
3198
3271
|
stopOpacity?: number | string | undefined | undefined;
|
|
@@ -3205,7 +3278,23 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
3205
3278
|
strokeOpacity?: number | string | undefined | undefined;
|
|
3206
3279
|
strokeWidth?: number | string | undefined | undefined;
|
|
3207
3280
|
textAnchor?: "start" | "middle" | "end" | "inherit" | undefined | undefined;
|
|
3281
|
+
textRendering?: number | string | undefined | undefined;
|
|
3282
|
+
transform?: string | undefined | undefined;
|
|
3283
|
+
unicodeBidi?: number | string | undefined | undefined;
|
|
3208
3284
|
vectorEffect?: number | string | undefined | undefined;
|
|
3285
|
+
visibility?: number | string | undefined | undefined;
|
|
3286
|
+
wordSpacing?: number | string | undefined | undefined;
|
|
3287
|
+
writingMode?: number | string | undefined | undefined;
|
|
3288
|
+
x?: number | string | undefined | undefined;
|
|
3289
|
+
y?: number | string | undefined | undefined;
|
|
3290
|
+
offset?: number | string | undefined | undefined;
|
|
3291
|
+
overflow?: number | string | undefined | undefined;
|
|
3292
|
+
textDecoration?: number | string | undefined | undefined;
|
|
3293
|
+
clip?: number | string | undefined | undefined;
|
|
3294
|
+
fontStretch?: number | string | undefined | undefined;
|
|
3295
|
+
colorInterpolation?: number | string | undefined | undefined;
|
|
3296
|
+
colorRendering?: number | string | undefined | undefined;
|
|
3297
|
+
glyphOrientationVertical?: number | string | undefined | undefined;
|
|
3209
3298
|
key?: import("react").Key | null | undefined;
|
|
3210
3299
|
suppressHydrationWarning?: boolean | undefined | undefined;
|
|
3211
3300
|
className?: string | undefined | undefined;
|
|
@@ -3448,13 +3537,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
3448
3537
|
hanging?: number | string | undefined | undefined;
|
|
3449
3538
|
mathematical?: number | string | undefined | undefined;
|
|
3450
3539
|
origin?: number | string | undefined | undefined;
|
|
3451
|
-
x?: number | string | undefined | undefined;
|
|
3452
|
-
y?: number | string | undefined | undefined;
|
|
3453
|
-
radius?: number | string | undefined | undefined;
|
|
3454
|
-
cx?: number | string | undefined | undefined;
|
|
3455
|
-
cy?: number | string | undefined | undefined;
|
|
3456
3540
|
min?: number | string | undefined | undefined;
|
|
3457
3541
|
max?: number | string | undefined | undefined;
|
|
3542
|
+
radius?: number | string | undefined | undefined;
|
|
3458
3543
|
method?: string | undefined | undefined;
|
|
3459
3544
|
crossOrigin?: "" | "anonymous" | "use-credentials" | undefined;
|
|
3460
3545
|
accentHeight?: number | string | undefined | undefined;
|
|
@@ -3467,6 +3552,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
3467
3552
|
attributeName?: string | undefined | undefined;
|
|
3468
3553
|
attributeType?: string | undefined | undefined;
|
|
3469
3554
|
autoReverse?: (boolean | "true" | "false") | undefined;
|
|
3555
|
+
azimuth?: number | string | undefined | undefined;
|
|
3470
3556
|
baseFrequency?: number | string | undefined | undefined;
|
|
3471
3557
|
baseProfile?: number | string | undefined | undefined;
|
|
3472
3558
|
bbox?: number | string | undefined | undefined;
|
|
@@ -3476,11 +3562,9 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
3476
3562
|
calcMode?: number | string | undefined | undefined;
|
|
3477
3563
|
capHeight?: number | string | undefined | undefined;
|
|
3478
3564
|
clipPathUnits?: number | string | undefined | undefined;
|
|
3479
|
-
colorInterpolationFilters?: "auto" | "sRGB" | "linearRGB" | "inherit" | undefined | undefined;
|
|
3480
3565
|
colorProfile?: number | string | undefined | undefined;
|
|
3481
3566
|
contentScriptType?: number | string | undefined | undefined;
|
|
3482
3567
|
contentStyleType?: number | string | undefined | undefined;
|
|
3483
|
-
d?: string | undefined | undefined;
|
|
3484
3568
|
decelerate?: number | string | undefined | undefined;
|
|
3485
3569
|
descent?: number | string | undefined | undefined;
|
|
3486
3570
|
diffuseConstant?: number | string | undefined | undefined;
|
|
@@ -3550,7 +3634,6 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
3550
3634
|
preserveAlpha?: (boolean | "true" | "false") | undefined;
|
|
3551
3635
|
preserveAspectRatio?: string | undefined | undefined;
|
|
3552
3636
|
primitiveUnits?: number | string | undefined | undefined;
|
|
3553
|
-
r?: number | string | undefined | undefined;
|
|
3554
3637
|
refX?: number | string | undefined | undefined;
|
|
3555
3638
|
refY?: number | string | undefined | undefined;
|
|
3556
3639
|
renderingIntent?: number | string | undefined | undefined;
|
|
@@ -3560,8 +3643,6 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
3560
3643
|
requiredFeatures?: number | string | undefined | undefined;
|
|
3561
3644
|
restart?: number | string | undefined | undefined;
|
|
3562
3645
|
result?: string | undefined | undefined;
|
|
3563
|
-
rx?: number | string | undefined | undefined;
|
|
3564
|
-
ry?: number | string | undefined | undefined;
|
|
3565
3646
|
seed?: number | string | undefined | undefined;
|
|
3566
3647
|
slope?: number | string | undefined | undefined;
|
|
3567
3648
|
specularConstant?: number | string | undefined | undefined;
|