@mui/x-charts 9.0.0-alpha.2 → 9.0.0-alpha.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/BarChart/AnimatedBarElement.d.mts +1 -1
- package/BarChart/AnimatedBarElement.d.ts +1 -1
- package/BarChart/BarChart.js +5 -2
- package/BarChart/BarChart.mjs +5 -2
- package/BarChart/BarElement.d.mts +1 -1
- package/BarChart/BarElement.d.ts +1 -1
- package/BarChart/BarElement.js +8 -7
- package/BarChart/BarElement.mjs +8 -7
- package/BarChart/BarLabel/BarLabel.js +4 -0
- package/BarChart/BarLabel/BarLabel.mjs +4 -0
- package/BarChart/BarLabel/BarLabel.types.d.mts +2 -2
- package/BarChart/BarLabel/BarLabel.types.d.ts +2 -2
- package/BarChart/BarLabel/BarLabelItem.js +8 -7
- package/BarChart/BarLabel/BarLabelItem.mjs +8 -7
- package/BarChart/BarLabel/barLabelClasses.d.mts +15 -0
- package/BarChart/BarLabel/barLabelClasses.d.ts +15 -0
- package/BarChart/BarLabel/barLabelClasses.js +19 -0
- package/BarChart/BarLabel/barLabelClasses.mjs +20 -0
- package/BarChart/BarPlot.js +1 -2
- package/BarChart/BarPlot.mjs +2 -3
- package/BarChart/barClasses.d.mts +21 -1
- package/BarChart/barClasses.d.ts +21 -1
- package/BarChart/barClasses.js +9 -3
- package/BarChart/barClasses.mjs +9 -3
- package/BarChart/barElementClasses.d.mts +17 -10
- package/BarChart/barElementClasses.d.ts +17 -10
- package/BarChart/barElementClasses.js +19 -0
- package/BarChart/barElementClasses.mjs +20 -0
- package/BarChart/index.d.mts +1 -1
- package/BarChart/index.d.ts +1 -1
- package/BarChart/index.js +1 -8
- package/BarChart/index.mjs +1 -1
- package/CHANGELOG.md +123 -1
- package/ChartContainer/ChartContainer.d.mts +1 -1
- package/ChartContainer/ChartContainer.d.ts +1 -1
- package/ChartContainer/useChartContainerProps.d.mts +2 -2
- package/ChartContainer/useChartContainerProps.d.ts +2 -2
- package/ChartDataProvider/ChartDataProvider.d.mts +1 -1
- package/ChartDataProvider/ChartDataProvider.d.ts +1 -1
- package/ChartDataProvider/useChartDataProviderProps.d.mts +2 -2
- package/ChartDataProvider/useChartDataProviderProps.d.ts +2 -2
- package/ChartsContainer/ChartsContainer.d.mts +1 -1
- package/ChartsContainer/ChartsContainer.d.ts +1 -1
- package/ChartsContainer/ChartsContainer.js +5 -2
- package/ChartsContainer/ChartsContainer.mjs +5 -2
- package/ChartsContainer/useChartsContainerProps.d.mts +3 -3
- package/ChartsContainer/useChartsContainerProps.d.ts +3 -3
- package/ChartsContainer/useChartsContainerProps.js +3 -3
- package/ChartsContainer/useChartsContainerProps.mjs +3 -3
- package/ChartsDataProvider/ChartsDataProvider.d.mts +2 -2
- package/ChartsDataProvider/ChartsDataProvider.d.ts +2 -2
- package/ChartsDataProvider/useChartsDataProviderProps.d.mts +2 -2
- package/ChartsDataProvider/useChartsDataProviderProps.d.ts +2 -2
- package/ChartsLabel/ChartsLabelMark.d.mts +8 -1
- package/ChartsLabel/ChartsLabelMark.d.ts +8 -1
- package/ChartsLabel/ChartsLabelMark.js +29 -3
- package/ChartsLabel/ChartsLabelMark.mjs +29 -3
- package/ChartsLabel/labelMarkClasses.d.mts +2 -0
- package/ChartsLabel/labelMarkClasses.d.ts +2 -0
- package/ChartsLabel/labelMarkClasses.js +1 -1
- package/ChartsLabel/labelMarkClasses.mjs +1 -1
- package/ChartsLegend/ChartsLegend.js +4 -2
- package/ChartsLegend/ChartsLegend.mjs +4 -2
- package/ChartsLegend/legendContext.types.d.mts +1 -0
- package/ChartsLegend/legendContext.types.d.ts +1 -0
- package/ChartsTooltip/ChartsAxisTooltipContent.js +3 -1
- package/ChartsTooltip/ChartsAxisTooltipContent.mjs +3 -1
- package/ChartsTooltip/ChartsItemTooltipContent.js +6 -2
- package/ChartsTooltip/ChartsItemTooltipContent.mjs +6 -2
- package/ChartsTooltip/ChartsTooltipContainer.js +7 -5
- package/ChartsTooltip/ChartsTooltipContainer.mjs +6 -4
- package/ChartsTooltip/ChartsTooltipTable.d.mts +1 -1
- package/ChartsTooltip/ChartsTooltipTable.d.ts +1 -1
- package/ChartsTooltip/useAxesTooltip.d.mts +1 -0
- package/ChartsTooltip/useAxesTooltip.d.ts +1 -0
- package/ChartsTooltip/useAxesTooltip.js +6 -4
- package/ChartsTooltip/useAxesTooltip.mjs +6 -4
- package/ChartsTooltip/useItemTooltip.d.mts +5 -3
- package/ChartsTooltip/useItemTooltip.d.ts +5 -3
- package/ChartsXAxis/useAxisTicksProps.d.mts +286 -286
- package/ChartsXAxis/useAxisTicksProps.d.ts +286 -286
- package/ChartsYAxis/useAxisTicksProps.d.mts +286 -286
- package/ChartsYAxis/useAxisTicksProps.d.ts +286 -286
- package/LineChart/AreaElement.d.mts +12 -0
- package/LineChart/AreaElement.d.ts +12 -0
- package/LineChart/AreaElement.js +28 -9
- package/LineChart/AreaElement.mjs +30 -9
- package/LineChart/AreaPlot.js +10 -4
- package/LineChart/AreaPlot.mjs +11 -5
- package/LineChart/CircleMarkElement.js +9 -2
- package/LineChart/CircleMarkElement.mjs +10 -3
- package/LineChart/LineChart.js +5 -2
- package/LineChart/LineChart.mjs +5 -2
- package/LineChart/LineElement.d.mts +12 -0
- package/LineChart/LineElement.d.ts +12 -0
- package/LineChart/LineElement.js +28 -9
- package/LineChart/LineElement.mjs +30 -9
- package/LineChart/LineHighlightElement.d.mts +12 -0
- package/LineChart/LineHighlightElement.d.ts +12 -0
- package/LineChart/LineHighlightElement.js +22 -3
- package/LineChart/LineHighlightElement.mjs +24 -3
- package/LineChart/LinePlot.js +11 -5
- package/LineChart/LinePlot.mjs +12 -6
- package/LineChart/MarkElement.js +9 -2
- package/LineChart/MarkElement.mjs +10 -3
- package/LineChart/MarkPlot.js +19 -9
- package/LineChart/MarkPlot.mjs +20 -10
- package/LineChart/index.d.mts +3 -1
- package/LineChart/index.d.ts +3 -1
- package/LineChart/index.js +10 -2
- package/LineChart/index.mjs +2 -1
- package/LineChart/lineClasses.d.mts +34 -0
- package/LineChart/lineClasses.d.ts +34 -0
- package/LineChart/lineClasses.js +32 -0
- package/LineChart/lineClasses.mjs +23 -0
- package/LineChart/markElementClasses.d.mts +17 -8
- package/LineChart/markElementClasses.d.ts +17 -8
- package/LineChart/markElementClasses.js +19 -0
- package/LineChart/markElementClasses.mjs +20 -0
- package/LineChart/seriesConfig/legend.js +1 -0
- package/LineChart/seriesConfig/legend.mjs +1 -0
- package/LineChart/seriesConfig/seriesProcessor.js +1 -1
- package/LineChart/seriesConfig/seriesProcessor.mjs +1 -1
- package/LineChart/seriesConfig/tooltip.js +2 -1
- package/LineChart/seriesConfig/tooltip.mjs +2 -1
- package/PieChart/FocusedPieArc.js +8 -6
- package/PieChart/FocusedPieArc.mjs +8 -6
- package/PieChart/PieArc.d.mts +14 -11
- package/PieChart/PieArc.d.ts +14 -11
- package/PieChart/PieArc.js +22 -4
- package/PieChart/PieArc.mjs +24 -4
- package/PieChart/PieArcLabel.d.mts +16 -2
- package/PieChart/PieArcLabel.d.ts +16 -2
- package/PieChart/PieArcLabel.js +26 -5
- package/PieChart/PieArcLabel.mjs +28 -5
- package/PieChart/PieArcLabelPlot.js +6 -1
- package/PieChart/PieArcLabelPlot.mjs +6 -1
- package/PieChart/PieArcPlot.js +6 -1
- package/PieChart/PieArcPlot.mjs +6 -1
- package/PieChart/PieChart.js +5 -2
- package/PieChart/PieChart.mjs +5 -2
- package/PieChart/PiePlot.d.mts +1 -0
- package/PieChart/PiePlot.d.ts +1 -0
- package/PieChart/PiePlot.js +4 -1
- package/PieChart/PiePlot.mjs +4 -1
- package/PieChart/dataTransform/useTransformData.js +6 -8
- package/PieChart/dataTransform/useTransformData.mjs +6 -8
- package/PieChart/pieClasses.d.mts +22 -1
- package/PieChart/pieClasses.d.ts +22 -1
- package/PieChart/pieClasses.js +10 -3
- package/PieChart/pieClasses.mjs +10 -3
- package/RadarChart/RadarChart.js +5 -2
- package/RadarChart/RadarChart.mjs +5 -2
- package/RadarChart/RadarSeriesPlot/RadarSeriesArea.d.mts +3 -3
- package/RadarChart/RadarSeriesPlot/RadarSeriesArea.d.ts +3 -3
- package/RadarChart/RadarSeriesPlot/RadarSeriesArea.js +7 -14
- package/RadarChart/RadarSeriesPlot/RadarSeriesArea.mjs +7 -14
- package/RadarChart/RadarSeriesPlot/RadarSeriesMarks.d.mts +2 -2
- package/RadarChart/RadarSeriesPlot/RadarSeriesMarks.d.ts +2 -2
- package/RadarChart/RadarSeriesPlot/RadarSeriesMarks.js +7 -14
- package/RadarChart/RadarSeriesPlot/RadarSeriesMarks.mjs +7 -14
- package/RadarChart/RadarSeriesPlot/RadarSeriesPlot.js +4 -9
- package/RadarChart/RadarSeriesPlot/RadarSeriesPlot.mjs +4 -9
- package/RadarChart/RadarSeriesPlot/useRadarSeriesData.d.mts +1 -1
- package/RadarChart/RadarSeriesPlot/useRadarSeriesData.d.ts +1 -1
- package/RadarChart/RadarSeriesPlot/useRadarSeriesData.js +8 -16
- package/RadarChart/RadarSeriesPlot/useRadarSeriesData.mjs +8 -16
- package/RadarChart/seriesConfig/tooltip.js +13 -8
- package/RadarChart/seriesConfig/tooltip.mjs +13 -8
- package/RadarChart/useRadarChartProps.js +3 -3
- package/RadarChart/useRadarChartProps.mjs +3 -3
- package/ScatterChart/BatchScatter.d.mts +2 -1
- package/ScatterChart/BatchScatter.d.ts +2 -1
- package/ScatterChart/BatchScatter.js +5 -3
- package/ScatterChart/BatchScatter.mjs +4 -3
- package/ScatterChart/FocusedScatterMark.d.mts +4 -1
- package/ScatterChart/FocusedScatterMark.d.ts +4 -1
- package/ScatterChart/FocusedScatterMark.js +12 -2
- package/ScatterChart/FocusedScatterMark.mjs +11 -1
- package/ScatterChart/Scatter.d.mts +1 -1
- package/ScatterChart/Scatter.d.ts +1 -1
- package/ScatterChart/Scatter.js +11 -9
- package/ScatterChart/Scatter.mjs +11 -9
- package/ScatterChart/ScatterChart.js +5 -2
- package/ScatterChart/ScatterChart.mjs +5 -2
- package/ScatterChart/ScatterPlot.d.mts +2 -1
- package/ScatterChart/ScatterPlot.d.ts +2 -1
- package/ScatterChart/ScatterPlot.js +16 -2
- package/ScatterChart/ScatterPlot.mjs +16 -2
- package/ScatterChart/index.d.mts +2 -2
- package/ScatterChart/index.d.ts +2 -2
- package/ScatterChart/scatterClasses.d.mts +14 -2
- package/ScatterChart/scatterClasses.d.ts +14 -2
- package/ScatterChart/scatterClasses.js +9 -3
- package/ScatterChart/scatterClasses.mjs +9 -3
- package/SparkLineChart/SparkLineChart.js +5 -2
- package/SparkLineChart/SparkLineChart.mjs +5 -2
- package/context/ChartApi.d.mts +1 -1
- package/context/ChartApi.d.ts +1 -1
- package/context/ChartProvider/ChartProvider.types.d.mts +2 -2
- package/context/ChartProvider/ChartProvider.types.d.ts +2 -2
- package/context/ChartsProvider/ChartsProvider.d.mts +1 -1
- package/context/ChartsProvider/ChartsProvider.d.ts +1 -1
- package/context/ChartsProvider/ChartsProvider.types.d.mts +3 -3
- package/context/ChartsProvider/ChartsProvider.types.d.ts +3 -3
- package/hooks/index.d.mts +2 -2
- package/hooks/index.d.ts +2 -2
- package/hooks/index.js +8 -8
- package/hooks/index.mjs +2 -2
- package/hooks/useInteractionItemProps.d.mts +1 -2
- package/hooks/useInteractionItemProps.d.ts +1 -2
- package/hooks/{useItemHighlighted.d.mts → useItemHighlightState.d.mts} +5 -13
- package/hooks/{useItemHighlighted.d.ts → useItemHighlightState.d.ts} +5 -13
- package/hooks/{useItemHighlighted.js → useItemHighlightState.js} +5 -10
- package/hooks/useItemHighlightState.mjs +17 -0
- package/hooks/useItemHighlightStateGetter.d.mts +9 -0
- package/hooks/useItemHighlightStateGetter.d.ts +9 -0
- package/hooks/useItemHighlightStateGetter.js +21 -0
- package/hooks/useItemHighlightStateGetter.mjs +16 -0
- package/index.js +1 -1
- package/index.mjs +1 -1
- package/internals/commonNextFocusItem.d.mts +5 -5
- package/internals/commonNextFocusItem.d.ts +5 -5
- package/internals/createCommonKeyboardFocusHandler.d.mts +2 -2
- package/internals/createCommonKeyboardFocusHandler.d.ts +2 -2
- package/internals/identifierCleaner.d.mts +8 -4
- package/internals/identifierCleaner.d.ts +8 -4
- package/internals/identifierCleaner.js +5 -1
- package/internals/identifierCleaner.mjs +5 -1
- package/internals/identifierSerializer.d.mts +10 -2
- package/internals/identifierSerializer.d.ts +10 -2
- package/internals/identifierSerializer.js +8 -0
- package/internals/identifierSerializer.mjs +8 -0
- package/internals/plugins/allPlugins.d.mts +2 -2
- package/internals/plugins/allPlugins.d.ts +2 -2
- package/internals/plugins/corePlugins/corePlugins.d.mts +1 -1
- package/internals/plugins/corePlugins/corePlugins.d.ts +1 -1
- package/internals/plugins/corePlugins/useChartSeries/processSeries.d.mts +6 -6
- package/internals/plugins/corePlugins/useChartSeries/processSeries.d.ts +6 -6
- package/internals/plugins/corePlugins/useChartSeries/useChartSeries.types.d.mts +9 -9
- package/internals/plugins/corePlugins/useChartSeries/useChartSeries.types.d.ts +9 -9
- package/internals/plugins/corePlugins/useChartSeries/useColorProcessor.d.mts +2 -2
- package/internals/plugins/corePlugins/useChartSeries/useColorProcessor.d.ts +2 -2
- package/internals/plugins/corePlugins/useChartSeriesConfig/types/cartesianExtremumGetter.types.d.mts +3 -3
- package/internals/plugins/corePlugins/useChartSeriesConfig/types/cartesianExtremumGetter.types.d.ts +3 -3
- package/internals/plugins/corePlugins/useChartSeriesConfig/types/colorProcessor.types.d.mts +4 -4
- package/internals/plugins/corePlugins/useChartSeriesConfig/types/colorProcessor.types.d.ts +4 -4
- package/internals/plugins/corePlugins/useChartSeriesConfig/types/getItemAtPosition.types.d.mts +2 -2
- package/internals/plugins/corePlugins/useChartSeriesConfig/types/getItemAtPosition.types.d.ts +2 -2
- package/internals/plugins/corePlugins/useChartSeriesConfig/types/getSeriesWithDefaultValues.types.d.mts +1 -1
- package/internals/plugins/corePlugins/useChartSeriesConfig/types/getSeriesWithDefaultValues.types.d.ts +1 -1
- package/internals/plugins/corePlugins/useChartSeriesConfig/types/identifierCleaner.types.d.mts +1 -1
- package/internals/plugins/corePlugins/useChartSeriesConfig/types/identifierCleaner.types.d.ts +1 -1
- package/internals/plugins/corePlugins/useChartSeriesConfig/types/identifierSerializer.types.d.mts +1 -1
- package/internals/plugins/corePlugins/useChartSeriesConfig/types/identifierSerializer.types.d.ts +1 -1
- package/internals/plugins/corePlugins/useChartSeriesConfig/types/legendGetter.types.d.mts +1 -1
- package/internals/plugins/corePlugins/useChartSeriesConfig/types/legendGetter.types.d.ts +1 -1
- package/internals/plugins/corePlugins/useChartSeriesConfig/types/polarExtremumGetter.types.d.mts +3 -3
- package/internals/plugins/corePlugins/useChartSeriesConfig/types/polarExtremumGetter.types.d.ts +3 -3
- package/internals/plugins/corePlugins/useChartSeriesConfig/types/seriesConfig.types.d.mts +28 -28
- package/internals/plugins/corePlugins/useChartSeriesConfig/types/seriesConfig.types.d.ts +28 -28
- package/internals/plugins/corePlugins/useChartSeriesConfig/types/seriesLayout.types.d.mts +2 -2
- package/internals/plugins/corePlugins/useChartSeriesConfig/types/seriesLayout.types.d.ts +2 -2
- package/internals/plugins/corePlugins/useChartSeriesConfig/types/seriesProcessor.types.d.mts +6 -6
- package/internals/plugins/corePlugins/useChartSeriesConfig/types/seriesProcessor.types.d.ts +6 -6
- package/internals/plugins/corePlugins/useChartSeriesConfig/types/tooltipGetter.types.d.mts +21 -11
- package/internals/plugins/corePlugins/useChartSeriesConfig/types/tooltipGetter.types.d.ts +21 -11
- package/internals/plugins/corePlugins/useChartSeriesConfig/types/tooltipItemPositionGetter.types.d.mts +4 -4
- package/internals/plugins/corePlugins/useChartSeriesConfig/types/tooltipItemPositionGetter.types.d.ts +4 -4
- package/internals/plugins/corePlugins/useChartSeriesConfig/useChartSeriesConfig.types.d.mts +10 -10
- package/internals/plugins/corePlugins/useChartSeriesConfig/useChartSeriesConfig.types.d.ts +10 -10
- package/internals/plugins/corePlugins/useChartSeriesConfig/utils/cleanIdentifier.d.mts +3 -3
- package/internals/plugins/corePlugins/useChartSeriesConfig/utils/cleanIdentifier.d.ts +3 -3
- package/internals/plugins/corePlugins/useChartSeriesConfig/utils/serializeIdentifier.d.mts +3 -3
- package/internals/plugins/corePlugins/useChartSeriesConfig/utils/serializeIdentifier.d.ts +3 -3
- package/internals/plugins/featurePlugins/useChartCartesianAxis/computeAxisValue.d.mts +5 -5
- package/internals/plugins/featurePlugins/useChartCartesianAxis/computeAxisValue.d.ts +5 -5
- package/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisTriggerTooltip.d.mts +1 -1
- package/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisTriggerTooltip.d.ts +1 -1
- package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisRendering.selectors.d.mts +5 -5
- package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisRendering.selectors.d.ts +5 -5
- package/internals/plugins/featurePlugins/useChartHighlight/highlightStates.d.mts +1 -2
- package/internals/plugins/featurePlugins/useChartHighlight/highlightStates.d.ts +1 -2
- package/internals/plugins/featurePlugins/useChartHighlight/highlightStates.js +0 -5
- package/internals/plugins/featurePlugins/useChartHighlight/highlightStates.mjs +0 -4
- package/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.selectors.d.mts +10 -29
- package/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.selectors.d.ts +10 -29
- package/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.selectors.js +27 -64
- package/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.selectors.mjs +24 -60
- package/internals/plugins/featurePlugins/useChartKeyboardNavigation/keyboardFocusHandler.types.d.mts +3 -3
- package/internals/plugins/featurePlugins/useChartKeyboardNavigation/keyboardFocusHandler.types.d.ts +3 -3
- package/internals/plugins/featurePlugins/useChartKeyboardNavigation/useChartKeyboardNavigation.js +8 -10
- package/internals/plugins/featurePlugins/useChartKeyboardNavigation/useChartKeyboardNavigation.mjs +8 -10
- package/internals/plugins/featurePlugins/useChartKeyboardNavigation/useChartKeyboardNavigation.selectors.js +1 -1
- package/internals/plugins/featurePlugins/useChartKeyboardNavigation/useChartKeyboardNavigation.selectors.mjs +1 -1
- package/internals/plugins/featurePlugins/useChartKeyboardNavigation/useChartKeyboardNavigation.types.d.mts +8 -2
- package/internals/plugins/featurePlugins/useChartKeyboardNavigation/useChartKeyboardNavigation.types.d.ts +8 -2
- package/internals/plugins/featurePlugins/useChartPolarAxis/computeAxisValue.d.mts +5 -5
- package/internals/plugins/featurePlugins/useChartPolarAxis/computeAxisValue.d.ts +5 -5
- package/internals/plugins/featurePlugins/useChartPolarAxis/getAxisExtremum.d.mts +1 -1
- package/internals/plugins/featurePlugins/useChartPolarAxis/getAxisExtremum.d.ts +1 -1
- package/internals/plugins/featurePlugins/useChartPolarAxis/getAxisTriggerTooltip.d.mts +1 -1
- package/internals/plugins/featurePlugins/useChartPolarAxis/getAxisTriggerTooltip.d.ts +1 -1
- package/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarInteraction.selectors.js +6 -4
- package/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarInteraction.selectors.mjs +6 -4
- package/internals/plugins/featurePlugins/useChartTooltip/useChartTooltip.types.d.mts +10 -10
- package/internals/plugins/featurePlugins/useChartTooltip/useChartTooltip.types.d.ts +10 -10
- package/internals/plugins/featurePlugins/useChartVisibilityManager/useChartVisibilityManager.types.d.mts +16 -16
- package/internals/plugins/featurePlugins/useChartVisibilityManager/useChartVisibilityManager.types.d.ts +16 -16
- package/internals/plugins/models/chart.d.mts +1 -1
- package/internals/plugins/models/chart.d.ts +1 -1
- package/models/seriesType/config.d.mts +18 -6
- package/models/seriesType/config.d.ts +18 -6
- package/models/seriesType/index.d.mts +8 -8
- package/models/seriesType/index.d.ts +8 -8
- package/models/seriesType/line.d.mts +2 -1
- package/models/seriesType/line.d.ts +2 -1
- package/models/seriesType/radar.d.mts +1 -1
- package/models/seriesType/radar.d.ts +1 -1
- package/package.json +3 -3
- package/themeAugmentation/components.d.mts +26 -1
- package/themeAugmentation/components.d.ts +26 -1
- package/themeAugmentation/overrides.d.mts +15 -1
- package/themeAugmentation/overrides.d.ts +15 -1
- package/hooks/useItemHighlighted.mjs +0 -22
- package/hooks/useItemHighlightedGetter.d.mts +0 -53
- package/hooks/useItemHighlightedGetter.d.ts +0 -53
- package/hooks/useItemHighlightedGetter.js +0 -26
- package/hooks/useItemHighlightedGetter.mjs +0 -21
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { type ChartsYAxisProps } from "../models/axis.js";
|
|
2
2
|
import { ChartsText, type ChartsTextProps } from "../ChartsText/index.js";
|
|
3
3
|
export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
4
|
-
yScale: import("packages/x-charts-vendor/build/d3-scale").
|
|
4
|
+
yScale: import("packages/x-charts-vendor/build/d3-scale").ScaleLinear<number, number, never> | import("packages/x-charts-vendor/build/d3-scale").ScaleTime<number, number, never> | import("packages/x-charts-vendor/build/d3-scale").ScaleLogarithmic<number, number, never> | import("packages/x-charts-vendor/build/d3-scale").ScaleBand<{
|
|
5
5
|
toString(): string;
|
|
6
6
|
}> | import("packages/x-charts-vendor/build/d3-scale").ScalePoint<{
|
|
7
7
|
toString(): string;
|
|
@@ -28,12 +28,12 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
28
28
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
29
29
|
tickLabelPlacement?: "middle" | "tick";
|
|
30
30
|
data?: readonly any[] | undefined;
|
|
31
|
+
dataKey?: string | undefined;
|
|
32
|
+
id: import("../internals/index.js").AxisId;
|
|
33
|
+
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
31
34
|
position?: "left" | "right" | "none";
|
|
32
35
|
width: number;
|
|
33
36
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
34
|
-
id: import("../internals/index.js").AxisId;
|
|
35
|
-
dataKey?: string | undefined;
|
|
36
|
-
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
37
37
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
38
38
|
hideTooltip?: boolean | undefined;
|
|
39
39
|
domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
|
|
@@ -42,8 +42,8 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
42
42
|
}) | undefined;
|
|
43
43
|
ignoreTooltip?: boolean | undefined;
|
|
44
44
|
offset: number;
|
|
45
|
-
scaleType: "
|
|
46
|
-
colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number
|
|
45
|
+
scaleType: "linear";
|
|
46
|
+
colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number, string | null>;
|
|
47
47
|
triggerTooltip?: boolean;
|
|
48
48
|
} | {
|
|
49
49
|
axis?: "y";
|
|
@@ -67,12 +67,12 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
67
67
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
68
68
|
tickLabelPlacement?: "middle" | "tick";
|
|
69
69
|
data?: readonly any[] | undefined;
|
|
70
|
+
dataKey?: string | undefined;
|
|
71
|
+
id: import("../internals/index.js").AxisId;
|
|
72
|
+
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
70
73
|
position?: "left" | "right" | "none";
|
|
71
74
|
width: number;
|
|
72
75
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
73
|
-
id: import("../internals/index.js").AxisId;
|
|
74
|
-
dataKey?: string | undefined;
|
|
75
|
-
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
76
76
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
77
77
|
hideTooltip?: boolean | undefined;
|
|
78
78
|
domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
|
|
@@ -81,8 +81,8 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
81
81
|
}) | undefined;
|
|
82
82
|
ignoreTooltip?: boolean | undefined;
|
|
83
83
|
offset: number;
|
|
84
|
-
scaleType: "
|
|
85
|
-
colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number, string | null>;
|
|
84
|
+
scaleType: "linear";
|
|
85
|
+
colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
86
86
|
triggerTooltip?: boolean;
|
|
87
87
|
} | {
|
|
88
88
|
axis?: "y";
|
|
@@ -106,12 +106,12 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
106
106
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
107
107
|
tickLabelPlacement?: "middle" | "tick";
|
|
108
108
|
data?: readonly any[] | undefined;
|
|
109
|
+
dataKey?: string | undefined;
|
|
110
|
+
id: import("../internals/index.js").AxisId;
|
|
111
|
+
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
109
112
|
position?: "left" | "right" | "none";
|
|
110
113
|
width: number;
|
|
111
114
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
112
|
-
id: import("../internals/index.js").AxisId;
|
|
113
|
-
dataKey?: string | undefined;
|
|
114
|
-
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
115
115
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
116
116
|
hideTooltip?: boolean | undefined;
|
|
117
117
|
domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
|
|
@@ -120,7 +120,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
120
120
|
}) | undefined;
|
|
121
121
|
ignoreTooltip?: boolean | undefined;
|
|
122
122
|
offset: number;
|
|
123
|
-
scaleType: "
|
|
123
|
+
scaleType: "linear";
|
|
124
124
|
colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number, string | null>;
|
|
125
125
|
triggerTooltip?: boolean;
|
|
126
126
|
} | {
|
|
@@ -145,12 +145,12 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
145
145
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
146
146
|
tickLabelPlacement?: "middle" | "tick";
|
|
147
147
|
data?: readonly any[] | undefined;
|
|
148
|
+
dataKey?: string | undefined;
|
|
149
|
+
id: import("../internals/index.js").AxisId;
|
|
150
|
+
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
148
151
|
position?: "left" | "right" | "none";
|
|
149
152
|
width: number;
|
|
150
153
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
151
|
-
id: import("../internals/index.js").AxisId;
|
|
152
|
-
dataKey?: string | undefined;
|
|
153
|
-
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
154
154
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
155
155
|
hideTooltip?: boolean | undefined;
|
|
156
156
|
domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
|
|
@@ -159,7 +159,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
159
159
|
}) | undefined;
|
|
160
160
|
ignoreTooltip?: boolean | undefined;
|
|
161
161
|
offset: number;
|
|
162
|
-
scaleType: "
|
|
162
|
+
scaleType: "linear";
|
|
163
163
|
colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleOrdinal<string | number | Date, string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleOrdinal<number, string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
164
164
|
triggerTooltip?: boolean;
|
|
165
165
|
} | {
|
|
@@ -184,12 +184,12 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
184
184
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
185
185
|
tickLabelPlacement?: "middle" | "tick";
|
|
186
186
|
data?: readonly any[] | undefined;
|
|
187
|
+
dataKey?: string | undefined;
|
|
188
|
+
id: import("../internals/index.js").AxisId;
|
|
189
|
+
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
187
190
|
position?: "left" | "right" | "none";
|
|
188
191
|
width: number;
|
|
189
192
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
190
|
-
id: import("../internals/index.js").AxisId;
|
|
191
|
-
dataKey?: string | undefined;
|
|
192
|
-
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
193
193
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
194
194
|
hideTooltip?: boolean | undefined;
|
|
195
195
|
domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
|
|
@@ -198,7 +198,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
198
198
|
}) | undefined;
|
|
199
199
|
ignoreTooltip?: boolean | undefined;
|
|
200
200
|
offset: number;
|
|
201
|
-
scaleType: "
|
|
201
|
+
scaleType: "linear";
|
|
202
202
|
colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleOrdinal<string | number | Date, string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleOrdinal<number, string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
203
203
|
triggerTooltip?: boolean;
|
|
204
204
|
} | {
|
|
@@ -223,12 +223,12 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
223
223
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
224
224
|
tickLabelPlacement?: "middle" | "tick";
|
|
225
225
|
data?: readonly any[] | undefined;
|
|
226
|
+
dataKey?: string | undefined;
|
|
227
|
+
id: import("../internals/index.js").AxisId;
|
|
228
|
+
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
226
229
|
position?: "left" | "right" | "none";
|
|
227
230
|
width: number;
|
|
228
231
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
229
|
-
id: import("../internals/index.js").AxisId;
|
|
230
|
-
dataKey?: string | undefined;
|
|
231
|
-
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
232
232
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
233
233
|
hideTooltip?: boolean | undefined;
|
|
234
234
|
domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
|
|
@@ -237,7 +237,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
237
237
|
}) | undefined;
|
|
238
238
|
ignoreTooltip?: boolean | undefined;
|
|
239
239
|
offset: number;
|
|
240
|
-
scaleType: "
|
|
240
|
+
scaleType: "linear";
|
|
241
241
|
colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number, string | null>;
|
|
242
242
|
triggerTooltip?: boolean;
|
|
243
243
|
} | {
|
|
@@ -262,12 +262,12 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
262
262
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
263
263
|
tickLabelPlacement?: "middle" | "tick";
|
|
264
264
|
data?: readonly any[] | undefined;
|
|
265
|
+
dataKey?: string | undefined;
|
|
266
|
+
id: import("../internals/index.js").AxisId;
|
|
267
|
+
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
265
268
|
position?: "left" | "right" | "none";
|
|
266
269
|
width: number;
|
|
267
270
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
268
|
-
id: import("../internals/index.js").AxisId;
|
|
269
|
-
dataKey?: string | undefined;
|
|
270
|
-
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
271
271
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
272
272
|
hideTooltip?: boolean | undefined;
|
|
273
273
|
domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
|
|
@@ -276,7 +276,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
276
276
|
}) | undefined;
|
|
277
277
|
ignoreTooltip?: boolean | undefined;
|
|
278
278
|
offset: number;
|
|
279
|
-
scaleType: "
|
|
279
|
+
scaleType: "linear";
|
|
280
280
|
colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number, string | null>;
|
|
281
281
|
triggerTooltip?: boolean;
|
|
282
282
|
} | {
|
|
@@ -301,12 +301,12 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
301
301
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
302
302
|
tickLabelPlacement?: "middle" | "tick";
|
|
303
303
|
data?: readonly any[] | undefined;
|
|
304
|
+
dataKey?: string | undefined;
|
|
305
|
+
id: import("../internals/index.js").AxisId;
|
|
306
|
+
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
304
307
|
position?: "left" | "right" | "none";
|
|
305
308
|
width: number;
|
|
306
309
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
307
|
-
id: import("../internals/index.js").AxisId;
|
|
308
|
-
dataKey?: string | undefined;
|
|
309
|
-
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
310
310
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
311
311
|
hideTooltip?: boolean | undefined;
|
|
312
312
|
domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
|
|
@@ -315,7 +315,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
315
315
|
}) | undefined;
|
|
316
316
|
ignoreTooltip?: boolean | undefined;
|
|
317
317
|
offset: number;
|
|
318
|
-
scaleType: "
|
|
318
|
+
scaleType: "linear";
|
|
319
319
|
colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number, string | null>;
|
|
320
320
|
triggerTooltip?: boolean;
|
|
321
321
|
} | {
|
|
@@ -340,12 +340,12 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
340
340
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
341
341
|
tickLabelPlacement?: "middle" | "tick";
|
|
342
342
|
data?: readonly any[] | undefined;
|
|
343
|
+
dataKey?: string | undefined;
|
|
344
|
+
id: import("../internals/index.js").AxisId;
|
|
345
|
+
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
343
346
|
position?: "left" | "right" | "none";
|
|
344
347
|
width: number;
|
|
345
348
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
346
|
-
id: import("../internals/index.js").AxisId;
|
|
347
|
-
dataKey?: string | undefined;
|
|
348
|
-
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
349
349
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
350
350
|
hideTooltip?: boolean | undefined;
|
|
351
351
|
domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
|
|
@@ -354,7 +354,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
354
354
|
}) | undefined;
|
|
355
355
|
ignoreTooltip?: boolean | undefined;
|
|
356
356
|
offset: number;
|
|
357
|
-
scaleType: "
|
|
357
|
+
scaleType: "linear";
|
|
358
358
|
colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
359
359
|
triggerTooltip?: boolean;
|
|
360
360
|
} | {
|
|
@@ -379,12 +379,12 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
379
379
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
380
380
|
tickLabelPlacement?: "middle" | "tick";
|
|
381
381
|
data?: readonly any[] | undefined;
|
|
382
|
+
dataKey?: string | undefined;
|
|
383
|
+
id: import("../internals/index.js").AxisId;
|
|
384
|
+
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
382
385
|
position?: "left" | "right" | "none";
|
|
383
386
|
width: number;
|
|
384
387
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
385
|
-
id: import("../internals/index.js").AxisId;
|
|
386
|
-
dataKey?: string | undefined;
|
|
387
|
-
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
388
388
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
389
389
|
hideTooltip?: boolean | undefined;
|
|
390
390
|
domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
|
|
@@ -393,8 +393,8 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
393
393
|
}) | undefined;
|
|
394
394
|
ignoreTooltip?: boolean | undefined;
|
|
395
395
|
offset: number;
|
|
396
|
-
scaleType: "
|
|
397
|
-
colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number
|
|
396
|
+
scaleType: "time";
|
|
397
|
+
colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number, string | null>;
|
|
398
398
|
triggerTooltip?: boolean;
|
|
399
399
|
} | {
|
|
400
400
|
axis?: "y";
|
|
@@ -418,12 +418,12 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
418
418
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
419
419
|
tickLabelPlacement?: "middle" | "tick";
|
|
420
420
|
data?: readonly any[] | undefined;
|
|
421
|
+
dataKey?: string | undefined;
|
|
422
|
+
id: import("../internals/index.js").AxisId;
|
|
423
|
+
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
421
424
|
position?: "left" | "right" | "none";
|
|
422
425
|
width: number;
|
|
423
426
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
424
|
-
id: import("../internals/index.js").AxisId;
|
|
425
|
-
dataKey?: string | undefined;
|
|
426
|
-
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
427
427
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
428
428
|
hideTooltip?: boolean | undefined;
|
|
429
429
|
domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
|
|
@@ -432,8 +432,8 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
432
432
|
}) | undefined;
|
|
433
433
|
ignoreTooltip?: boolean | undefined;
|
|
434
434
|
offset: number;
|
|
435
|
-
scaleType: "
|
|
436
|
-
colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number, string | null>;
|
|
435
|
+
scaleType: "time";
|
|
436
|
+
colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
437
437
|
triggerTooltip?: boolean;
|
|
438
438
|
} | {
|
|
439
439
|
axis?: "y";
|
|
@@ -457,12 +457,12 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
457
457
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
458
458
|
tickLabelPlacement?: "middle" | "tick";
|
|
459
459
|
data?: readonly any[] | undefined;
|
|
460
|
+
dataKey?: string | undefined;
|
|
461
|
+
id: import("../internals/index.js").AxisId;
|
|
462
|
+
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
460
463
|
position?: "left" | "right" | "none";
|
|
461
464
|
width: number;
|
|
462
465
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
463
|
-
id: import("../internals/index.js").AxisId;
|
|
464
|
-
dataKey?: string | undefined;
|
|
465
|
-
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
466
466
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
467
467
|
hideTooltip?: boolean | undefined;
|
|
468
468
|
domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
|
|
@@ -471,7 +471,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
471
471
|
}) | undefined;
|
|
472
472
|
ignoreTooltip?: boolean | undefined;
|
|
473
473
|
offset: number;
|
|
474
|
-
scaleType: "
|
|
474
|
+
scaleType: "time";
|
|
475
475
|
colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number, string | null>;
|
|
476
476
|
triggerTooltip?: boolean;
|
|
477
477
|
} | {
|
|
@@ -496,12 +496,12 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
496
496
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
497
497
|
tickLabelPlacement?: "middle" | "tick";
|
|
498
498
|
data?: readonly any[] | undefined;
|
|
499
|
+
dataKey?: string | undefined;
|
|
500
|
+
id: import("../internals/index.js").AxisId;
|
|
501
|
+
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
499
502
|
position?: "left" | "right" | "none";
|
|
500
503
|
width: number;
|
|
501
504
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
502
|
-
id: import("../internals/index.js").AxisId;
|
|
503
|
-
dataKey?: string | undefined;
|
|
504
|
-
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
505
505
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
506
506
|
hideTooltip?: boolean | undefined;
|
|
507
507
|
domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
|
|
@@ -510,7 +510,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
510
510
|
}) | undefined;
|
|
511
511
|
ignoreTooltip?: boolean | undefined;
|
|
512
512
|
offset: number;
|
|
513
|
-
scaleType: "
|
|
513
|
+
scaleType: "time";
|
|
514
514
|
colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleOrdinal<string | number | Date, string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleOrdinal<number, string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
515
515
|
triggerTooltip?: boolean;
|
|
516
516
|
} | {
|
|
@@ -535,12 +535,12 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
535
535
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
536
536
|
tickLabelPlacement?: "middle" | "tick";
|
|
537
537
|
data?: readonly any[] | undefined;
|
|
538
|
+
dataKey?: string | undefined;
|
|
539
|
+
id: import("../internals/index.js").AxisId;
|
|
540
|
+
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
538
541
|
position?: "left" | "right" | "none";
|
|
539
542
|
width: number;
|
|
540
543
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
541
|
-
id: import("../internals/index.js").AxisId;
|
|
542
|
-
dataKey?: string | undefined;
|
|
543
|
-
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
544
544
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
545
545
|
hideTooltip?: boolean | undefined;
|
|
546
546
|
domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
|
|
@@ -549,7 +549,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
549
549
|
}) | undefined;
|
|
550
550
|
ignoreTooltip?: boolean | undefined;
|
|
551
551
|
offset: number;
|
|
552
|
-
scaleType: "
|
|
552
|
+
scaleType: "time";
|
|
553
553
|
colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleOrdinal<string | number | Date, string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleOrdinal<number, string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
554
554
|
triggerTooltip?: boolean;
|
|
555
555
|
} | {
|
|
@@ -574,12 +574,12 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
574
574
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
575
575
|
tickLabelPlacement?: "middle" | "tick";
|
|
576
576
|
data?: readonly any[] | undefined;
|
|
577
|
+
dataKey?: string | undefined;
|
|
578
|
+
id: import("../internals/index.js").AxisId;
|
|
579
|
+
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
577
580
|
position?: "left" | "right" | "none";
|
|
578
581
|
width: number;
|
|
579
582
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
580
|
-
id: import("../internals/index.js").AxisId;
|
|
581
|
-
dataKey?: string | undefined;
|
|
582
|
-
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
583
583
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
584
584
|
hideTooltip?: boolean | undefined;
|
|
585
585
|
domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
|
|
@@ -588,7 +588,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
588
588
|
}) | undefined;
|
|
589
589
|
ignoreTooltip?: boolean | undefined;
|
|
590
590
|
offset: number;
|
|
591
|
-
scaleType: "
|
|
591
|
+
scaleType: "time";
|
|
592
592
|
colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number, string | null>;
|
|
593
593
|
triggerTooltip?: boolean;
|
|
594
594
|
} | {
|
|
@@ -613,12 +613,12 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
613
613
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
614
614
|
tickLabelPlacement?: "middle" | "tick";
|
|
615
615
|
data?: readonly any[] | undefined;
|
|
616
|
+
dataKey?: string | undefined;
|
|
617
|
+
id: import("../internals/index.js").AxisId;
|
|
618
|
+
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
616
619
|
position?: "left" | "right" | "none";
|
|
617
620
|
width: number;
|
|
618
621
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
619
|
-
id: import("../internals/index.js").AxisId;
|
|
620
|
-
dataKey?: string | undefined;
|
|
621
|
-
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
622
622
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
623
623
|
hideTooltip?: boolean | undefined;
|
|
624
624
|
domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
|
|
@@ -627,7 +627,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
627
627
|
}) | undefined;
|
|
628
628
|
ignoreTooltip?: boolean | undefined;
|
|
629
629
|
offset: number;
|
|
630
|
-
scaleType: "
|
|
630
|
+
scaleType: "time";
|
|
631
631
|
colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number, string | null>;
|
|
632
632
|
triggerTooltip?: boolean;
|
|
633
633
|
} | {
|
|
@@ -652,12 +652,12 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
652
652
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
653
653
|
tickLabelPlacement?: "middle" | "tick";
|
|
654
654
|
data?: readonly any[] | undefined;
|
|
655
|
+
dataKey?: string | undefined;
|
|
656
|
+
id: import("../internals/index.js").AxisId;
|
|
657
|
+
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
655
658
|
position?: "left" | "right" | "none";
|
|
656
659
|
width: number;
|
|
657
660
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
658
|
-
id: import("../internals/index.js").AxisId;
|
|
659
|
-
dataKey?: string | undefined;
|
|
660
|
-
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
661
661
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
662
662
|
hideTooltip?: boolean | undefined;
|
|
663
663
|
domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
|
|
@@ -666,7 +666,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
666
666
|
}) | undefined;
|
|
667
667
|
ignoreTooltip?: boolean | undefined;
|
|
668
668
|
offset: number;
|
|
669
|
-
scaleType: "
|
|
669
|
+
scaleType: "time";
|
|
670
670
|
colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number, string | null>;
|
|
671
671
|
triggerTooltip?: boolean;
|
|
672
672
|
} | {
|
|
@@ -691,12 +691,12 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
691
691
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
692
692
|
tickLabelPlacement?: "middle" | "tick";
|
|
693
693
|
data?: readonly any[] | undefined;
|
|
694
|
+
dataKey?: string | undefined;
|
|
695
|
+
id: import("../internals/index.js").AxisId;
|
|
696
|
+
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
694
697
|
position?: "left" | "right" | "none";
|
|
695
698
|
width: number;
|
|
696
699
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
697
|
-
id: import("../internals/index.js").AxisId;
|
|
698
|
-
dataKey?: string | undefined;
|
|
699
|
-
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
700
700
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
701
701
|
hideTooltip?: boolean | undefined;
|
|
702
702
|
domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
|
|
@@ -705,7 +705,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
705
705
|
}) | undefined;
|
|
706
706
|
ignoreTooltip?: boolean | undefined;
|
|
707
707
|
offset: number;
|
|
708
|
-
scaleType: "
|
|
708
|
+
scaleType: "time";
|
|
709
709
|
colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
710
710
|
triggerTooltip?: boolean;
|
|
711
711
|
} | {
|
|
@@ -730,12 +730,12 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
730
730
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
731
731
|
tickLabelPlacement?: "middle" | "tick";
|
|
732
732
|
data?: readonly any[] | undefined;
|
|
733
|
+
dataKey?: string | undefined;
|
|
734
|
+
id: import("../internals/index.js").AxisId;
|
|
735
|
+
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
733
736
|
position?: "left" | "right" | "none";
|
|
734
737
|
width: number;
|
|
735
738
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
736
|
-
id: import("../internals/index.js").AxisId;
|
|
737
|
-
dataKey?: string | undefined;
|
|
738
|
-
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
739
739
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
740
740
|
hideTooltip?: boolean | undefined;
|
|
741
741
|
domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
|
|
@@ -745,7 +745,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
745
745
|
ignoreTooltip?: boolean | undefined;
|
|
746
746
|
offset: number;
|
|
747
747
|
scaleType: "log";
|
|
748
|
-
colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number
|
|
748
|
+
colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number, string | null>;
|
|
749
749
|
triggerTooltip?: boolean;
|
|
750
750
|
} | {
|
|
751
751
|
axis?: "y";
|
|
@@ -769,12 +769,12 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
769
769
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
770
770
|
tickLabelPlacement?: "middle" | "tick";
|
|
771
771
|
data?: readonly any[] | undefined;
|
|
772
|
+
dataKey?: string | undefined;
|
|
773
|
+
id: import("../internals/index.js").AxisId;
|
|
774
|
+
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
772
775
|
position?: "left" | "right" | "none";
|
|
773
776
|
width: number;
|
|
774
777
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
775
|
-
id: import("../internals/index.js").AxisId;
|
|
776
|
-
dataKey?: string | undefined;
|
|
777
|
-
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
778
778
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
779
779
|
hideTooltip?: boolean | undefined;
|
|
780
780
|
domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
|
|
@@ -784,7 +784,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
784
784
|
ignoreTooltip?: boolean | undefined;
|
|
785
785
|
offset: number;
|
|
786
786
|
scaleType: "log";
|
|
787
|
-
colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number, string | null>;
|
|
787
|
+
colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
788
788
|
triggerTooltip?: boolean;
|
|
789
789
|
} | {
|
|
790
790
|
axis?: "y";
|
|
@@ -808,12 +808,12 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
808
808
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
809
809
|
tickLabelPlacement?: "middle" | "tick";
|
|
810
810
|
data?: readonly any[] | undefined;
|
|
811
|
+
dataKey?: string | undefined;
|
|
812
|
+
id: import("../internals/index.js").AxisId;
|
|
813
|
+
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
811
814
|
position?: "left" | "right" | "none";
|
|
812
815
|
width: number;
|
|
813
816
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
814
|
-
id: import("../internals/index.js").AxisId;
|
|
815
|
-
dataKey?: string | undefined;
|
|
816
|
-
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
817
817
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
818
818
|
hideTooltip?: boolean | undefined;
|
|
819
819
|
domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
|
|
@@ -847,12 +847,12 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
847
847
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
848
848
|
tickLabelPlacement?: "middle" | "tick";
|
|
849
849
|
data?: readonly any[] | undefined;
|
|
850
|
+
dataKey?: string | undefined;
|
|
851
|
+
id: import("../internals/index.js").AxisId;
|
|
852
|
+
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
850
853
|
position?: "left" | "right" | "none";
|
|
851
854
|
width: number;
|
|
852
855
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
853
|
-
id: import("../internals/index.js").AxisId;
|
|
854
|
-
dataKey?: string | undefined;
|
|
855
|
-
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
856
856
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
857
857
|
hideTooltip?: boolean | undefined;
|
|
858
858
|
domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
|
|
@@ -886,12 +886,12 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
886
886
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
887
887
|
tickLabelPlacement?: "middle" | "tick";
|
|
888
888
|
data?: readonly any[] | undefined;
|
|
889
|
+
dataKey?: string | undefined;
|
|
890
|
+
id: import("../internals/index.js").AxisId;
|
|
891
|
+
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
889
892
|
position?: "left" | "right" | "none";
|
|
890
893
|
width: number;
|
|
891
894
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
892
|
-
id: import("../internals/index.js").AxisId;
|
|
893
|
-
dataKey?: string | undefined;
|
|
894
|
-
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
895
895
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
896
896
|
hideTooltip?: boolean | undefined;
|
|
897
897
|
domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
|
|
@@ -925,12 +925,12 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
925
925
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
926
926
|
tickLabelPlacement?: "middle" | "tick";
|
|
927
927
|
data?: readonly any[] | undefined;
|
|
928
|
+
dataKey?: string | undefined;
|
|
929
|
+
id: import("../internals/index.js").AxisId;
|
|
930
|
+
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
928
931
|
position?: "left" | "right" | "none";
|
|
929
932
|
width: number;
|
|
930
933
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
931
|
-
id: import("../internals/index.js").AxisId;
|
|
932
|
-
dataKey?: string | undefined;
|
|
933
|
-
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
934
934
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
935
935
|
hideTooltip?: boolean | undefined;
|
|
936
936
|
domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
|
|
@@ -964,12 +964,12 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
964
964
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
965
965
|
tickLabelPlacement?: "middle" | "tick";
|
|
966
966
|
data?: readonly any[] | undefined;
|
|
967
|
+
dataKey?: string | undefined;
|
|
968
|
+
id: import("../internals/index.js").AxisId;
|
|
969
|
+
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
967
970
|
position?: "left" | "right" | "none";
|
|
968
971
|
width: number;
|
|
969
972
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
970
|
-
id: import("../internals/index.js").AxisId;
|
|
971
|
-
dataKey?: string | undefined;
|
|
972
|
-
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
973
973
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
974
974
|
hideTooltip?: boolean | undefined;
|
|
975
975
|
domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
|
|
@@ -1003,12 +1003,12 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1003
1003
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
1004
1004
|
tickLabelPlacement?: "middle" | "tick";
|
|
1005
1005
|
data?: readonly any[] | undefined;
|
|
1006
|
+
dataKey?: string | undefined;
|
|
1007
|
+
id: import("../internals/index.js").AxisId;
|
|
1008
|
+
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1006
1009
|
position?: "left" | "right" | "none";
|
|
1007
1010
|
width: number;
|
|
1008
1011
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
1009
|
-
id: import("../internals/index.js").AxisId;
|
|
1010
|
-
dataKey?: string | undefined;
|
|
1011
|
-
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1012
1012
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
1013
1013
|
hideTooltip?: boolean | undefined;
|
|
1014
1014
|
domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
|
|
@@ -1042,12 +1042,12 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1042
1042
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
1043
1043
|
tickLabelPlacement?: "middle" | "tick";
|
|
1044
1044
|
data?: readonly any[] | undefined;
|
|
1045
|
+
dataKey?: string | undefined;
|
|
1046
|
+
id: import("../internals/index.js").AxisId;
|
|
1047
|
+
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1045
1048
|
position?: "left" | "right" | "none";
|
|
1046
1049
|
width: number;
|
|
1047
1050
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
1048
|
-
id: import("../internals/index.js").AxisId;
|
|
1049
|
-
dataKey?: string | undefined;
|
|
1050
|
-
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1051
1051
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
1052
1052
|
hideTooltip?: boolean | undefined;
|
|
1053
1053
|
domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
|
|
@@ -1081,12 +1081,12 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1081
1081
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
1082
1082
|
tickLabelPlacement?: "middle" | "tick";
|
|
1083
1083
|
data?: readonly any[] | undefined;
|
|
1084
|
+
dataKey?: string | undefined;
|
|
1085
|
+
id: import("../internals/index.js").AxisId;
|
|
1086
|
+
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1084
1087
|
position?: "left" | "right" | "none";
|
|
1085
1088
|
width: number;
|
|
1086
1089
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
1087
|
-
id: import("../internals/index.js").AxisId;
|
|
1088
|
-
dataKey?: string | undefined;
|
|
1089
|
-
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1090
1090
|
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
1091
1091
|
hideTooltip?: boolean | undefined;
|
|
1092
1092
|
domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
|
|
@@ -1100,7 +1100,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1100
1100
|
categoryGapRatio: number;
|
|
1101
1101
|
barGapRatio: number;
|
|
1102
1102
|
groups?: import("../internals/index.js").AxisGroup[];
|
|
1103
|
-
colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number
|
|
1103
|
+
colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number, string | null>;
|
|
1104
1104
|
triggerTooltip?: boolean;
|
|
1105
1105
|
} | {
|
|
1106
1106
|
axis?: "y";
|
|
@@ -1124,12 +1124,12 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1124
1124
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
1125
1125
|
tickLabelPlacement?: "middle" | "tick";
|
|
1126
1126
|
data?: readonly any[] | undefined;
|
|
1127
|
+
dataKey?: string | undefined;
|
|
1128
|
+
id: import("../internals/index.js").AxisId;
|
|
1129
|
+
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1127
1130
|
position?: "left" | "right" | "none";
|
|
1128
1131
|
width: number;
|
|
1129
1132
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
1130
|
-
id: import("../internals/index.js").AxisId;
|
|
1131
|
-
dataKey?: string | undefined;
|
|
1132
|
-
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1133
1133
|
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
1134
1134
|
hideTooltip?: boolean | undefined;
|
|
1135
1135
|
domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
|
|
@@ -1143,7 +1143,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1143
1143
|
categoryGapRatio: number;
|
|
1144
1144
|
barGapRatio: number;
|
|
1145
1145
|
groups?: import("../internals/index.js").AxisGroup[];
|
|
1146
|
-
colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number, string | null>;
|
|
1146
|
+
colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
1147
1147
|
triggerTooltip?: boolean;
|
|
1148
1148
|
} | {
|
|
1149
1149
|
axis?: "y";
|
|
@@ -1167,12 +1167,12 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1167
1167
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
1168
1168
|
tickLabelPlacement?: "middle" | "tick";
|
|
1169
1169
|
data?: readonly any[] | undefined;
|
|
1170
|
+
dataKey?: string | undefined;
|
|
1171
|
+
id: import("../internals/index.js").AxisId;
|
|
1172
|
+
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1170
1173
|
position?: "left" | "right" | "none";
|
|
1171
1174
|
width: number;
|
|
1172
1175
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
1173
|
-
id: import("../internals/index.js").AxisId;
|
|
1174
|
-
dataKey?: string | undefined;
|
|
1175
|
-
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1176
1176
|
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
1177
1177
|
hideTooltip?: boolean | undefined;
|
|
1178
1178
|
domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
|
|
@@ -1210,12 +1210,12 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1210
1210
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
1211
1211
|
tickLabelPlacement?: "middle" | "tick";
|
|
1212
1212
|
data?: readonly any[] | undefined;
|
|
1213
|
+
dataKey?: string | undefined;
|
|
1214
|
+
id: import("../internals/index.js").AxisId;
|
|
1215
|
+
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1213
1216
|
position?: "left" | "right" | "none";
|
|
1214
1217
|
width: number;
|
|
1215
1218
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
1216
|
-
id: import("../internals/index.js").AxisId;
|
|
1217
|
-
dataKey?: string | undefined;
|
|
1218
|
-
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1219
1219
|
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
1220
1220
|
hideTooltip?: boolean | undefined;
|
|
1221
1221
|
domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
|
|
@@ -1253,12 +1253,12 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1253
1253
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
1254
1254
|
tickLabelPlacement?: "middle" | "tick";
|
|
1255
1255
|
data?: readonly any[] | undefined;
|
|
1256
|
+
dataKey?: string | undefined;
|
|
1257
|
+
id: import("../internals/index.js").AxisId;
|
|
1258
|
+
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1256
1259
|
position?: "left" | "right" | "none";
|
|
1257
1260
|
width: number;
|
|
1258
1261
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
1259
|
-
id: import("../internals/index.js").AxisId;
|
|
1260
|
-
dataKey?: string | undefined;
|
|
1261
|
-
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1262
1262
|
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
1263
1263
|
hideTooltip?: boolean | undefined;
|
|
1264
1264
|
domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
|
|
@@ -1296,12 +1296,12 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1296
1296
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
1297
1297
|
tickLabelPlacement?: "middle" | "tick";
|
|
1298
1298
|
data?: readonly any[] | undefined;
|
|
1299
|
+
dataKey?: string | undefined;
|
|
1300
|
+
id: import("../internals/index.js").AxisId;
|
|
1301
|
+
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1299
1302
|
position?: "left" | "right" | "none";
|
|
1300
1303
|
width: number;
|
|
1301
1304
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
1302
|
-
id: import("../internals/index.js").AxisId;
|
|
1303
|
-
dataKey?: string | undefined;
|
|
1304
|
-
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1305
1305
|
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
1306
1306
|
hideTooltip?: boolean | undefined;
|
|
1307
1307
|
domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
|
|
@@ -1339,12 +1339,12 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1339
1339
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
1340
1340
|
tickLabelPlacement?: "middle" | "tick";
|
|
1341
1341
|
data?: readonly any[] | undefined;
|
|
1342
|
+
dataKey?: string | undefined;
|
|
1343
|
+
id: import("../internals/index.js").AxisId;
|
|
1344
|
+
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1342
1345
|
position?: "left" | "right" | "none";
|
|
1343
1346
|
width: number;
|
|
1344
1347
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
1345
|
-
id: import("../internals/index.js").AxisId;
|
|
1346
|
-
dataKey?: string | undefined;
|
|
1347
|
-
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1348
1348
|
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
1349
1349
|
hideTooltip?: boolean | undefined;
|
|
1350
1350
|
domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
|
|
@@ -1382,12 +1382,12 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1382
1382
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
1383
1383
|
tickLabelPlacement?: "middle" | "tick";
|
|
1384
1384
|
data?: readonly any[] | undefined;
|
|
1385
|
+
dataKey?: string | undefined;
|
|
1386
|
+
id: import("../internals/index.js").AxisId;
|
|
1387
|
+
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1385
1388
|
position?: "left" | "right" | "none";
|
|
1386
1389
|
width: number;
|
|
1387
1390
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
1388
|
-
id: import("../internals/index.js").AxisId;
|
|
1389
|
-
dataKey?: string | undefined;
|
|
1390
|
-
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1391
1391
|
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
1392
1392
|
hideTooltip?: boolean | undefined;
|
|
1393
1393
|
domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
|
|
@@ -1425,12 +1425,12 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1425
1425
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
1426
1426
|
tickLabelPlacement?: "middle" | "tick";
|
|
1427
1427
|
data?: readonly any[] | undefined;
|
|
1428
|
+
dataKey?: string | undefined;
|
|
1429
|
+
id: import("../internals/index.js").AxisId;
|
|
1430
|
+
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1428
1431
|
position?: "left" | "right" | "none";
|
|
1429
1432
|
width: number;
|
|
1430
1433
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
1431
|
-
id: import("../internals/index.js").AxisId;
|
|
1432
|
-
dataKey?: string | undefined;
|
|
1433
|
-
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1434
1434
|
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
1435
1435
|
hideTooltip?: boolean | undefined;
|
|
1436
1436
|
domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
|
|
@@ -1468,12 +1468,12 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1468
1468
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
1469
1469
|
tickLabelPlacement?: "middle" | "tick";
|
|
1470
1470
|
data?: readonly any[] | undefined;
|
|
1471
|
+
dataKey?: string | undefined;
|
|
1472
|
+
id: import("../internals/index.js").AxisId;
|
|
1473
|
+
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1471
1474
|
position?: "left" | "right" | "none";
|
|
1472
1475
|
width: number;
|
|
1473
1476
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
1474
|
-
id: import("../internals/index.js").AxisId;
|
|
1475
|
-
dataKey?: string | undefined;
|
|
1476
|
-
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1477
1477
|
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
1478
1478
|
hideTooltip?: boolean | undefined;
|
|
1479
1479
|
domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
|
|
@@ -1485,7 +1485,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1485
1485
|
scaleType: "point";
|
|
1486
1486
|
ordinalTimeTicks?: import("../index.js").OrdinalTimeTicks;
|
|
1487
1487
|
groups?: import("../internals/index.js").AxisGroup[];
|
|
1488
|
-
colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number
|
|
1488
|
+
colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number, string | null>;
|
|
1489
1489
|
triggerTooltip?: boolean;
|
|
1490
1490
|
} | {
|
|
1491
1491
|
axis?: "y";
|
|
@@ -1509,12 +1509,12 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1509
1509
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
1510
1510
|
tickLabelPlacement?: "middle" | "tick";
|
|
1511
1511
|
data?: readonly any[] | undefined;
|
|
1512
|
+
dataKey?: string | undefined;
|
|
1513
|
+
id: import("../internals/index.js").AxisId;
|
|
1514
|
+
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1512
1515
|
position?: "left" | "right" | "none";
|
|
1513
1516
|
width: number;
|
|
1514
1517
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
1515
|
-
id: import("../internals/index.js").AxisId;
|
|
1516
|
-
dataKey?: string | undefined;
|
|
1517
|
-
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1518
1518
|
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
1519
1519
|
hideTooltip?: boolean | undefined;
|
|
1520
1520
|
domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
|
|
@@ -1526,7 +1526,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1526
1526
|
scaleType: "point";
|
|
1527
1527
|
ordinalTimeTicks?: import("../index.js").OrdinalTimeTicks;
|
|
1528
1528
|
groups?: import("../internals/index.js").AxisGroup[];
|
|
1529
|
-
colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number, string | null>;
|
|
1529
|
+
colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
1530
1530
|
triggerTooltip?: boolean;
|
|
1531
1531
|
} | {
|
|
1532
1532
|
axis?: "y";
|
|
@@ -1550,12 +1550,12 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1550
1550
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
1551
1551
|
tickLabelPlacement?: "middle" | "tick";
|
|
1552
1552
|
data?: readonly any[] | undefined;
|
|
1553
|
+
dataKey?: string | undefined;
|
|
1554
|
+
id: import("../internals/index.js").AxisId;
|
|
1555
|
+
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1553
1556
|
position?: "left" | "right" | "none";
|
|
1554
1557
|
width: number;
|
|
1555
1558
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
1556
|
-
id: import("../internals/index.js").AxisId;
|
|
1557
|
-
dataKey?: string | undefined;
|
|
1558
|
-
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1559
1559
|
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
1560
1560
|
hideTooltip?: boolean | undefined;
|
|
1561
1561
|
domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
|
|
@@ -1591,12 +1591,12 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1591
1591
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
1592
1592
|
tickLabelPlacement?: "middle" | "tick";
|
|
1593
1593
|
data?: readonly any[] | undefined;
|
|
1594
|
+
dataKey?: string | undefined;
|
|
1595
|
+
id: import("../internals/index.js").AxisId;
|
|
1596
|
+
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1594
1597
|
position?: "left" | "right" | "none";
|
|
1595
1598
|
width: number;
|
|
1596
1599
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
1597
|
-
id: import("../internals/index.js").AxisId;
|
|
1598
|
-
dataKey?: string | undefined;
|
|
1599
|
-
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1600
1600
|
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
1601
1601
|
hideTooltip?: boolean | undefined;
|
|
1602
1602
|
domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
|
|
@@ -1632,12 +1632,12 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1632
1632
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
1633
1633
|
tickLabelPlacement?: "middle" | "tick";
|
|
1634
1634
|
data?: readonly any[] | undefined;
|
|
1635
|
+
dataKey?: string | undefined;
|
|
1636
|
+
id: import("../internals/index.js").AxisId;
|
|
1637
|
+
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1635
1638
|
position?: "left" | "right" | "none";
|
|
1636
1639
|
width: number;
|
|
1637
1640
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
1638
|
-
id: import("../internals/index.js").AxisId;
|
|
1639
|
-
dataKey?: string | undefined;
|
|
1640
|
-
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1641
1641
|
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
1642
1642
|
hideTooltip?: boolean | undefined;
|
|
1643
1643
|
domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
|
|
@@ -1673,12 +1673,12 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1673
1673
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
1674
1674
|
tickLabelPlacement?: "middle" | "tick";
|
|
1675
1675
|
data?: readonly any[] | undefined;
|
|
1676
|
+
dataKey?: string | undefined;
|
|
1677
|
+
id: import("../internals/index.js").AxisId;
|
|
1678
|
+
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1676
1679
|
position?: "left" | "right" | "none";
|
|
1677
1680
|
width: number;
|
|
1678
1681
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
1679
|
-
id: import("../internals/index.js").AxisId;
|
|
1680
|
-
dataKey?: string | undefined;
|
|
1681
|
-
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1682
1682
|
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
1683
1683
|
hideTooltip?: boolean | undefined;
|
|
1684
1684
|
domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
|
|
@@ -1714,12 +1714,12 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1714
1714
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
1715
1715
|
tickLabelPlacement?: "middle" | "tick";
|
|
1716
1716
|
data?: readonly any[] | undefined;
|
|
1717
|
-
position?: "left" | "right" | "none";
|
|
1718
|
-
width: number;
|
|
1719
|
-
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
1720
|
-
id: import("../internals/index.js").AxisId;
|
|
1721
1717
|
dataKey?: string | undefined;
|
|
1718
|
+
id: import("../internals/index.js").AxisId;
|
|
1722
1719
|
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1720
|
+
position?: "left" | "right" | "none";
|
|
1721
|
+
width: number;
|
|
1722
|
+
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
1723
1723
|
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
1724
1724
|
hideTooltip?: boolean | undefined;
|
|
1725
1725
|
domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
|
|
@@ -1755,12 +1755,12 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1755
1755
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
1756
1756
|
tickLabelPlacement?: "middle" | "tick";
|
|
1757
1757
|
data?: readonly any[] | undefined;
|
|
1758
|
+
dataKey?: string | undefined;
|
|
1759
|
+
id: import("../internals/index.js").AxisId;
|
|
1760
|
+
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1758
1761
|
position?: "left" | "right" | "none";
|
|
1759
1762
|
width: number;
|
|
1760
1763
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
1761
|
-
id: import("../internals/index.js").AxisId;
|
|
1762
|
-
dataKey?: string | undefined;
|
|
1763
|
-
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1764
1764
|
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
1765
1765
|
hideTooltip?: boolean | undefined;
|
|
1766
1766
|
domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
|
|
@@ -1796,12 +1796,12 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1796
1796
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
1797
1797
|
tickLabelPlacement?: "middle" | "tick";
|
|
1798
1798
|
data?: readonly any[] | undefined;
|
|
1799
|
+
dataKey?: string | undefined;
|
|
1800
|
+
id: import("../internals/index.js").AxisId;
|
|
1801
|
+
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1799
1802
|
position?: "left" | "right" | "none";
|
|
1800
1803
|
width: number;
|
|
1801
1804
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
1802
|
-
id: import("../internals/index.js").AxisId;
|
|
1803
|
-
dataKey?: string | undefined;
|
|
1804
|
-
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1805
1805
|
colorMap?: import("../models/colorMapping.js").OrdinalColorConfig | import("../models/colorMapping.js").ContinuousColorConfig | import("../models/colorMapping.js").PiecewiseColorConfig;
|
|
1806
1806
|
hideTooltip?: boolean | undefined;
|
|
1807
1807
|
domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
|
|
@@ -1837,12 +1837,12 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1837
1837
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
1838
1838
|
tickLabelPlacement?: "middle" | "tick";
|
|
1839
1839
|
data?: readonly any[] | undefined;
|
|
1840
|
+
dataKey?: string | undefined;
|
|
1841
|
+
id: import("../internals/index.js").AxisId;
|
|
1842
|
+
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1840
1843
|
position?: "left" | "right" | "none";
|
|
1841
1844
|
width: number;
|
|
1842
1845
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
1843
|
-
id: import("../internals/index.js").AxisId;
|
|
1844
|
-
dataKey?: string | undefined;
|
|
1845
|
-
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1846
1846
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
1847
1847
|
hideTooltip?: boolean | undefined;
|
|
1848
1848
|
domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
|
|
@@ -1853,7 +1853,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1853
1853
|
offset: number;
|
|
1854
1854
|
scaleType: "symlog";
|
|
1855
1855
|
constant?: number;
|
|
1856
|
-
colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number
|
|
1856
|
+
colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number, string | null>;
|
|
1857
1857
|
triggerTooltip?: boolean;
|
|
1858
1858
|
} | {
|
|
1859
1859
|
axis?: "y";
|
|
@@ -1877,12 +1877,12 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1877
1877
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
1878
1878
|
tickLabelPlacement?: "middle" | "tick";
|
|
1879
1879
|
data?: readonly any[] | undefined;
|
|
1880
|
+
dataKey?: string | undefined;
|
|
1881
|
+
id: import("../internals/index.js").AxisId;
|
|
1882
|
+
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1880
1883
|
position?: "left" | "right" | "none";
|
|
1881
1884
|
width: number;
|
|
1882
1885
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
1883
|
-
id: import("../internals/index.js").AxisId;
|
|
1884
|
-
dataKey?: string | undefined;
|
|
1885
|
-
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1886
1886
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
1887
1887
|
hideTooltip?: boolean | undefined;
|
|
1888
1888
|
domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
|
|
@@ -1893,7 +1893,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1893
1893
|
offset: number;
|
|
1894
1894
|
scaleType: "symlog";
|
|
1895
1895
|
constant?: number;
|
|
1896
|
-
colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number, string | null>;
|
|
1896
|
+
colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
1897
1897
|
triggerTooltip?: boolean;
|
|
1898
1898
|
} | {
|
|
1899
1899
|
axis?: "y";
|
|
@@ -1917,12 +1917,12 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1917
1917
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
1918
1918
|
tickLabelPlacement?: "middle" | "tick";
|
|
1919
1919
|
data?: readonly any[] | undefined;
|
|
1920
|
+
dataKey?: string | undefined;
|
|
1921
|
+
id: import("../internals/index.js").AxisId;
|
|
1922
|
+
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1920
1923
|
position?: "left" | "right" | "none";
|
|
1921
1924
|
width: number;
|
|
1922
1925
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
1923
|
-
id: import("../internals/index.js").AxisId;
|
|
1924
|
-
dataKey?: string | undefined;
|
|
1925
|
-
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1926
1926
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
1927
1927
|
hideTooltip?: boolean | undefined;
|
|
1928
1928
|
domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
|
|
@@ -1957,12 +1957,12 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1957
1957
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
1958
1958
|
tickLabelPlacement?: "middle" | "tick";
|
|
1959
1959
|
data?: readonly any[] | undefined;
|
|
1960
|
+
dataKey?: string | undefined;
|
|
1961
|
+
id: import("../internals/index.js").AxisId;
|
|
1962
|
+
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1960
1963
|
position?: "left" | "right" | "none";
|
|
1961
1964
|
width: number;
|
|
1962
1965
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
1963
|
-
id: import("../internals/index.js").AxisId;
|
|
1964
|
-
dataKey?: string | undefined;
|
|
1965
|
-
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
1966
1966
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
1967
1967
|
hideTooltip?: boolean | undefined;
|
|
1968
1968
|
domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
|
|
@@ -1997,12 +1997,12 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
1997
1997
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
1998
1998
|
tickLabelPlacement?: "middle" | "tick";
|
|
1999
1999
|
data?: readonly any[] | undefined;
|
|
2000
|
+
dataKey?: string | undefined;
|
|
2001
|
+
id: import("../internals/index.js").AxisId;
|
|
2002
|
+
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2000
2003
|
position?: "left" | "right" | "none";
|
|
2001
2004
|
width: number;
|
|
2002
2005
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
2003
|
-
id: import("../internals/index.js").AxisId;
|
|
2004
|
-
dataKey?: string | undefined;
|
|
2005
|
-
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2006
2006
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2007
2007
|
hideTooltip?: boolean | undefined;
|
|
2008
2008
|
domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
|
|
@@ -2037,12 +2037,12 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2037
2037
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
2038
2038
|
tickLabelPlacement?: "middle" | "tick";
|
|
2039
2039
|
data?: readonly any[] | undefined;
|
|
2040
|
+
dataKey?: string | undefined;
|
|
2041
|
+
id: import("../internals/index.js").AxisId;
|
|
2042
|
+
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2040
2043
|
position?: "left" | "right" | "none";
|
|
2041
2044
|
width: number;
|
|
2042
2045
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
2043
|
-
id: import("../internals/index.js").AxisId;
|
|
2044
|
-
dataKey?: string | undefined;
|
|
2045
|
-
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2046
2046
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2047
2047
|
hideTooltip?: boolean | undefined;
|
|
2048
2048
|
domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
|
|
@@ -2077,12 +2077,12 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2077
2077
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
2078
2078
|
tickLabelPlacement?: "middle" | "tick";
|
|
2079
2079
|
data?: readonly any[] | undefined;
|
|
2080
|
+
dataKey?: string | undefined;
|
|
2081
|
+
id: import("../internals/index.js").AxisId;
|
|
2082
|
+
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2080
2083
|
position?: "left" | "right" | "none";
|
|
2081
2084
|
width: number;
|
|
2082
2085
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
2083
|
-
id: import("../internals/index.js").AxisId;
|
|
2084
|
-
dataKey?: string | undefined;
|
|
2085
|
-
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2086
2086
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2087
2087
|
hideTooltip?: boolean | undefined;
|
|
2088
2088
|
domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
|
|
@@ -2117,12 +2117,12 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2117
2117
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
2118
2118
|
tickLabelPlacement?: "middle" | "tick";
|
|
2119
2119
|
data?: readonly any[] | undefined;
|
|
2120
|
+
dataKey?: string | undefined;
|
|
2121
|
+
id: import("../internals/index.js").AxisId;
|
|
2122
|
+
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2120
2123
|
position?: "left" | "right" | "none";
|
|
2121
2124
|
width: number;
|
|
2122
2125
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
2123
|
-
id: import("../internals/index.js").AxisId;
|
|
2124
|
-
dataKey?: string | undefined;
|
|
2125
|
-
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2126
2126
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2127
2127
|
hideTooltip?: boolean | undefined;
|
|
2128
2128
|
domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
|
|
@@ -2157,12 +2157,12 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2157
2157
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
2158
2158
|
tickLabelPlacement?: "middle" | "tick";
|
|
2159
2159
|
data?: readonly any[] | undefined;
|
|
2160
|
+
dataKey?: string | undefined;
|
|
2161
|
+
id: import("../internals/index.js").AxisId;
|
|
2162
|
+
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2160
2163
|
position?: "left" | "right" | "none";
|
|
2161
2164
|
width: number;
|
|
2162
2165
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
2163
|
-
id: import("../internals/index.js").AxisId;
|
|
2164
|
-
dataKey?: string | undefined;
|
|
2165
|
-
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2166
2166
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2167
2167
|
hideTooltip?: boolean | undefined;
|
|
2168
2168
|
domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
|
|
@@ -2197,12 +2197,12 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2197
2197
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
2198
2198
|
tickLabelPlacement?: "middle" | "tick";
|
|
2199
2199
|
data?: readonly any[] | undefined;
|
|
2200
|
+
dataKey?: string | undefined;
|
|
2201
|
+
id: import("../internals/index.js").AxisId;
|
|
2202
|
+
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2200
2203
|
position?: "left" | "right" | "none";
|
|
2201
2204
|
width: number;
|
|
2202
2205
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
2203
|
-
id: import("../internals/index.js").AxisId;
|
|
2204
|
-
dataKey?: string | undefined;
|
|
2205
|
-
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2206
2206
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2207
2207
|
hideTooltip?: boolean | undefined;
|
|
2208
2208
|
domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
|
|
@@ -2212,7 +2212,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2212
2212
|
ignoreTooltip?: boolean | undefined;
|
|
2213
2213
|
offset: number;
|
|
2214
2214
|
scaleType: "pow";
|
|
2215
|
-
colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number
|
|
2215
|
+
colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number, string | null>;
|
|
2216
2216
|
triggerTooltip?: boolean;
|
|
2217
2217
|
} | {
|
|
2218
2218
|
axis?: "y";
|
|
@@ -2236,12 +2236,12 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2236
2236
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
2237
2237
|
tickLabelPlacement?: "middle" | "tick";
|
|
2238
2238
|
data?: readonly any[] | undefined;
|
|
2239
|
+
dataKey?: string | undefined;
|
|
2240
|
+
id: import("../internals/index.js").AxisId;
|
|
2241
|
+
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2239
2242
|
position?: "left" | "right" | "none";
|
|
2240
2243
|
width: number;
|
|
2241
2244
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
2242
|
-
id: import("../internals/index.js").AxisId;
|
|
2243
|
-
dataKey?: string | undefined;
|
|
2244
|
-
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2245
2245
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2246
2246
|
hideTooltip?: boolean | undefined;
|
|
2247
2247
|
domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
|
|
@@ -2251,7 +2251,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2251
2251
|
ignoreTooltip?: boolean | undefined;
|
|
2252
2252
|
offset: number;
|
|
2253
2253
|
scaleType: "pow";
|
|
2254
|
-
colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number, string | null>;
|
|
2254
|
+
colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
2255
2255
|
triggerTooltip?: boolean;
|
|
2256
2256
|
} | {
|
|
2257
2257
|
axis?: "y";
|
|
@@ -2275,12 +2275,12 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2275
2275
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
2276
2276
|
tickLabelPlacement?: "middle" | "tick";
|
|
2277
2277
|
data?: readonly any[] | undefined;
|
|
2278
|
+
dataKey?: string | undefined;
|
|
2279
|
+
id: import("../internals/index.js").AxisId;
|
|
2280
|
+
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2278
2281
|
position?: "left" | "right" | "none";
|
|
2279
2282
|
width: number;
|
|
2280
2283
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
2281
|
-
id: import("../internals/index.js").AxisId;
|
|
2282
|
-
dataKey?: string | undefined;
|
|
2283
|
-
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2284
2284
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2285
2285
|
hideTooltip?: boolean | undefined;
|
|
2286
2286
|
domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
|
|
@@ -2314,12 +2314,12 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2314
2314
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
2315
2315
|
tickLabelPlacement?: "middle" | "tick";
|
|
2316
2316
|
data?: readonly any[] | undefined;
|
|
2317
|
+
dataKey?: string | undefined;
|
|
2318
|
+
id: import("../internals/index.js").AxisId;
|
|
2319
|
+
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2317
2320
|
position?: "left" | "right" | "none";
|
|
2318
2321
|
width: number;
|
|
2319
2322
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
2320
|
-
id: import("../internals/index.js").AxisId;
|
|
2321
|
-
dataKey?: string | undefined;
|
|
2322
|
-
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2323
2323
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2324
2324
|
hideTooltip?: boolean | undefined;
|
|
2325
2325
|
domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
|
|
@@ -2353,12 +2353,12 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2353
2353
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
2354
2354
|
tickLabelPlacement?: "middle" | "tick";
|
|
2355
2355
|
data?: readonly any[] | undefined;
|
|
2356
|
+
dataKey?: string | undefined;
|
|
2357
|
+
id: import("../internals/index.js").AxisId;
|
|
2358
|
+
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2356
2359
|
position?: "left" | "right" | "none";
|
|
2357
2360
|
width: number;
|
|
2358
2361
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
2359
|
-
id: import("../internals/index.js").AxisId;
|
|
2360
|
-
dataKey?: string | undefined;
|
|
2361
|
-
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2362
2362
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2363
2363
|
hideTooltip?: boolean | undefined;
|
|
2364
2364
|
domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
|
|
@@ -2392,12 +2392,12 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2392
2392
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
2393
2393
|
tickLabelPlacement?: "middle" | "tick";
|
|
2394
2394
|
data?: readonly any[] | undefined;
|
|
2395
|
+
dataKey?: string | undefined;
|
|
2396
|
+
id: import("../internals/index.js").AxisId;
|
|
2397
|
+
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2395
2398
|
position?: "left" | "right" | "none";
|
|
2396
2399
|
width: number;
|
|
2397
2400
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
2398
|
-
id: import("../internals/index.js").AxisId;
|
|
2399
|
-
dataKey?: string | undefined;
|
|
2400
|
-
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2401
2401
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2402
2402
|
hideTooltip?: boolean | undefined;
|
|
2403
2403
|
domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
|
|
@@ -2431,12 +2431,12 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2431
2431
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
2432
2432
|
tickLabelPlacement?: "middle" | "tick";
|
|
2433
2433
|
data?: readonly any[] | undefined;
|
|
2434
|
+
dataKey?: string | undefined;
|
|
2435
|
+
id: import("../internals/index.js").AxisId;
|
|
2436
|
+
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2434
2437
|
position?: "left" | "right" | "none";
|
|
2435
2438
|
width: number;
|
|
2436
2439
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
2437
|
-
id: import("../internals/index.js").AxisId;
|
|
2438
|
-
dataKey?: string | undefined;
|
|
2439
|
-
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2440
2440
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2441
2441
|
hideTooltip?: boolean | undefined;
|
|
2442
2442
|
domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
|
|
@@ -2470,12 +2470,12 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2470
2470
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
2471
2471
|
tickLabelPlacement?: "middle" | "tick";
|
|
2472
2472
|
data?: readonly any[] | undefined;
|
|
2473
|
+
dataKey?: string | undefined;
|
|
2474
|
+
id: import("../internals/index.js").AxisId;
|
|
2475
|
+
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2473
2476
|
position?: "left" | "right" | "none";
|
|
2474
2477
|
width: number;
|
|
2475
2478
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
2476
|
-
id: import("../internals/index.js").AxisId;
|
|
2477
|
-
dataKey?: string | undefined;
|
|
2478
|
-
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2479
2479
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2480
2480
|
hideTooltip?: boolean | undefined;
|
|
2481
2481
|
domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
|
|
@@ -2509,12 +2509,12 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2509
2509
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
2510
2510
|
tickLabelPlacement?: "middle" | "tick";
|
|
2511
2511
|
data?: readonly any[] | undefined;
|
|
2512
|
+
dataKey?: string | undefined;
|
|
2513
|
+
id: import("../internals/index.js").AxisId;
|
|
2514
|
+
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2512
2515
|
position?: "left" | "right" | "none";
|
|
2513
2516
|
width: number;
|
|
2514
2517
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
2515
|
-
id: import("../internals/index.js").AxisId;
|
|
2516
|
-
dataKey?: string | undefined;
|
|
2517
|
-
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2518
2518
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2519
2519
|
hideTooltip?: boolean | undefined;
|
|
2520
2520
|
domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
|
|
@@ -2548,12 +2548,12 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2548
2548
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
2549
2549
|
tickLabelPlacement?: "middle" | "tick";
|
|
2550
2550
|
data?: readonly any[] | undefined;
|
|
2551
|
+
dataKey?: string | undefined;
|
|
2552
|
+
id: import("../internals/index.js").AxisId;
|
|
2553
|
+
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2551
2554
|
position?: "left" | "right" | "none";
|
|
2552
2555
|
width: number;
|
|
2553
2556
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
2554
|
-
id: import("../internals/index.js").AxisId;
|
|
2555
|
-
dataKey?: string | undefined;
|
|
2556
|
-
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2557
2557
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2558
2558
|
hideTooltip?: boolean | undefined;
|
|
2559
2559
|
domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
|
|
@@ -2563,7 +2563,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2563
2563
|
ignoreTooltip?: boolean | undefined;
|
|
2564
2564
|
offset: number;
|
|
2565
2565
|
scaleType: "sqrt";
|
|
2566
|
-
colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number
|
|
2566
|
+
colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number, string | null>;
|
|
2567
2567
|
triggerTooltip?: boolean;
|
|
2568
2568
|
} | {
|
|
2569
2569
|
axis?: "y";
|
|
@@ -2587,12 +2587,12 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2587
2587
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
2588
2588
|
tickLabelPlacement?: "middle" | "tick";
|
|
2589
2589
|
data?: readonly any[] | undefined;
|
|
2590
|
+
dataKey?: string | undefined;
|
|
2591
|
+
id: import("../internals/index.js").AxisId;
|
|
2592
|
+
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2590
2593
|
position?: "left" | "right" | "none";
|
|
2591
2594
|
width: number;
|
|
2592
2595
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
2593
|
-
id: import("../internals/index.js").AxisId;
|
|
2594
|
-
dataKey?: string | undefined;
|
|
2595
|
-
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2596
2596
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2597
2597
|
hideTooltip?: boolean | undefined;
|
|
2598
2598
|
domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
|
|
@@ -2602,7 +2602,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2602
2602
|
ignoreTooltip?: boolean | undefined;
|
|
2603
2603
|
offset: number;
|
|
2604
2604
|
scaleType: "sqrt";
|
|
2605
|
-
colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number, string | null>;
|
|
2605
|
+
colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
2606
2606
|
triggerTooltip?: boolean;
|
|
2607
2607
|
} | {
|
|
2608
2608
|
axis?: "y";
|
|
@@ -2626,12 +2626,12 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2626
2626
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
2627
2627
|
tickLabelPlacement?: "middle" | "tick";
|
|
2628
2628
|
data?: readonly any[] | undefined;
|
|
2629
|
+
dataKey?: string | undefined;
|
|
2630
|
+
id: import("../internals/index.js").AxisId;
|
|
2631
|
+
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2629
2632
|
position?: "left" | "right" | "none";
|
|
2630
2633
|
width: number;
|
|
2631
2634
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
2632
|
-
id: import("../internals/index.js").AxisId;
|
|
2633
|
-
dataKey?: string | undefined;
|
|
2634
|
-
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2635
2635
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2636
2636
|
hideTooltip?: boolean | undefined;
|
|
2637
2637
|
domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
|
|
@@ -2665,12 +2665,12 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2665
2665
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
2666
2666
|
tickLabelPlacement?: "middle" | "tick";
|
|
2667
2667
|
data?: readonly any[] | undefined;
|
|
2668
|
+
dataKey?: string | undefined;
|
|
2669
|
+
id: import("../internals/index.js").AxisId;
|
|
2670
|
+
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2668
2671
|
position?: "left" | "right" | "none";
|
|
2669
2672
|
width: number;
|
|
2670
2673
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
2671
|
-
id: import("../internals/index.js").AxisId;
|
|
2672
|
-
dataKey?: string | undefined;
|
|
2673
|
-
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2674
2674
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2675
2675
|
hideTooltip?: boolean | undefined;
|
|
2676
2676
|
domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
|
|
@@ -2704,12 +2704,12 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2704
2704
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
2705
2705
|
tickLabelPlacement?: "middle" | "tick";
|
|
2706
2706
|
data?: readonly any[] | undefined;
|
|
2707
|
+
dataKey?: string | undefined;
|
|
2708
|
+
id: import("../internals/index.js").AxisId;
|
|
2709
|
+
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2707
2710
|
position?: "left" | "right" | "none";
|
|
2708
2711
|
width: number;
|
|
2709
2712
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
2710
|
-
id: import("../internals/index.js").AxisId;
|
|
2711
|
-
dataKey?: string | undefined;
|
|
2712
|
-
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2713
2713
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2714
2714
|
hideTooltip?: boolean | undefined;
|
|
2715
2715
|
domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
|
|
@@ -2743,12 +2743,12 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2743
2743
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
2744
2744
|
tickLabelPlacement?: "middle" | "tick";
|
|
2745
2745
|
data?: readonly any[] | undefined;
|
|
2746
|
+
dataKey?: string | undefined;
|
|
2747
|
+
id: import("../internals/index.js").AxisId;
|
|
2748
|
+
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2746
2749
|
position?: "left" | "right" | "none";
|
|
2747
2750
|
width: number;
|
|
2748
2751
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
2749
|
-
id: import("../internals/index.js").AxisId;
|
|
2750
|
-
dataKey?: string | undefined;
|
|
2751
|
-
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2752
2752
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2753
2753
|
hideTooltip?: boolean | undefined;
|
|
2754
2754
|
domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
|
|
@@ -2782,12 +2782,12 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2782
2782
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
2783
2783
|
tickLabelPlacement?: "middle" | "tick";
|
|
2784
2784
|
data?: readonly any[] | undefined;
|
|
2785
|
+
dataKey?: string | undefined;
|
|
2786
|
+
id: import("../internals/index.js").AxisId;
|
|
2787
|
+
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2785
2788
|
position?: "left" | "right" | "none";
|
|
2786
2789
|
width: number;
|
|
2787
2790
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
2788
|
-
id: import("../internals/index.js").AxisId;
|
|
2789
|
-
dataKey?: string | undefined;
|
|
2790
|
-
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2791
2791
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2792
2792
|
hideTooltip?: boolean | undefined;
|
|
2793
2793
|
domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
|
|
@@ -2821,12 +2821,12 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2821
2821
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
2822
2822
|
tickLabelPlacement?: "middle" | "tick";
|
|
2823
2823
|
data?: readonly any[] | undefined;
|
|
2824
|
+
dataKey?: string | undefined;
|
|
2825
|
+
id: import("../internals/index.js").AxisId;
|
|
2826
|
+
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2824
2827
|
position?: "left" | "right" | "none";
|
|
2825
2828
|
width: number;
|
|
2826
2829
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
2827
|
-
id: import("../internals/index.js").AxisId;
|
|
2828
|
-
dataKey?: string | undefined;
|
|
2829
|
-
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2830
2830
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2831
2831
|
hideTooltip?: boolean | undefined;
|
|
2832
2832
|
domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
|
|
@@ -2860,12 +2860,12 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2860
2860
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
2861
2861
|
tickLabelPlacement?: "middle" | "tick";
|
|
2862
2862
|
data?: readonly any[] | undefined;
|
|
2863
|
+
dataKey?: string | undefined;
|
|
2864
|
+
id: import("../internals/index.js").AxisId;
|
|
2865
|
+
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2863
2866
|
position?: "left" | "right" | "none";
|
|
2864
2867
|
width: number;
|
|
2865
2868
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
2866
|
-
id: import("../internals/index.js").AxisId;
|
|
2867
|
-
dataKey?: string | undefined;
|
|
2868
|
-
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2869
2869
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2870
2870
|
hideTooltip?: boolean | undefined;
|
|
2871
2871
|
domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
|
|
@@ -2899,12 +2899,12 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2899
2899
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
2900
2900
|
tickLabelPlacement?: "middle" | "tick";
|
|
2901
2901
|
data?: readonly any[] | undefined;
|
|
2902
|
+
dataKey?: string | undefined;
|
|
2903
|
+
id: import("../internals/index.js").AxisId;
|
|
2904
|
+
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2902
2905
|
position?: "left" | "right" | "none";
|
|
2903
2906
|
width: number;
|
|
2904
2907
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
2905
|
-
id: import("../internals/index.js").AxisId;
|
|
2906
|
-
dataKey?: string | undefined;
|
|
2907
|
-
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2908
2908
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2909
2909
|
hideTooltip?: boolean | undefined;
|
|
2910
2910
|
domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
|
|
@@ -2914,7 +2914,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2914
2914
|
ignoreTooltip?: boolean | undefined;
|
|
2915
2915
|
offset: number;
|
|
2916
2916
|
scaleType: "utc";
|
|
2917
|
-
colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number
|
|
2917
|
+
colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number, string | null>;
|
|
2918
2918
|
triggerTooltip?: boolean;
|
|
2919
2919
|
} | {
|
|
2920
2920
|
axis?: "y";
|
|
@@ -2938,12 +2938,12 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2938
2938
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
2939
2939
|
tickLabelPlacement?: "middle" | "tick";
|
|
2940
2940
|
data?: readonly any[] | undefined;
|
|
2941
|
+
dataKey?: string | undefined;
|
|
2942
|
+
id: import("../internals/index.js").AxisId;
|
|
2943
|
+
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2941
2944
|
position?: "left" | "right" | "none";
|
|
2942
2945
|
width: number;
|
|
2943
2946
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
2944
|
-
id: import("../internals/index.js").AxisId;
|
|
2945
|
-
dataKey?: string | undefined;
|
|
2946
|
-
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2947
2947
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2948
2948
|
hideTooltip?: boolean | undefined;
|
|
2949
2949
|
domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
|
|
@@ -2953,7 +2953,7 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2953
2953
|
ignoreTooltip?: boolean | undefined;
|
|
2954
2954
|
offset: number;
|
|
2955
2955
|
scaleType: "utc";
|
|
2956
|
-
colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number, string | null>;
|
|
2956
|
+
colorScale?: import("packages/x-charts-vendor/build/d3-scale").ScaleSequential<string, string | null> | import("packages/x-charts-vendor/build/d3-scale").ScaleThreshold<number | Date, string | null>;
|
|
2957
2957
|
triggerTooltip?: boolean;
|
|
2958
2958
|
} | {
|
|
2959
2959
|
axis?: "y";
|
|
@@ -2977,12 +2977,12 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
2977
2977
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
2978
2978
|
tickLabelPlacement?: "middle" | "tick";
|
|
2979
2979
|
data?: readonly any[] | undefined;
|
|
2980
|
+
dataKey?: string | undefined;
|
|
2981
|
+
id: import("../internals/index.js").AxisId;
|
|
2982
|
+
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2980
2983
|
position?: "left" | "right" | "none";
|
|
2981
2984
|
width: number;
|
|
2982
2985
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
2983
|
-
id: import("../internals/index.js").AxisId;
|
|
2984
|
-
dataKey?: string | undefined;
|
|
2985
|
-
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
2986
2986
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
2987
2987
|
hideTooltip?: boolean | undefined;
|
|
2988
2988
|
domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
|
|
@@ -3016,12 +3016,12 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
3016
3016
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
3017
3017
|
tickLabelPlacement?: "middle" | "tick";
|
|
3018
3018
|
data?: readonly any[] | undefined;
|
|
3019
|
+
dataKey?: string | undefined;
|
|
3020
|
+
id: import("../internals/index.js").AxisId;
|
|
3021
|
+
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
3019
3022
|
position?: "left" | "right" | "none";
|
|
3020
3023
|
width: number;
|
|
3021
3024
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
3022
|
-
id: import("../internals/index.js").AxisId;
|
|
3023
|
-
dataKey?: string | undefined;
|
|
3024
|
-
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
3025
3025
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
3026
3026
|
hideTooltip?: boolean | undefined;
|
|
3027
3027
|
domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
|
|
@@ -3055,12 +3055,12 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
3055
3055
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
3056
3056
|
tickLabelPlacement?: "middle" | "tick";
|
|
3057
3057
|
data?: readonly any[] | undefined;
|
|
3058
|
+
dataKey?: string | undefined;
|
|
3059
|
+
id: import("../internals/index.js").AxisId;
|
|
3060
|
+
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
3058
3061
|
position?: "left" | "right" | "none";
|
|
3059
3062
|
width: number;
|
|
3060
3063
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
3061
|
-
id: import("../internals/index.js").AxisId;
|
|
3062
|
-
dataKey?: string | undefined;
|
|
3063
|
-
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
3064
3064
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
3065
3065
|
hideTooltip?: boolean | undefined;
|
|
3066
3066
|
domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
|
|
@@ -3094,12 +3094,12 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
3094
3094
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
3095
3095
|
tickLabelPlacement?: "middle" | "tick";
|
|
3096
3096
|
data?: readonly any[] | undefined;
|
|
3097
|
+
dataKey?: string | undefined;
|
|
3098
|
+
id: import("../internals/index.js").AxisId;
|
|
3099
|
+
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
3097
3100
|
position?: "left" | "right" | "none";
|
|
3098
3101
|
width: number;
|
|
3099
3102
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
3100
|
-
id: import("../internals/index.js").AxisId;
|
|
3101
|
-
dataKey?: string | undefined;
|
|
3102
|
-
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
3103
3103
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
3104
3104
|
hideTooltip?: boolean | undefined;
|
|
3105
3105
|
domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
|
|
@@ -3133,12 +3133,12 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
3133
3133
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
3134
3134
|
tickLabelPlacement?: "middle" | "tick";
|
|
3135
3135
|
data?: readonly any[] | undefined;
|
|
3136
|
+
dataKey?: string | undefined;
|
|
3137
|
+
id: import("../internals/index.js").AxisId;
|
|
3138
|
+
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
3136
3139
|
position?: "left" | "right" | "none";
|
|
3137
3140
|
width: number;
|
|
3138
3141
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
3139
|
-
id: import("../internals/index.js").AxisId;
|
|
3140
|
-
dataKey?: string | undefined;
|
|
3141
|
-
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
3142
3142
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
3143
3143
|
hideTooltip?: boolean | undefined;
|
|
3144
3144
|
domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
|
|
@@ -3172,12 +3172,12 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
3172
3172
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
3173
3173
|
tickLabelPlacement?: "middle" | "tick";
|
|
3174
3174
|
data?: readonly any[] | undefined;
|
|
3175
|
+
dataKey?: string | undefined;
|
|
3176
|
+
id: import("../internals/index.js").AxisId;
|
|
3177
|
+
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
3175
3178
|
position?: "left" | "right" | "none";
|
|
3176
3179
|
width: number;
|
|
3177
3180
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
3178
|
-
id: import("../internals/index.js").AxisId;
|
|
3179
|
-
dataKey?: string | undefined;
|
|
3180
|
-
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
3181
3181
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
3182
3182
|
hideTooltip?: boolean | undefined;
|
|
3183
3183
|
domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
|
|
@@ -3211,12 +3211,12 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
3211
3211
|
tickPlacement?: "start" | "end" | "middle" | "extremities";
|
|
3212
3212
|
tickLabelPlacement?: "middle" | "tick";
|
|
3213
3213
|
data?: readonly any[] | undefined;
|
|
3214
|
+
dataKey?: string | undefined;
|
|
3215
|
+
id: import("../internals/index.js").AxisId;
|
|
3216
|
+
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
3214
3217
|
position?: "left" | "right" | "none";
|
|
3215
3218
|
width: number;
|
|
3216
3219
|
zoom: import("../internals/index.js").DefaultizedZoomOptions | undefined;
|
|
3217
|
-
id: import("../internals/index.js").AxisId;
|
|
3218
|
-
dataKey?: string | undefined;
|
|
3219
|
-
valueFormatter?: (<TScaleName extends keyof import("../internals/index.js").AxisScaleConfig>(value: any, context: import("../index.js").AxisValueFormatterContext<TScaleName>) => string) | undefined;
|
|
3220
3220
|
colorMap?: import("../models/colorMapping.js").ContinuousColorConfig<number | Date> | import("../models/colorMapping.js").PiecewiseColorConfig<number | Date> | undefined;
|
|
3221
3221
|
hideTooltip?: boolean | undefined;
|
|
3222
3222
|
domainLimit?: "nice" | "strict" | ((min: import("packages/x-charts-vendor/build/d3-scale").NumberValue, max: import("packages/x-charts-vendor/build/d3-scale").NumberValue) => {
|
|
@@ -3242,6 +3242,10 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
3242
3242
|
type?: string | undefined | undefined;
|
|
3243
3243
|
filter?: string | undefined | undefined;
|
|
3244
3244
|
values?: string | undefined | undefined;
|
|
3245
|
+
id?: string | undefined | undefined;
|
|
3246
|
+
color?: string | undefined | undefined;
|
|
3247
|
+
min?: number | string | undefined | undefined;
|
|
3248
|
+
max?: number | string | undefined | undefined;
|
|
3245
3249
|
slot?: string | undefined | undefined;
|
|
3246
3250
|
clipPath?: string | undefined | undefined;
|
|
3247
3251
|
mask?: string | undefined | undefined;
|
|
@@ -3253,7 +3257,6 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
3253
3257
|
alignmentBaseline?: "auto" | "baseline" | "before-edge" | "text-before-edge" | "middle" | "central" | "after-edge" | "text-after-edge" | "ideographic" | "alphabetic" | "hanging" | "mathematical" | "inherit" | undefined | undefined;
|
|
3254
3258
|
baselineShift?: number | string | undefined | undefined;
|
|
3255
3259
|
clipRule?: number | string | undefined | undefined;
|
|
3256
|
-
color?: string | undefined | undefined;
|
|
3257
3260
|
colorInterpolationFilters?: "auto" | "sRGB" | "linearRGB" | "inherit" | undefined | undefined;
|
|
3258
3261
|
cursor?: number | string | undefined | undefined;
|
|
3259
3262
|
cx?: number | string | undefined | undefined;
|
|
@@ -3317,7 +3320,6 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
3317
3320
|
key?: import("react").Key | null | undefined;
|
|
3318
3321
|
suppressHydrationWarning?: boolean | undefined | undefined;
|
|
3319
3322
|
className?: string | undefined | undefined;
|
|
3320
|
-
id?: string | undefined | undefined;
|
|
3321
3323
|
lang?: string | undefined | undefined;
|
|
3322
3324
|
nonce?: string | undefined | undefined;
|
|
3323
3325
|
tabIndex?: number | undefined | undefined;
|
|
@@ -3548,13 +3550,11 @@ export declare function useAxisTicksProps(inProps: ChartsYAxisProps): {
|
|
|
3548
3550
|
onTransitionRunCapture?: import("react").TransitionEventHandler<SVGTextElement> | undefined;
|
|
3549
3551
|
onTransitionStart?: import("react").TransitionEventHandler<SVGTextElement> | undefined;
|
|
3550
3552
|
onTransitionStartCapture?: import("react").TransitionEventHandler<SVGTextElement> | undefined;
|
|
3551
|
-
|
|
3552
|
-
max?: number | string | undefined | undefined;
|
|
3553
|
+
mode?: number | string | undefined | undefined;
|
|
3553
3554
|
href?: string | undefined | undefined;
|
|
3554
3555
|
media?: string | undefined | undefined;
|
|
3555
3556
|
target?: string | undefined | undefined;
|
|
3556
3557
|
end?: number | string | undefined | undefined;
|
|
3557
|
-
mode?: number | string | undefined | undefined;
|
|
3558
3558
|
ideographic?: number | string | undefined | undefined;
|
|
3559
3559
|
alphabetic?: number | string | undefined | undefined;
|
|
3560
3560
|
hanging?: number | string | undefined | undefined;
|