@mui/x-charts 9.0.0-alpha.0 → 9.0.0-alpha.2
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 +42 -0
- package/BarChart/AnimatedBarElement.mjs +21 -0
- package/BarChart/BarChart.d.mts +74 -0
- package/BarChart/BarChart.d.ts +1 -1
- package/BarChart/BarChart.js +45 -13
- package/BarChart/BarChart.mjs +1252 -0
- package/BarChart/BarChart.plugins.d.mts +11 -0
- package/BarChart/BarChart.plugins.d.ts +1 -1
- package/BarChart/BarChart.plugins.mjs +9 -0
- package/BarChart/BarClipPath.d.mts +37 -0
- package/BarChart/BarClipPath.mjs +122 -0
- package/BarChart/BarElement.d.mts +40 -0
- package/BarChart/BarElement.mjs +113 -0
- package/BarChart/BarLabel/BarLabel.d.mts +42 -0
- package/BarChart/BarLabel/BarLabel.mjs +126 -0
- package/BarChart/BarLabel/BarLabel.types.d.mts +42 -0
- package/BarChart/BarLabel/BarLabelItem.d.mts +87 -0
- package/BarChart/BarLabel/BarLabelItem.js +4 -1
- package/BarChart/BarLabel/BarLabelItem.mjs +138 -0
- package/BarChart/BarLabel/BarLabelPlot.d.mts +32 -0
- package/BarChart/BarLabel/BarLabelPlot.mjs +60 -0
- package/BarChart/BarLabel/barLabelClasses.d.mts +26 -0
- package/BarChart/BarLabel/barLabelClasses.d.ts +8 -2
- package/BarChart/BarLabel/getBarLabel.d.mts +11 -0
- package/BarChart/BarLabel/index.d.mts +6 -0
- package/BarChart/BarLabel/index.mjs +2 -0
- package/BarChart/BarPlot.d.mts +69 -0
- package/BarChart/BarPlot.mjs +136 -0
- package/BarChart/BatchBarPlot/BarGroup.mjs +134 -0
- package/BarChart/BatchBarPlot/BatchBarPlot.d.mts +12 -0
- package/BarChart/BatchBarPlot/BatchBarPlot.js +3 -3
- package/BarChart/BatchBarPlot/BatchBarPlot.mjs +135 -0
- package/BarChart/BatchBarPlot/index.d.mts +1 -0
- package/BarChart/BatchBarPlot/index.mjs +1 -0
- package/BarChart/BatchBarPlot/useCreateBarPaths.d.mts +8 -0
- package/BarChart/BatchBarPlot/useCreateBarPaths.mjs +46 -0
- package/BarChart/FocusedBar.mjs +63 -0
- package/BarChart/IndividualBarPlot.d.mts +21 -0
- package/BarChart/IndividualBarPlot.mjs +98 -0
- package/BarChart/barElementClasses.d.mts +33 -0
- package/BarChart/barElementClasses.d.ts +8 -2
- package/BarChart/checkBarChartScaleErrors.d.mts +7 -0
- package/BarChart/checkBarChartScaleErrors.js +5 -3
- package/BarChart/checkBarChartScaleErrors.mjs +33 -0
- package/BarChart/index.d.mts +10 -0
- package/BarChart/index.mjs +8 -0
- package/BarChart/seriesConfig/bar/extremums.d.mts +3 -0
- package/BarChart/seriesConfig/bar/extremums.mjs +74 -0
- package/BarChart/seriesConfig/bar/getColor.d.mts +3 -0
- package/BarChart/seriesConfig/bar/getColor.mjs +57 -0
- package/BarChart/seriesConfig/bar/getSeriesWithDefaultValues.d.mts +22 -0
- package/BarChart/seriesConfig/bar/keyboardFocusHandler.d.mts +4 -0
- package/BarChart/seriesConfig/bar/keyboardFocusHandler.d.ts +1 -1
- package/BarChart/seriesConfig/bar/keyboardFocusHandler.js +3 -15
- package/BarChart/seriesConfig/bar/keyboardFocusHandler.mjs +4 -0
- package/BarChart/seriesConfig/bar/legend.d.mts +3 -0
- package/BarChart/seriesConfig/bar/legend.mjs +22 -0
- package/BarChart/seriesConfig/bar/seriesProcessor.d.mts +3 -0
- package/BarChart/seriesConfig/bar/seriesProcessor.js +5 -3
- package/BarChart/seriesConfig/bar/seriesProcessor.mjs +106 -0
- package/BarChart/seriesConfig/bar/tooltip.d.mts +4 -0
- package/BarChart/seriesConfig/bar/tooltip.mjs +37 -0
- package/BarChart/seriesConfig/bar/tooltipPosition.d.mts +3 -0
- package/BarChart/seriesConfig/bar/tooltipPosition.mjs +60 -0
- package/BarChart/seriesConfig/index.d.mts +2 -0
- package/BarChart/seriesConfig/index.js +4 -1
- package/BarChart/seriesConfig/index.mjs +27 -0
- package/BarChart/types.d.mts +35 -0
- package/BarChart/useBarChartProps.d.mts +38 -0
- package/BarChart/useBarChartProps.js +2 -2
- package/BarChart/useBarChartProps.mjs +158 -0
- package/BarChart/useBarPlotData.d.mts +23 -0
- package/BarChart/useBarPlotData.mjs +126 -0
- package/BarChart/useRegisterItemClickHandlers.d.mts +6 -0
- package/BarChart/useRegisterItemClickHandlers.js +4 -4
- package/BarChart/useRegisterItemClickHandlers.mjs +67 -0
- package/CHANGELOG.md +236 -0
- package/ChartContainer/ChartContainer.d.mts +22 -0
- package/ChartContainer/ChartContainer.d.ts +1 -1
- package/ChartContainer/ChartContainer.mjs +20 -0
- package/ChartContainer/index.d.mts +1 -0
- package/ChartContainer/index.mjs +1 -0
- package/ChartContainer/useChartContainerProps.d.mts +13 -0
- package/ChartContainer/useChartContainerProps.d.ts +1 -2
- package/ChartContainer/useChartContainerProps.js +2 -2
- package/ChartContainer/useChartContainerProps.mjs +14 -0
- package/ChartDataProvider/ChartDataProvider.d.mts +20 -0
- package/ChartDataProvider/ChartDataProvider.d.ts +15 -46
- package/ChartDataProvider/ChartDataProvider.js +16 -130
- package/ChartDataProvider/ChartDataProvider.mjs +20 -0
- package/ChartDataProvider/index.d.mts +1 -0
- package/ChartDataProvider/index.mjs +1 -0
- package/ChartDataProvider/useChartDataProviderProps.d.mts +10 -0
- package/ChartDataProvider/useChartDataProviderProps.d.ts +7 -10
- package/ChartDataProvider/useChartDataProviderProps.js +5 -39
- package/ChartDataProvider/useChartDataProviderProps.mjs +8 -0
- package/ChartsAxis/ChartsAxis.d.mts +28 -0
- package/ChartsAxis/ChartsAxis.mjs +71 -0
- package/ChartsAxis/index.d.mts +2 -0
- package/ChartsAxis/index.mjs +2 -0
- package/ChartsAxisHighlight/ChartsAxisHighlight.d.mts +15 -0
- package/ChartsAxisHighlight/ChartsAxisHighlight.mjs +50 -0
- package/ChartsAxisHighlight/ChartsAxisHighlightPath.d.mts +6 -0
- package/ChartsAxisHighlight/ChartsXAxisHighlight.d.mts +9 -0
- package/ChartsAxisHighlight/ChartsXAxisHighlight.js +2 -2
- package/ChartsAxisHighlight/ChartsXAxisHighlight.mjs +59 -0
- package/ChartsAxisHighlight/ChartsYAxisHighlight.d.mts +9 -0
- package/ChartsAxisHighlight/ChartsYAxisHighlight.js +2 -2
- package/ChartsAxisHighlight/ChartsYAxisHighlight.mjs +59 -0
- package/ChartsAxisHighlight/index.d.mts +4 -0
- package/ChartsAxisHighlight/index.mjs +4 -0
- package/ChartsBrushOverlay/ChartsBrushOverlay.mjs +94 -0
- package/ChartsBrushOverlay/index.d.mts +4 -0
- package/ChartsBrushOverlay/index.mjs +2 -0
- package/ChartsClipPath/ChartsClipPath.mjs +60 -0
- package/ChartsClipPath/index.d.mts +1 -0
- package/ChartsClipPath/index.mjs +1 -0
- package/ChartsContainer/ChartsContainer.d.mts +37 -0
- package/ChartsContainer/ChartsContainer.d.ts +6 -6
- package/ChartsContainer/ChartsContainer.js +50 -18
- package/ChartsContainer/ChartsContainer.mjs +1724 -0
- package/ChartsContainer/index.d.mts +1 -0
- package/ChartsContainer/index.mjs +1 -0
- package/ChartsContainer/useChartsContainerProps.d.mts +12 -0
- package/ChartsContainer/useChartsContainerProps.d.ts +2 -5
- package/ChartsContainer/useChartsContainerProps.js +7 -4
- package/ChartsContainer/useChartsContainerProps.mjs +102 -0
- package/ChartsDataProvider/ChartsDataProvider.d.mts +51 -0
- package/ChartsDataProvider/ChartsDataProvider.d.ts +51 -0
- package/ChartsDataProvider/ChartsDataProvider.js +138 -0
- package/ChartsDataProvider/ChartsDataProvider.mjs +132 -0
- package/ChartsDataProvider/index.d.mts +1 -0
- package/ChartsDataProvider/index.d.ts +1 -0
- package/ChartsDataProvider/index.js +16 -0
- package/ChartsDataProvider/index.mjs +1 -0
- package/ChartsDataProvider/useChartsDataProviderProps.d.mts +13 -0
- package/ChartsDataProvider/useChartsDataProviderProps.d.ts +13 -0
- package/ChartsDataProvider/useChartsDataProviderProps.js +51 -0
- package/ChartsDataProvider/useChartsDataProviderProps.mjs +44 -0
- package/ChartsGrid/ChartsGrid.d.mts +29 -0
- package/ChartsGrid/ChartsGrid.mjs +90 -0
- package/ChartsGrid/ChartsHorizontalGrid.d.mts +13 -0
- package/ChartsGrid/ChartsHorizontalGrid.mjs +45 -0
- package/ChartsGrid/ChartsVerticalGrid.d.mts +13 -0
- package/ChartsGrid/ChartsVerticalGrid.mjs +45 -0
- package/ChartsGrid/index.d.mts +2 -0
- package/ChartsGrid/index.mjs +2 -0
- package/ChartsGrid/styledComponents.mjs +21 -0
- package/ChartsLabel/ChartsLabel.d.mts +18 -0
- package/ChartsLabel/ChartsLabel.mjs +43 -0
- package/ChartsLabel/ChartsLabelGradient.d.mts +41 -0
- package/ChartsLabel/ChartsLabelGradient.mjs +134 -0
- package/ChartsLabel/ChartsLabelMark.d.mts +32 -0
- package/ChartsLabel/ChartsLabelMark.mjs +125 -0
- package/ChartsLabel/index.d.mts +9 -0
- package/ChartsLabel/index.mjs +5 -0
- package/ChartsLabel/labelClasses.d.mts +8 -0
- package/ChartsLabel/labelGradientClasses.d.mts +16 -0
- package/ChartsLabel/labelMarkClasses.d.mts +16 -0
- package/ChartsLayerContainer/ChartsLayerContainer.d.mts +11 -0
- package/ChartsLayerContainer/ChartsLayerContainer.d.ts +11 -0
- package/ChartsLayerContainer/ChartsLayerContainer.js +92 -0
- package/ChartsLayerContainer/ChartsLayerContainer.mjs +86 -0
- package/ChartsLayerContainer/index.d.mts +1 -0
- package/ChartsLayerContainer/index.d.ts +1 -0
- package/ChartsLayerContainer/index.js +16 -0
- package/ChartsLayerContainer/index.mjs +2 -0
- package/ChartsLegend/ChartsLegend.d.mts +33 -0
- package/ChartsLegend/ChartsLegend.js +13 -7
- package/ChartsLegend/ChartsLegend.mjs +185 -0
- package/ChartsLegend/ContinuousColorLegend.d.mts +57 -0
- package/ChartsLegend/ContinuousColorLegend.mjs +271 -0
- package/ChartsLegend/PiecewiseColorLegend.d.mts +43 -0
- package/ChartsLegend/PiecewiseColorLegend.mjs +277 -0
- package/ChartsLegend/chartsLegend.types.d.mts +26 -0
- package/ChartsLegend/chartsLegendClasses.d.mts +22 -0
- package/ChartsLegend/colorLegend.types.d.mts +13 -0
- package/ChartsLegend/continuousColorLegendClasses.d.mts +26 -0
- package/ChartsLegend/index.d.mts +16 -0
- package/ChartsLegend/index.mjs +12 -0
- package/ChartsLegend/legend.types.d.mts +9 -0
- package/ChartsLegend/legendContext.types.d.mts +71 -0
- package/ChartsLegend/legendContext.types.d.ts +11 -0
- package/ChartsLegend/onClickContextBuilder.d.mts +2 -0
- package/ChartsLegend/piecewiseColorDefaultLabelFormatter.d.mts +2 -0
- package/ChartsLegend/piecewiseColorLegendClasses.d.mts +32 -0
- package/ChartsLegend/useAxis.d.mts +10 -0
- package/ChartsLegend/useAxis.mjs +42 -0
- package/ChartsLocalizationProvider/ChartsLocalizationProvider.d.mts +27 -0
- package/ChartsLocalizationProvider/ChartsLocalizationProvider.mjs +64 -0
- package/ChartsLocalizationProvider/index.d.mts +2 -0
- package/ChartsLocalizationProvider/index.mjs +1 -0
- package/ChartsOverlay/ChartsLoadingOverlay.d.mts +2 -0
- package/ChartsOverlay/ChartsLoadingOverlay.js +3 -15
- package/ChartsOverlay/ChartsLoadingOverlay.mjs +30 -0
- package/ChartsOverlay/ChartsNoDataOverlay.d.mts +2 -0
- package/ChartsOverlay/ChartsNoDataOverlay.js +3 -15
- package/ChartsOverlay/ChartsNoDataOverlay.mjs +30 -0
- package/ChartsOverlay/ChartsOverlay.mjs +43 -0
- package/ChartsOverlay/common.d.mts +1 -0
- package/ChartsOverlay/common.d.ts +1 -0
- package/ChartsOverlay/common.js +22 -0
- package/ChartsOverlay/common.mjs +16 -0
- package/ChartsOverlay/index.d.mts +4 -0
- package/ChartsOverlay/index.mjs +3 -0
- package/ChartsReferenceLine/ChartsReferenceLine.d.mts +9 -0
- package/ChartsReferenceLine/ChartsReferenceLine.js +3 -2
- package/ChartsReferenceLine/ChartsReferenceLine.mjs +76 -0
- package/ChartsReferenceLine/ChartsXReferenceLine.d.mts +15 -0
- package/ChartsReferenceLine/ChartsXReferenceLine.mjs +153 -0
- package/ChartsReferenceLine/ChartsYReferenceLine.d.mts +15 -0
- package/ChartsReferenceLine/ChartsYReferenceLine.mjs +153 -0
- package/ChartsReferenceLine/common.d.mts +43 -0
- package/ChartsReferenceLine/common.mjs +25 -0
- package/ChartsReferenceLine/index.d.mts +4 -0
- package/ChartsReferenceLine/index.mjs +3 -0
- package/ChartsSurface/ChartsSurface.d.mts +23 -0
- package/ChartsSurface/ChartsSurface.d.ts +3 -5
- package/ChartsSurface/ChartsSurface.js +13 -76
- package/ChartsSurface/ChartsSurface.mjs +58 -0
- package/ChartsSurface/index.d.mts +2 -0
- package/ChartsSurface/index.mjs +3 -0
- package/ChartsSvgLayer/ChartsSvgLayer.d.mts +25 -0
- package/ChartsSvgLayer/ChartsSvgLayer.d.ts +25 -0
- package/ChartsSvgLayer/ChartsSvgLayer.js +101 -0
- package/ChartsSvgLayer/ChartsSvgLayer.mjs +95 -0
- package/ChartsSvgLayer/chartsSvgLayerClasses.d.mts +6 -0
- package/ChartsSvgLayer/chartsSvgLayerClasses.d.ts +6 -0
- package/ChartsSvgLayer/chartsSvgLayerClasses.js +21 -0
- package/ChartsSvgLayer/chartsSvgLayerClasses.mjs +13 -0
- package/ChartsSvgLayer/index.d.mts +2 -0
- package/ChartsSvgLayer/index.d.ts +2 -0
- package/ChartsSvgLayer/index.js +27 -0
- package/ChartsSvgLayer/index.mjs +2 -0
- package/ChartsText/ChartsText.d.mts +17 -0
- package/ChartsText/ChartsText.mjs +89 -0
- package/ChartsText/defaultTextPlacement.d.mts +9 -0
- package/ChartsText/defaultTextPlacement.mjs +34 -0
- package/ChartsText/index.d.mts +3 -0
- package/ChartsText/index.mjs +1 -0
- package/ChartsTooltip/ChartTooltip.types.d.mts +16 -0
- package/ChartsTooltip/ChartTooltip.types.d.ts +5 -4
- package/ChartsTooltip/ChartsAxisTooltipContent.d.mts +21 -0
- package/ChartsTooltip/ChartsAxisTooltipContent.d.ts +6 -0
- package/ChartsTooltip/ChartsAxisTooltipContent.js +22 -2
- package/ChartsTooltip/ChartsAxisTooltipContent.mjs +99 -0
- package/ChartsTooltip/ChartsItemTooltipContent.d.mts +15 -0
- package/ChartsTooltip/ChartsItemTooltipContent.mjs +108 -0
- package/ChartsTooltip/ChartsTooltip.d.mts +25 -0
- package/ChartsTooltip/ChartsTooltip.d.ts +10 -2
- package/ChartsTooltip/ChartsTooltip.js +21 -7
- package/ChartsTooltip/ChartsTooltip.mjs +221 -0
- package/ChartsTooltip/ChartsTooltipContainer.d.mts +57 -0
- package/ChartsTooltip/ChartsTooltipContainer.d.ts +1 -1
- package/ChartsTooltip/ChartsTooltipContainer.js +52 -20
- package/ChartsTooltip/ChartsTooltipContainer.mjs +395 -0
- package/ChartsTooltip/ChartsTooltipTable.mjs +98 -0
- package/ChartsTooltip/index.d.mts +13 -0
- package/ChartsTooltip/index.mjs +10 -0
- package/ChartsTooltip/useAxesTooltip.d.mts +33 -0
- package/ChartsTooltip/useAxesTooltip.mjs +180 -0
- package/ChartsTooltip/useItemTooltip.d.mts +16 -0
- package/ChartsTooltip/useItemTooltip.mjs +76 -0
- package/ChartsTooltip/utils.mjs +59 -0
- package/ChartsWrapper/ChartsWrapper.d.mts +35 -0
- package/ChartsWrapper/ChartsWrapper.d.ts +3 -5
- package/ChartsWrapper/ChartsWrapper.js +28 -12
- package/ChartsWrapper/ChartsWrapper.mjs +179 -0
- package/ChartsWrapper/index.d.mts +1 -0
- package/ChartsWrapper/index.mjs +1 -0
- package/ChartsXAxis/ChartsGroupedXAxisTicks.d.mts +7 -0
- package/ChartsXAxis/ChartsGroupedXAxisTicks.js +2 -1
- package/ChartsXAxis/ChartsGroupedXAxisTicks.mjs +95 -0
- package/ChartsXAxis/ChartsSingleXAxisTicks.d.mts +11 -0
- package/ChartsXAxis/ChartsSingleXAxisTicks.mjs +106 -0
- package/ChartsXAxis/ChartsXAxis.d.mts +17 -0
- package/ChartsXAxis/ChartsXAxis.mjs +138 -0
- package/ChartsXAxis/ChartsXAxisImpl.d.mts +12 -0
- package/ChartsXAxis/ChartsXAxisImpl.mjs +117 -0
- package/ChartsXAxis/getVisibleLabels.d.mts +14 -0
- package/ChartsXAxis/getVisibleLabels.mjs +91 -0
- package/ChartsXAxis/index.d.mts +1 -0
- package/ChartsXAxis/index.mjs +1 -0
- package/ChartsXAxis/shortenLabels.d.mts +4 -0
- package/ChartsXAxis/shortenLabels.mjs +42 -0
- package/ChartsXAxis/useAxisTicksProps.d.mts +3813 -0
- package/ChartsXAxis/useAxisTicksProps.d.ts +327 -327
- package/ChartsXAxis/useAxisTicksProps.mjs +74 -0
- package/ChartsXAxis/utilities.d.mts +10 -0
- package/ChartsXAxis/utilities.mjs +28 -0
- package/ChartsYAxis/ChartsGroupedYAxisTicks.d.mts +6 -0
- package/ChartsYAxis/ChartsGroupedYAxisTicks.js +2 -1
- package/ChartsYAxis/ChartsGroupedYAxisTicks.mjs +96 -0
- package/ChartsYAxis/ChartsSingleYAxisTicks.d.mts +11 -0
- package/ChartsYAxis/ChartsSingleYAxisTicks.mjs +96 -0
- package/ChartsYAxis/ChartsYAxis.d.mts +17 -0
- package/ChartsYAxis/ChartsYAxis.mjs +132 -0
- package/ChartsYAxis/ChartsYAxisImpl.d.mts +12 -0
- package/ChartsYAxis/ChartsYAxisImpl.mjs +133 -0
- package/ChartsYAxis/index.d.mts +1 -0
- package/ChartsYAxis/index.mjs +1 -0
- package/ChartsYAxis/shortenLabels.d.mts +4 -0
- package/ChartsYAxis/shortenLabels.mjs +41 -0
- package/ChartsYAxis/useAxisTicksProps.d.mts +3731 -0
- package/ChartsYAxis/useAxisTicksProps.d.ts +327 -327
- package/ChartsYAxis/useAxisTicksProps.mjs +72 -0
- package/ChartsYAxis/utilities.d.mts +9 -0
- package/ChartsYAxis/utilities.mjs +27 -0
- package/Gauge/Gauge.d.mts +10 -0
- package/Gauge/Gauge.d.ts +1 -1
- package/Gauge/Gauge.mjs +145 -0
- package/Gauge/GaugeContainer.d.mts +10 -0
- package/Gauge/GaugeContainer.d.ts +1 -1
- package/Gauge/GaugeContainer.mjs +185 -0
- package/Gauge/GaugeProvider.mjs +89 -0
- package/Gauge/GaugeReferenceArc.mjs +45 -0
- package/Gauge/GaugeValueArc.mjs +102 -0
- package/Gauge/GaugeValueText.d.mts +14 -0
- package/Gauge/GaugeValueText.mjs +72 -0
- package/Gauge/index.d.mts +7 -0
- package/Gauge/index.mjs +7 -0
- package/Gauge/utils.mjs +66 -0
- package/LineChart/AnimatedArea.d.mts +26 -0
- package/LineChart/AnimatedArea.mjs +64 -0
- package/LineChart/AnimatedLine.d.mts +23 -0
- package/LineChart/AnimatedLine.mjs +71 -0
- package/LineChart/AppearingMask.d.mts +17 -0
- package/LineChart/AppearingMask.mjs +50 -0
- package/LineChart/AreaElement.d.mts +72 -0
- package/LineChart/AreaElement.d.ts +8 -2
- package/LineChart/AreaElement.js +7 -6
- package/LineChart/AreaElement.mjs +112 -0
- package/LineChart/AreaPlot.d.mts +29 -0
- package/LineChart/AreaPlot.mjs +107 -0
- package/LineChart/CircleMarkElement.d.mts +45 -0
- package/LineChart/CircleMarkElement.mjs +106 -0
- package/LineChart/FocusedLineMark.mjs +41 -0
- package/LineChart/LineChart.d.mts +90 -0
- package/LineChart/LineChart.d.ts +1 -1
- package/LineChart/LineChart.js +45 -13
- package/LineChart/LineChart.mjs +1248 -0
- package/LineChart/LineChart.plugins.d.mts +11 -0
- package/LineChart/LineChart.plugins.d.ts +1 -1
- package/LineChart/LineChart.plugins.mjs +9 -0
- package/LineChart/LineElement.d.mts +76 -0
- package/LineChart/LineElement.d.ts +8 -2
- package/LineChart/LineElement.js +7 -6
- package/LineChart/LineElement.mjs +116 -0
- package/LineChart/LineHighlightElement.d.mts +36 -0
- package/LineChart/LineHighlightElement.d.ts +2 -2
- package/LineChart/LineHighlightElement.mjs +79 -0
- package/LineChart/LineHighlightPlot.d.mts +36 -0
- package/LineChart/LineHighlightPlot.js +4 -3
- package/LineChart/LineHighlightPlot.mjs +124 -0
- package/LineChart/LinePlot.d.mts +28 -0
- package/LineChart/LinePlot.mjs +109 -0
- package/LineChart/MarkElement.d.mts +47 -0
- package/LineChart/MarkElement.mjs +122 -0
- package/LineChart/MarkPlot.d.mts +42 -0
- package/LineChart/MarkPlot.js +5 -5
- package/LineChart/MarkPlot.mjs +139 -0
- package/LineChart/index.d.mts +15 -0
- package/LineChart/index.mjs +14 -0
- package/LineChart/markElementClasses.d.mts +33 -0
- package/LineChart/markElementClasses.d.ts +8 -2
- package/LineChart/seriesConfig/extremums.d.mts +3 -0
- package/LineChart/seriesConfig/extremums.mjs +56 -0
- package/LineChart/seriesConfig/getColor.d.mts +3 -0
- package/LineChart/seriesConfig/getColor.mjs +55 -0
- package/LineChart/seriesConfig/getSeriesWithDefaultValues.d.mts +3 -0
- package/LineChart/seriesConfig/index.d.mts +2 -0
- package/LineChart/seriesConfig/index.js +4 -1
- package/LineChart/seriesConfig/index.mjs +27 -0
- package/LineChart/seriesConfig/keyboardFocusHandler.d.mts +4 -0
- package/LineChart/seriesConfig/keyboardFocusHandler.d.ts +1 -1
- package/LineChart/seriesConfig/keyboardFocusHandler.js +3 -15
- package/LineChart/seriesConfig/keyboardFocusHandler.mjs +4 -0
- package/LineChart/seriesConfig/legend.d.mts +3 -0
- package/LineChart/seriesConfig/legend.mjs +22 -0
- package/LineChart/seriesConfig/seriesProcessor.d.mts +3 -0
- package/LineChart/seriesConfig/seriesProcessor.js +5 -3
- package/LineChart/seriesConfig/seriesProcessor.mjs +108 -0
- package/LineChart/seriesConfig/tooltip.d.mts +4 -0
- package/LineChart/seriesConfig/tooltip.mjs +31 -0
- package/LineChart/seriesConfig/tooltipPosition.d.mts +3 -0
- package/LineChart/useAreaPlotData.d.mts +12 -0
- package/LineChart/useAreaPlotData.js +2 -2
- package/LineChart/useAreaPlotData.mjs +120 -0
- package/LineChart/useLineChartProps.d.mts +40 -0
- package/LineChart/useLineChartProps.js +2 -2
- package/LineChart/useLineChartProps.mjs +143 -0
- package/LineChart/useLinePlotData.d.mts +12 -0
- package/LineChart/useLinePlotData.js +1 -1
- package/LineChart/useLinePlotData.mjs +109 -0
- package/LineChart/useMarkPlotData.d.mts +19 -0
- package/LineChart/useMarkPlotData.js +3 -3
- package/LineChart/useMarkPlotData.mjs +102 -0
- package/PieChart/FocusedPieArc.d.mts +2 -0
- package/PieChart/FocusedPieArc.mjs +54 -0
- package/PieChart/PieArc.d.mts +73 -0
- package/PieChart/PieArc.d.ts +8 -2
- package/PieChart/PieArc.js +5 -5
- package/PieChart/PieArc.mjs +135 -0
- package/PieChart/PieArcLabel.d.mts +59 -0
- package/PieChart/PieArcLabel.d.ts +8 -2
- package/PieChart/PieArcLabel.js +3 -1
- package/PieChart/PieArcLabel.mjs +124 -0
- package/PieChart/PieArcLabelPlot.d.mts +40 -0
- package/PieChart/PieArcLabelPlot.mjs +183 -0
- package/PieChart/PieArcPlot.d.mts +47 -0
- package/PieChart/PieArcPlot.mjs +161 -0
- package/PieChart/PieChart.d.mts +57 -0
- package/PieChart/PieChart.d.ts +3 -3
- package/PieChart/PieChart.js +30 -14
- package/PieChart/PieChart.mjs +297 -0
- package/PieChart/PieChart.plugins.d.mts +8 -0
- package/PieChart/PieChart.plugins.d.ts +1 -1
- package/PieChart/PieChart.plugins.mjs +6 -0
- package/PieChart/PiePlot.d.mts +31 -0
- package/PieChart/PiePlot.mjs +124 -0
- package/PieChart/dataTransform/getModifiedArcProperties.d.mts +11 -0
- package/PieChart/dataTransform/getModifiedArcProperties.mjs +36 -0
- package/PieChart/dataTransform/useTransformData.d.mts +17 -0
- package/PieChart/dataTransform/useTransformData.js +5 -8
- package/PieChart/dataTransform/useTransformData.mjs +50 -0
- package/PieChart/getPieCoordinates.d.mts +7 -0
- package/PieChart/getPieCoordinates.mjs +19 -0
- package/PieChart/index.d.mts +11 -0
- package/PieChart/index.mjs +10 -0
- package/PieChart/seriesConfig/getColor.d.mts +3 -0
- package/PieChart/seriesConfig/getSeriesWithDefaultValues.d.mts +3 -0
- package/PieChart/seriesConfig/index.d.mts +2 -0
- package/PieChart/seriesConfig/index.js +4 -1
- package/PieChart/seriesConfig/index.mjs +25 -0
- package/PieChart/seriesConfig/keyboardFocusHandler.d.mts +3 -0
- package/PieChart/seriesConfig/keyboardFocusHandler.js +2 -15
- package/PieChart/seriesConfig/keyboardFocusHandler.mjs +4 -0
- package/PieChart/seriesConfig/legend.d.mts +3 -0
- package/PieChart/seriesConfig/legend.mjs +27 -0
- package/PieChart/seriesConfig/seriesLayout.d.mts +3 -0
- package/PieChart/seriesConfig/seriesLayout.mjs +42 -0
- package/PieChart/seriesConfig/seriesProcessor.d.mts +3 -0
- package/PieChart/seriesConfig/seriesProcessor.mjs +87 -0
- package/PieChart/seriesConfig/tooltip.d.mts +3 -0
- package/PieChart/seriesConfig/tooltip.mjs +32 -0
- package/PieChart/seriesConfig/tooltipPosition.d.mts +3 -0
- package/PieChart/seriesConfig/tooltipPosition.mjs +60 -0
- package/RadarChart/FocusedRadarMark.mjs +28 -0
- package/RadarChart/RadarAxis/RadarAxis.d.mts +29 -0
- package/RadarChart/RadarAxis/RadarAxis.mjs +94 -0
- package/RadarChart/RadarAxis/RadarAxis.utils.d.mts +20 -0
- package/RadarChart/RadarAxis/index.d.mts +3 -0
- package/RadarChart/RadarAxis/index.mjs +3 -0
- package/RadarChart/RadarAxis/useRadarAxis.mjs +75 -0
- package/RadarChart/RadarAxisHighlight/RadarAxisHighlight.d.mts +12 -0
- package/RadarChart/RadarAxisHighlight/RadarAxisHighlight.mjs +83 -0
- package/RadarChart/RadarAxisHighlight/index.d.mts +2 -0
- package/RadarChart/RadarAxisHighlight/index.mjs +2 -0
- package/RadarChart/RadarAxisHighlight/useRadarAxisHighlight.d.mts +51 -0
- package/RadarChart/RadarAxisHighlight/useRadarAxisHighlight.mjs +58 -0
- package/RadarChart/RadarChart.d.mts +46 -0
- package/RadarChart/RadarChart.d.ts +1 -1
- package/RadarChart/RadarChart.js +28 -13
- package/RadarChart/RadarChart.mjs +302 -0
- package/RadarChart/RadarChart.plugins.d.mts +8 -0
- package/RadarChart/RadarChart.plugins.d.ts +2 -2
- package/RadarChart/RadarChart.plugins.mjs +7 -0
- package/RadarChart/RadarDataProvider/RadarDataProvider.d.mts +25 -0
- package/RadarChart/RadarDataProvider/RadarDataProvider.mjs +86 -0
- package/RadarChart/RadarDataProvider/index.d.mts +1 -0
- package/RadarChart/RadarDataProvider/index.mjs +1 -0
- package/RadarChart/RadarDataProvider/radar.types.d.mts +43 -0
- package/RadarChart/RadarGrid/CircularRadarGrid.d.mts +5 -0
- package/RadarChart/RadarGrid/CircularRadarStripes.d.mts +5 -0
- package/RadarChart/RadarGrid/RadarGrid.d.mts +6 -0
- package/RadarChart/RadarGrid/RadarGrid.mjs +89 -0
- package/RadarChart/RadarGrid/RadarGrid.types.d.mts +49 -0
- package/RadarChart/RadarGrid/SharpRadarGrid.d.mts +5 -0
- package/RadarChart/RadarGrid/SharpRadarStripes.d.mts +5 -0
- package/RadarChart/RadarGrid/index.d.mts +3 -0
- package/RadarChart/RadarGrid/index.mjs +2 -0
- package/RadarChart/RadarGrid/useRadarGridData.mjs +40 -0
- package/RadarChart/RadarMetricLabels/RadarMetricLabels.mjs +35 -0
- package/RadarChart/RadarMetricLabels/index.d.mts +1 -0
- package/RadarChart/RadarMetricLabels/index.mjs +1 -0
- package/RadarChart/RadarMetricLabels/useRadarMetricData.mjs +37 -0
- package/RadarChart/RadarSeriesPlot/RadarSeriesArea.d.mts +31 -0
- package/RadarChart/RadarSeriesPlot/RadarSeriesArea.d.ts +14 -6
- package/RadarChart/RadarSeriesPlot/RadarSeriesArea.js +5 -1
- package/RadarChart/RadarSeriesPlot/RadarSeriesArea.mjs +109 -0
- package/RadarChart/RadarSeriesPlot/RadarSeriesMarks.d.mts +23 -0
- package/RadarChart/RadarSeriesPlot/RadarSeriesMarks.d.ts +3 -3
- package/RadarChart/RadarSeriesPlot/RadarSeriesMarks.js +2 -0
- package/RadarChart/RadarSeriesPlot/RadarSeriesMarks.mjs +104 -0
- package/RadarChart/RadarSeriesPlot/RadarSeriesPlot.d.mts +6 -0
- package/RadarChart/RadarSeriesPlot/RadarSeriesPlot.mjs +102 -0
- package/RadarChart/RadarSeriesPlot/RadarSeriesPlot.types.d.mts +48 -0
- package/RadarChart/RadarSeriesPlot/index.d.mts +6 -0
- package/RadarChart/RadarSeriesPlot/index.mjs +4 -0
- package/RadarChart/RadarSeriesPlot/radarSeriesPlotClasses.d.mts +22 -0
- package/RadarChart/RadarSeriesPlot/radarSeriesPlotClasses.d.ts +8 -2
- package/RadarChart/RadarSeriesPlot/useInteractionAllItemProps.d.mts +7 -0
- package/RadarChart/RadarSeriesPlot/useInteractionAllItemProps.mjs +18 -0
- package/RadarChart/RadarSeriesPlot/useRadarRotationIndex.js +7 -5
- package/RadarChart/RadarSeriesPlot/useRadarRotationIndex.mjs +32 -0
- package/RadarChart/RadarSeriesPlot/useRadarSeriesData.d.mts +32 -0
- package/RadarChart/RadarSeriesPlot/useRadarSeriesData.js +4 -0
- package/RadarChart/RadarSeriesPlot/useRadarSeriesData.mjs +73 -0
- package/RadarChart/index.d.mts +20 -0
- package/RadarChart/index.d.ts +1 -1
- package/RadarChart/index.mjs +21 -0
- package/RadarChart/seriesConfig/extremums.d.mts +3 -0
- package/RadarChart/seriesConfig/getColor.d.mts +3 -0
- package/RadarChart/seriesConfig/getColor.mjs +15 -0
- package/RadarChart/seriesConfig/getSeriesWithDefaultValues.d.mts +3 -0
- package/RadarChart/seriesConfig/index.d.mts +2 -0
- package/RadarChart/seriesConfig/index.js +4 -1
- package/RadarChart/seriesConfig/index.mjs +27 -0
- package/RadarChart/seriesConfig/keyboardFocusHandler.d.mts +3 -0
- package/RadarChart/seriesConfig/keyboardFocusHandler.js +2 -15
- package/RadarChart/seriesConfig/keyboardFocusHandler.mjs +4 -0
- package/RadarChart/seriesConfig/legend.d.mts +3 -0
- package/RadarChart/seriesConfig/legend.mjs +22 -0
- package/RadarChart/seriesConfig/seriesProcessor.d.mts +3 -0
- package/RadarChart/seriesConfig/tooltip.d.mts +4 -0
- package/RadarChart/seriesConfig/tooltip.mjs +39 -0
- package/RadarChart/seriesConfig/tooltipPosition.d.mts +3 -0
- package/RadarChart/seriesConfig/tooltipPosition.mjs +100 -0
- package/RadarChart/useRadarChartProps.d.mts +28 -0
- package/RadarChart/useRadarChartProps.js +5 -3
- package/RadarChart/useRadarChartProps.mjs +95 -0
- package/ScatterChart/BatchScatter.d.mts +31 -0
- package/ScatterChart/BatchScatter.js +7 -7
- package/ScatterChart/BatchScatter.mjs +158 -0
- package/ScatterChart/FocusedScatterMark.mjs +44 -0
- package/ScatterChart/Scatter.d.mts +44 -0
- package/ScatterChart/Scatter.mjs +111 -0
- package/ScatterChart/ScatterChart.d.mts +85 -0
- package/ScatterChart/ScatterChart.d.ts +1 -1
- package/ScatterChart/ScatterChart.js +45 -13
- package/ScatterChart/ScatterChart.mjs +1252 -0
- package/ScatterChart/ScatterChart.plugins.d.mts +12 -0
- package/ScatterChart/ScatterChart.plugins.d.ts +1 -1
- package/ScatterChart/ScatterChart.plugins.mjs +10 -0
- package/ScatterChart/ScatterMarker.d.mts +46 -0
- package/ScatterChart/ScatterMarker.types.d.mts +24 -0
- package/ScatterChart/ScatterPlot.d.mts +45 -0
- package/ScatterChart/ScatterPlot.mjs +115 -0
- package/ScatterChart/index.d.mts +9 -0
- package/ScatterChart/index.mjs +8 -0
- package/ScatterChart/seriesConfig/extremums.d.mts +3 -0
- package/ScatterChart/seriesConfig/getColor.d.mts +3 -0
- package/ScatterChart/seriesConfig/getColor.mjs +81 -0
- package/ScatterChart/seriesConfig/getSeriesWithDefaultValues.d.mts +3 -0
- package/ScatterChart/seriesConfig/index.d.mts +2 -0
- package/ScatterChart/seriesConfig/index.js +4 -1
- package/ScatterChart/seriesConfig/index.mjs +26 -0
- package/ScatterChart/seriesConfig/keyboardFocusHandler.d.mts +4 -0
- package/ScatterChart/seriesConfig/keyboardFocusHandler.d.ts +1 -1
- package/ScatterChart/seriesConfig/keyboardFocusHandler.js +3 -15
- package/ScatterChart/seriesConfig/keyboardFocusHandler.mjs +4 -0
- package/ScatterChart/seriesConfig/legend.d.mts +3 -0
- package/ScatterChart/seriesConfig/legend.mjs +22 -0
- package/ScatterChart/seriesConfig/seriesProcessor.d.mts +3 -0
- package/ScatterChart/seriesConfig/seriesProcessor.js +2 -1
- package/ScatterChart/seriesConfig/seriesProcessor.mjs +41 -0
- package/ScatterChart/seriesConfig/tooltip.d.mts +3 -0
- package/ScatterChart/seriesConfig/tooltip.mjs +25 -0
- package/ScatterChart/seriesConfig/tooltipPosition.d.mts +3 -0
- package/ScatterChart/useScatterChartProps.d.mts +29 -0
- package/ScatterChart/useScatterChartProps.js +2 -2
- package/ScatterChart/useScatterChartProps.mjs +110 -0
- package/ScatterChart/useScatterPlotData.d.mts +8 -0
- package/ScatterChart/useScatterPlotData.mjs +26 -0
- package/SparkLineChart/SparkLineChart.d.mts +129 -0
- package/SparkLineChart/SparkLineChart.d.ts +1 -1
- package/SparkLineChart/SparkLineChart.js +96 -14
- package/SparkLineChart/SparkLineChart.mjs +1449 -0
- package/SparkLineChart/index.d.mts +1 -0
- package/SparkLineChart/index.mjs +1 -0
- package/Toolbar/Toolbar.mjs +58 -0
- package/Toolbar/ToolbarButton.d.mts +11 -0
- package/Toolbar/ToolbarButton.mjs +56 -0
- package/Toolbar/index.d.mts +4 -0
- package/Toolbar/index.mjs +4 -0
- package/colorPalettes/categorical/blueberryTwilight.d.mts +4 -0
- package/colorPalettes/categorical/cheerfulFiesta.d.mts +4 -0
- package/colorPalettes/categorical/mangoFusion.d.mts +4 -0
- package/colorPalettes/categorical/rainbowSurge.d.mts +4 -0
- package/colorPalettes/index.d.mts +14 -0
- package/colorPalettes/index.mjs +20 -0
- package/colorPalettes/sequential/blue.d.mts +4 -0
- package/colorPalettes/sequential/cyan.d.mts +4 -0
- package/colorPalettes/sequential/green.d.mts +4 -0
- package/colorPalettes/sequential/orange.d.mts +4 -0
- package/colorPalettes/sequential/pink.d.mts +4 -0
- package/colorPalettes/sequential/purple.d.mts +4 -0
- package/colorPalettes/sequential/red.d.mts +4 -0
- package/colorPalettes/sequential/strawberrySky.d.mts +4 -0
- package/colorPalettes/sequential/yellow.d.mts +4 -0
- package/context/ChartApi.d.mts +22 -0
- package/context/ChartProvider/ChartContext.d.mts +5 -0
- package/context/ChartProvider/ChartContext.d.ts +2 -3
- package/context/ChartProvider/ChartContext.js +3 -4
- package/context/ChartProvider/ChartContext.mjs +9 -0
- package/context/ChartProvider/ChartProvider.d.mts +5 -0
- package/context/ChartProvider/ChartProvider.d.ts +5 -7
- package/context/ChartProvider/ChartProvider.js +6 -28
- package/context/ChartProvider/ChartProvider.mjs +8 -0
- package/context/ChartProvider/ChartProvider.types.d.mts +15 -0
- package/context/ChartProvider/ChartProvider.types.d.ts +14 -26
- package/context/ChartProvider/index.d.mts +3 -0
- package/context/ChartProvider/index.mjs +3 -0
- package/context/ChartProvider/useChartContext.d.mts +4 -0
- package/context/ChartProvider/useChartContext.d.ts +4 -3
- package/context/ChartProvider/useChartContext.js +5 -11
- package/context/ChartProvider/useChartContext.mjs +8 -0
- package/context/ChartsProvider/ChartsContext.d.mts +6 -0
- package/context/ChartsProvider/ChartsContext.d.ts +6 -0
- package/context/ChartsProvider/ChartsContext.js +14 -0
- package/context/ChartsProvider/ChartsContext.mjs +8 -0
- package/context/ChartsProvider/ChartsProvider.d.mts +7 -0
- package/context/ChartsProvider/ChartsProvider.d.ts +7 -0
- package/context/ChartsProvider/ChartsProvider.js +34 -0
- package/context/ChartsProvider/ChartsProvider.mjs +29 -0
- package/context/ChartsProvider/ChartsProvider.types.d.mts +27 -0
- package/context/ChartsProvider/ChartsProvider.types.d.ts +27 -0
- package/context/ChartsProvider/ChartsProvider.types.js +5 -0
- package/context/ChartsProvider/index.d.mts +3 -0
- package/context/ChartsProvider/index.d.ts +3 -0
- package/context/ChartsProvider/index.js +38 -0
- package/context/ChartsProvider/index.mjs +3 -0
- package/context/ChartsProvider/useChartsContext.d.mts +3 -0
- package/context/ChartsProvider/useChartsContext.d.ts +3 -0
- package/context/ChartsProvider/useChartsContext.js +20 -0
- package/context/ChartsProvider/useChartsContext.mjs +12 -0
- package/context/ChartsSlotsContext.d.mts +20 -0
- package/context/ChartsSlotsContext.d.ts +1 -1
- package/context/ChartsSlotsContext.js +3 -2
- package/context/ChartsSlotsContext.mjs +36 -0
- package/context/index.d.mts +4 -0
- package/context/index.d.ts +1 -1
- package/context/index.mjs +2 -0
- package/context/useChartApiContext.d.mts +10 -0
- package/context/useChartApiContext.mjs +21 -0
- package/hooks/animation/index.d.mts +7 -0
- package/hooks/animation/index.mjs +7 -0
- package/hooks/animation/useAnimate.mjs +49 -0
- package/hooks/animation/useAnimateArea.d.mts +15 -0
- package/hooks/animation/useAnimateArea.mjs +24 -0
- package/hooks/animation/useAnimateBar.d.mts +17 -0
- package/hooks/animation/useAnimateBar.mjs +50 -0
- package/hooks/animation/useAnimateBarLabel.d.mts +19 -0
- package/hooks/animation/useAnimateBarLabel.mjs +102 -0
- package/hooks/animation/useAnimateGaugeValueArc.mjs +54 -0
- package/hooks/animation/useAnimateLine.d.mts +14 -0
- package/hooks/animation/useAnimateLine.mjs +23 -0
- package/hooks/animation/useAnimatePieArc.d.mts +15 -0
- package/hooks/animation/useAnimatePieArc.mjs +62 -0
- package/hooks/animation/useAnimatePieArcLabel.d.mts +24 -0
- package/hooks/animation/useAnimatePieArcLabel.mjs +68 -0
- package/hooks/getValueToPositionMapper.d.mts +12 -0
- package/hooks/getValueToPositionMapper.d.ts +12 -0
- package/hooks/getValueToPositionMapper.js +26 -0
- package/hooks/getValueToPositionMapper.mjs +21 -0
- package/hooks/index.d.mts +27 -0
- package/hooks/index.d.ts +3 -2
- package/hooks/index.js +16 -4
- package/hooks/index.mjs +26 -0
- package/hooks/useAxis.d.mts +151 -0
- package/hooks/useAxis.mjs +222 -0
- package/hooks/useAxisCoordinates.d.mts +30 -0
- package/hooks/useAxisCoordinates.mjs +105 -0
- package/hooks/useAxisSystem.mjs +25 -0
- package/hooks/useAxisTicks.d.mts +14 -0
- package/hooks/useAxisTicks.mjs +68 -0
- package/hooks/useBarSeries.d.mts +36 -0
- package/hooks/useBarSeries.mjs +41 -0
- package/hooks/useBrush.mjs +15 -0
- package/hooks/useChartGradientId.d.mts +31 -0
- package/hooks/useChartGradientId.mjs +47 -0
- package/hooks/useChartId.mjs +13 -0
- package/hooks/useChartRootRef.mjs +14 -0
- package/hooks/useChartsLayerContainerRef.d.mts +6 -0
- package/hooks/useChartsLayerContainerRef.d.ts +6 -0
- package/hooks/useChartsLayerContainerRef.js +18 -0
- package/hooks/useChartsLayerContainerRef.mjs +14 -0
- package/hooks/useChartsLocalization.d.mts +1 -0
- package/hooks/useChartsLocalization.js +3 -1
- package/hooks/useChartsLocalization.mjs +12 -0
- package/hooks/useColorScale.d.mts +22 -0
- package/hooks/useColorScale.mjs +37 -0
- package/hooks/useDataset.d.mts +6 -0
- package/hooks/useDataset.mjs +12 -0
- package/hooks/useDrawingArea.mjs +15 -0
- package/hooks/useFocusedItem.d.mts +4 -0
- package/hooks/useFocusedItem.mjs +12 -0
- package/hooks/useInteractionItemProps.d.mts +18 -0
- package/hooks/useInteractionItemProps.d.ts +2 -2
- package/hooks/useInteractionItemProps.js +2 -13
- package/hooks/useInteractionItemProps.mjs +62 -0
- package/hooks/useIsItemFocused.d.mts +13 -0
- package/hooks/useIsItemFocused.mjs +16 -0
- package/hooks/useIsItemFocusedGetter.d.mts +9 -0
- package/hooks/useIsItemFocusedGetter.mjs +15 -0
- package/hooks/useItemHighlighted.d.mts +24 -0
- package/hooks/useItemHighlighted.d.ts +5 -4
- package/hooks/useItemHighlighted.js +1 -1
- package/hooks/useItemHighlighted.mjs +22 -0
- package/hooks/useItemHighlightedGetter.d.mts +53 -0
- package/hooks/useItemHighlightedGetter.d.ts +44 -3
- package/hooks/useItemHighlightedGetter.mjs +21 -0
- package/hooks/useLegend.d.mts +13 -0
- package/hooks/useLegend.d.ts +2 -2
- package/hooks/useLegend.mjs +29 -0
- package/hooks/useLineSeries.d.mts +36 -0
- package/hooks/useLineSeries.mjs +41 -0
- package/hooks/usePieSeries.d.mts +41 -0
- package/hooks/usePieSeries.mjs +52 -0
- package/hooks/useRadarSeries.d.mts +35 -0
- package/hooks/useRadarSeries.mjs +40 -0
- package/hooks/useScale.d.mts +36 -0
- package/hooks/useScale.d.ts +1 -12
- package/hooks/useScale.js +0 -21
- package/hooks/useScale.mjs +54 -0
- package/hooks/useScatterSeries.d.mts +35 -0
- package/hooks/useScatterSeries.mjs +40 -0
- package/hooks/useSeries.d.mts +7 -0
- package/hooks/useSeries.mjs +14 -0
- package/hooks/useSkipAnimation.mjs +15 -0
- package/hooks/useTicks.d.mts +91 -0
- package/hooks/useTicks.mjs +260 -0
- package/hooks/useTicksGrouped.d.mts +28 -0
- package/hooks/useTicksGrouped.mjs +98 -0
- package/hooks/useZAxis.d.mts +7 -0
- package/hooks/useZAxis.mjs +26 -0
- package/index.d.mts +38 -0
- package/index.d.ts +4 -1
- package/index.js +37 -1
- package/index.mjs +46 -0
- package/internals/Flatbush.js +12 -11
- package/internals/Flatbush.mjs +469 -0
- package/internals/animation/Transition.d.mts +37 -0
- package/internals/animation/Transition.d.ts +1 -1
- package/internals/animation/Transition.js +6 -6
- package/internals/animation/Transition.mjs +78 -0
- package/internals/animation/useAnimateInternal.mjs +76 -0
- package/internals/colorScale.d.mts +5 -0
- package/internals/commonNextFocusItem.d.mts +39 -0
- package/internals/commonNextFocusItem.d.ts +4 -6
- package/internals/commonNextFocusItem.js +5 -7
- package/internals/commonNextFocusItem.mjs +122 -0
- package/internals/components/AxisSharedComponents.mjs +25 -0
- package/internals/components/ChartsAxesGradients/ChartsAxesGradients.mjs +133 -0
- package/internals/components/ChartsAxesGradients/ChartsContinuousGradient.d.mts +18 -0
- package/internals/components/ChartsAxesGradients/ChartsContinuousGradientObjectBound.d.mts +12 -0
- package/internals/components/ChartsAxesGradients/ChartsPiecewiseGradient.d.mts +11 -0
- package/internals/components/ChartsAxesGradients/index.d.mts +1 -0
- package/internals/components/ChartsAxesGradients/index.mjs +1 -0
- package/internals/components/NotRendered.js +3 -1
- package/internals/components/NotRendered.mjs +11 -0
- package/internals/configInit.d.mts +16 -0
- package/internals/configInit.js +4 -2
- package/internals/configInit.mjs +39 -0
- package/internals/constants.d.mts +16 -0
- package/internals/createCommonKeyboardFocusHandler.d.mts +15 -0
- package/internals/createCommonKeyboardFocusHandler.d.ts +15 -0
- package/internals/createCommonKeyboardFocusHandler.js +27 -0
- package/internals/createCommonKeyboardFocusHandler.mjs +22 -0
- package/internals/createGetBarDimensions.d.mts +14 -0
- package/internals/createGetBarDimensions.mjs +55 -0
- package/internals/createSvgIcon.d.mts +3 -0
- package/internals/dateHelpers.d.mts +17 -0
- package/internals/defaultValueFormatters.d.mts +6 -0
- package/internals/defaultizeMargin.d.mts +3 -0
- package/internals/ellipsize.mjs +53 -0
- package/internals/geometry.mjs +35 -0
- package/internals/getCurve.d.mts +2 -0
- package/internals/getGraphemeCount.js +3 -1
- package/internals/getGraphemeCount.mjs +21 -0
- package/internals/getPercentageValue.js +3 -1
- package/internals/getPercentageValue.mjs +29 -0
- package/internals/getScale.d.mts +3 -0
- package/internals/getScale.mjs +20 -0
- package/internals/getSeriesColorFn.d.mts +6 -0
- package/internals/getSurfacePoint.d.mts +6 -0
- package/internals/getSurfacePoint.d.ts +6 -0
- package/internals/getSurfacePoint.js +18 -0
- package/internals/getSurfacePoint.mjs +12 -0
- package/internals/getWordsByLines.mjs +14 -0
- package/internals/identifierCleaner.d.mts +11 -0
- package/internals/identifierCleaner.d.ts +2 -2
- package/internals/identifierSerializer.d.mts +9 -0
- package/internals/index.d.mts +88 -0
- package/internals/index.d.ts +4 -1
- package/internals/index.js +44 -12
- package/internals/index.mjs +101 -0
- package/internals/invertScale.d.mts +6 -0
- package/internals/invertScale.mjs +16 -0
- package/internals/invertTextAnchor.d.mts +2 -0
- package/internals/isCartesian.d.mts +3 -0
- package/internals/isCartesian.mjs +7 -0
- package/internals/isPolar.d.mts +2 -0
- package/internals/isPolar.mjs +4 -0
- package/internals/material/index.d.mts +6 -0
- package/internals/plugins/allPlugins.d.mts +14 -0
- package/internals/plugins/allPlugins.d.ts +3 -3
- package/internals/plugins/allPlugins.mjs +12 -0
- package/internals/plugins/corePlugins/corePlugins.d.mts +16 -0
- package/internals/plugins/corePlugins/corePlugins.mjs +13 -0
- package/internals/plugins/corePlugins/index.d.mts +3 -0
- package/internals/plugins/corePlugins/index.mjs +1 -0
- package/internals/plugins/corePlugins/useChartAnimation/index.d.mts +3 -0
- package/internals/plugins/corePlugins/useChartAnimation/index.mjs +2 -0
- package/internals/plugins/corePlugins/useChartAnimation/useChartAnimation.d.mts +3 -0
- package/internals/plugins/corePlugins/useChartAnimation/useChartAnimation.selectors.d.mts +3 -0
- package/internals/plugins/corePlugins/useChartAnimation/useChartAnimation.types.d.mts +39 -0
- package/internals/plugins/corePlugins/useChartDimensions/index.d.mts +3 -0
- package/internals/plugins/corePlugins/useChartDimensions/index.mjs +2 -0
- package/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.d.mts +3 -0
- package/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.js +5 -5
- package/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.mjs +183 -0
- package/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.selectors.d.mts +27 -0
- package/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.selectors.mjs +31 -0
- package/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.types.d.mts +93 -0
- package/internals/plugins/corePlugins/useChartElementRef/index.d.mts +2 -0
- package/internals/plugins/corePlugins/useChartElementRef/index.mjs +1 -0
- package/internals/plugins/corePlugins/useChartElementRef/useChartElementRef.d.mts +3 -0
- package/internals/plugins/corePlugins/useChartElementRef/useChartElementRef.js +2 -2
- package/internals/plugins/corePlugins/useChartElementRef/useChartElementRef.mjs +14 -0
- package/internals/plugins/corePlugins/useChartElementRef/useChartElementRef.types.d.mts +15 -0
- package/internals/plugins/corePlugins/useChartElementRef/useChartElementRef.types.d.ts +2 -2
- package/internals/plugins/corePlugins/useChartExperimentalFeature/index.d.mts +3 -0
- package/internals/plugins/corePlugins/useChartExperimentalFeature/index.mjs +2 -0
- package/internals/plugins/corePlugins/useChartExperimentalFeature/useChartExperimentalFeature.d.mts +3 -0
- package/internals/plugins/corePlugins/useChartExperimentalFeature/useChartExperimentalFeature.selectors.d.mts +6 -0
- package/internals/plugins/corePlugins/useChartExperimentalFeature/useChartExperimentalFeature.types.d.mts +21 -0
- package/internals/plugins/corePlugins/useChartId/index.d.mts +3 -0
- package/internals/plugins/corePlugins/useChartId/index.mjs +2 -0
- package/internals/plugins/corePlugins/useChartId/useChartId.d.mts +3 -0
- package/internals/plugins/corePlugins/useChartId/useChartId.mjs +30 -0
- package/internals/plugins/corePlugins/useChartId/useChartId.selectors.d.mts +8 -0
- package/internals/plugins/corePlugins/useChartId/useChartId.types.d.mts +20 -0
- package/internals/plugins/corePlugins/useChartInteractionListener/index.d.mts +2 -0
- package/internals/plugins/corePlugins/useChartInteractionListener/index.mjs +1 -0
- package/internals/plugins/corePlugins/useChartInteractionListener/useChartInteractionListener.d.mts +3 -0
- package/internals/plugins/corePlugins/useChartInteractionListener/useChartInteractionListener.js +10 -10
- package/internals/plugins/corePlugins/useChartInteractionListener/useChartInteractionListener.mjs +118 -0
- package/internals/plugins/corePlugins/useChartInteractionListener/useChartInteractionListener.types.d.mts +51 -0
- package/internals/plugins/corePlugins/useChartSeries/index.d.mts +3 -0
- package/internals/plugins/corePlugins/useChartSeries/index.d.ts +1 -1
- package/internals/plugins/corePlugins/useChartSeries/index.mjs +2 -0
- package/internals/plugins/corePlugins/useChartSeries/processSeries.d.mts +42 -0
- package/internals/plugins/corePlugins/useChartSeries/processSeries.d.ts +5 -2
- package/internals/plugins/corePlugins/useChartSeries/processSeries.js +12 -2
- package/internals/plugins/corePlugins/useChartSeries/processSeries.mjs +90 -0
- package/internals/plugins/corePlugins/useChartSeries/useChartSeries.d.mts +13 -0
- package/internals/plugins/corePlugins/useChartSeries/useChartSeries.d.ts +12 -2
- package/internals/plugins/corePlugins/useChartSeries/useChartSeries.js +43 -11
- package/internals/plugins/corePlugins/useChartSeries/useChartSeries.mjs +94 -0
- package/internals/plugins/corePlugins/useChartSeries/useChartSeries.selectors.d.mts +29 -0
- package/internals/plugins/corePlugins/useChartSeries/useChartSeries.selectors.mjs +31 -0
- package/internals/plugins/corePlugins/useChartSeries/useChartSeries.types.d.mts +71 -0
- package/internals/plugins/corePlugins/useChartSeries/useChartSeries.types.d.ts +21 -2
- package/internals/plugins/corePlugins/useChartSeries/useColorProcessor.d.mts +5 -0
- package/internals/plugins/corePlugins/useChartSeries/useColorProcessor.mjs +21 -0
- package/internals/plugins/corePlugins/useChartSeriesConfig/index.d.mts +4 -0
- package/internals/plugins/corePlugins/useChartSeriesConfig/index.mjs +3 -0
- package/internals/plugins/corePlugins/useChartSeriesConfig/types/cartesianExtremumGetter.types.d.mts +22 -0
- package/internals/plugins/corePlugins/useChartSeriesConfig/types/colorProcessor.types.d.mts +19 -0
- package/internals/plugins/corePlugins/useChartSeriesConfig/types/getItemAtPosition.types.d.mts +8 -0
- package/internals/plugins/corePlugins/useChartSeriesConfig/types/getItemAtPosition.types.d.ts +2 -2
- package/internals/plugins/corePlugins/useChartSeriesConfig/types/getSeriesWithDefaultValues.types.d.mts +3 -0
- package/internals/plugins/corePlugins/useChartSeriesConfig/types/identifierCleaner.types.d.mts +3 -0
- package/internals/plugins/corePlugins/useChartSeriesConfig/types/identifierCleaner.types.d.ts +2 -2
- package/internals/plugins/corePlugins/useChartSeriesConfig/types/identifierSerializer.types.d.mts +3 -0
- package/internals/plugins/corePlugins/useChartSeriesConfig/types/identifierSerializer.types.d.ts +2 -2
- package/internals/plugins/corePlugins/useChartSeriesConfig/types/index.d.mts +13 -0
- package/internals/plugins/corePlugins/useChartSeriesConfig/types/index.mjs +13 -0
- package/internals/plugins/corePlugins/useChartSeriesConfig/types/legendGetter.types.d.mts +4 -0
- package/internals/plugins/corePlugins/useChartSeriesConfig/types/legendGetter.types.d.ts +2 -2
- package/internals/plugins/corePlugins/useChartSeriesConfig/types/polarExtremumGetter.types.d.mts +12 -0
- package/internals/plugins/corePlugins/useChartSeriesConfig/types/seriesConfig.types.d.mts +60 -0
- package/internals/plugins/corePlugins/useChartSeriesConfig/types/seriesConfig.types.d.ts +6 -3
- package/internals/plugins/corePlugins/useChartSeriesConfig/types/seriesLayout.types.d.mts +6 -0
- package/internals/plugins/corePlugins/useChartSeriesConfig/types/seriesProcessor.types.d.mts +17 -0
- package/internals/plugins/corePlugins/useChartSeriesConfig/types/tooltipGetter.types.d.mts +74 -0
- package/internals/plugins/corePlugins/useChartSeriesConfig/types/tooltipGetter.types.d.ts +3 -3
- package/internals/plugins/corePlugins/useChartSeriesConfig/types/tooltipItemPositionGetter.types.d.mts +27 -0
- package/internals/plugins/corePlugins/useChartSeriesConfig/types/tooltipItemPositionGetter.types.d.ts +2 -2
- package/internals/plugins/corePlugins/useChartSeriesConfig/useChartSeriesConfig.d.mts +3 -0
- package/internals/plugins/corePlugins/useChartSeriesConfig/useChartSeriesConfig.js +3 -1
- package/internals/plugins/corePlugins/useChartSeriesConfig/useChartSeriesConfig.mjs +37 -0
- package/internals/plugins/corePlugins/useChartSeriesConfig/useChartSeriesConfig.selectors.d.mts +6 -0
- package/internals/plugins/corePlugins/useChartSeriesConfig/useChartSeriesConfig.types.d.mts +51 -0
- package/internals/plugins/corePlugins/useChartSeriesConfig/useChartSeriesConfig.types.d.ts +7 -4
- package/internals/plugins/corePlugins/useChartSeriesConfig/utils/cleanIdentifier.d.mts +15 -0
- package/internals/plugins/corePlugins/useChartSeriesConfig/utils/cleanIdentifier.d.ts +2 -2
- package/internals/plugins/corePlugins/useChartSeriesConfig/utils/cleanIdentifier.js +3 -1
- package/internals/plugins/corePlugins/useChartSeriesConfig/utils/cleanIdentifier.mjs +19 -0
- package/internals/plugins/corePlugins/useChartSeriesConfig/utils/serializeIdentifier.d.mts +14 -0
- package/internals/plugins/corePlugins/useChartSeriesConfig/utils/serializeIdentifier.js +3 -1
- package/internals/plugins/corePlugins/useChartSeriesConfig/utils/serializeIdentifier.mjs +19 -0
- package/internals/plugins/featurePlugins/shared/useRegisterPointerInteractions.d.mts +12 -0
- package/internals/plugins/featurePlugins/shared/useRegisterPointerInteractions.d.ts +3 -3
- package/internals/plugins/featurePlugins/shared/useRegisterPointerInteractions.js +3 -3
- package/internals/plugins/featurePlugins/shared/useRegisterPointerInteractions.mjs +74 -0
- package/internals/plugins/featurePlugins/useChartBrush/index.d.mts +3 -0
- package/internals/plugins/featurePlugins/useChartBrush/index.mjs +3 -0
- package/internals/plugins/featurePlugins/useChartBrush/useChartBrush.d.mts +3 -0
- package/internals/plugins/featurePlugins/useChartBrush/useChartBrush.js +3 -3
- package/internals/plugins/featurePlugins/useChartBrush/useChartBrush.mjs +111 -0
- package/internals/plugins/featurePlugins/useChartBrush/useChartBrush.selectors.d.mts +54 -0
- package/internals/plugins/featurePlugins/useChartBrush/useChartBrush.selectors.mjs +75 -0
- package/internals/plugins/featurePlugins/useChartBrush/useChartBrush.types.d.mts +81 -0
- package/internals/plugins/featurePlugins/useChartCartesianAxis/computeAxisValue.d.mts +32 -0
- package/internals/plugins/featurePlugins/useChartCartesianAxis/computeAxisValue.mjs +129 -0
- package/internals/plugins/featurePlugins/useChartCartesianAxis/createAxisFilterMapper.d.mts +7 -0
- package/internals/plugins/featurePlugins/useChartCartesianAxis/createAxisFilterMapper.mjs +43 -0
- package/internals/plugins/featurePlugins/useChartCartesianAxis/createZoomLookup.d.mts +4 -0
- package/internals/plugins/featurePlugins/useChartCartesianAxis/createZoomLookup.mjs +14 -0
- package/internals/plugins/featurePlugins/useChartCartesianAxis/defaultizeAxis.d.mts +13 -0
- package/internals/plugins/featurePlugins/useChartCartesianAxis/defaultizeAxis.js +3 -2
- package/internals/plugins/featurePlugins/useChartCartesianAxis/defaultizeAxis.mjs +104 -0
- package/internals/plugins/featurePlugins/useChartCartesianAxis/defaultizeZoom.d.mts +20 -0
- package/internals/plugins/featurePlugins/useChartCartesianAxis/defaultizeZoom.mjs +41 -0
- package/internals/plugins/featurePlugins/useChartCartesianAxis/domain.d.mts +20 -0
- package/internals/plugins/featurePlugins/useChartCartesianAxis/domain.mjs +77 -0
- package/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisDomainLimit.d.mts +8 -0
- package/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisExtrema.d.mts +6 -0
- package/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisExtrema.mjs +24 -0
- package/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisScale.d.mts +5 -0
- package/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisScale.mjs +24 -0
- package/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisTriggerTooltip.d.mts +5 -0
- package/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisTriggerTooltip.mjs +21 -0
- package/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisValue.d.mts +15 -0
- package/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisValue.mjs +61 -0
- package/internals/plugins/featurePlugins/useChartCartesianAxis/index.d.mts +12 -0
- package/internals/plugins/featurePlugins/useChartCartesianAxis/index.d.ts +1 -0
- package/internals/plugins/featurePlugins/useChartCartesianAxis/index.js +12 -0
- package/internals/plugins/featurePlugins/useChartCartesianAxis/index.mjs +11 -0
- package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartAxisSize.selectors.d.mts +20 -0
- package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartAxisSize.selectors.mjs +35 -0
- package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxis.d.mts +3 -0
- package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxis.js +25 -8
- package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxis.mjs +247 -0
- package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxis.types.d.mts +123 -0
- package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxis.types.d.ts +17 -0
- package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisLayout.selectors.d.mts +13 -0
- package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisPosition.selectors.d.mts +4 -0
- package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisPosition.selectors.mjs +83 -0
- package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisPreview.selectors.d.mts +13 -0
- package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisPreview.selectors.mjs +119 -0
- package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisRendering.selectors.d.mts +159 -0
- package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisRendering.selectors.mjs +301 -0
- package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianHighlight.selectors.d.mts +45 -0
- package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianHighlight.selectors.mjs +90 -0
- package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianInteraction.selectors.d.mts +26 -0
- package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianInteraction.selectors.d.ts +1 -19
- package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianInteraction.selectors.js +2 -53
- package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianInteraction.selectors.mjs +51 -0
- package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianTooltip.selectors.d.mts +25 -0
- package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianTooltip.selectors.d.ts +25 -0
- package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianTooltip.selectors.js +155 -0
- package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianTooltip.selectors.mjs +149 -0
- package/internals/plugins/featurePlugins/useChartCartesianAxis/useInternalIsZoomInteracting.mjs +18 -0
- package/internals/plugins/featurePlugins/useChartCartesianAxis/zoom.types.d.mts +109 -0
- package/internals/plugins/featurePlugins/useChartClosestPoint/findClosestPoints.d.mts +4 -0
- package/internals/plugins/featurePlugins/useChartClosestPoint/findClosestPoints.mjs +33 -0
- package/internals/plugins/featurePlugins/useChartClosestPoint/index.d.mts +3 -0
- package/internals/plugins/featurePlugins/useChartClosestPoint/index.mjs +2 -0
- package/internals/plugins/featurePlugins/useChartClosestPoint/useChartClosestPoint.d.mts +3 -0
- package/internals/plugins/featurePlugins/useChartClosestPoint/useChartClosestPoint.js +5 -4
- package/internals/plugins/featurePlugins/useChartClosestPoint/useChartClosestPoint.mjs +211 -0
- package/internals/plugins/featurePlugins/useChartClosestPoint/useChartClosestPoint.selectors.d.mts +3 -0
- package/internals/plugins/featurePlugins/useChartClosestPoint/useChartClosestPoint.types.d.mts +60 -0
- package/internals/plugins/featurePlugins/useChartClosestPoint/useChartClosestPoint.types.d.ts +4 -3
- package/internals/plugins/featurePlugins/useChartHighlight/createIsFaded.d.mts +7 -0
- package/internals/plugins/featurePlugins/useChartHighlight/createIsFaded.d.ts +7 -3
- package/internals/plugins/featurePlugins/useChartHighlight/createIsFaded.js +4 -0
- package/internals/plugins/featurePlugins/useChartHighlight/createIsFaded.mjs +24 -0
- package/internals/plugins/featurePlugins/useChartHighlight/createIsHighlighted.d.mts +7 -0
- package/internals/plugins/featurePlugins/useChartHighlight/createIsHighlighted.d.ts +7 -3
- package/internals/plugins/featurePlugins/useChartHighlight/createIsHighlighted.js +4 -0
- package/internals/plugins/featurePlugins/useChartHighlight/createIsHighlighted.mjs +24 -0
- package/internals/plugins/featurePlugins/useChartHighlight/highlightCreator.types.d.mts +4 -0
- package/internals/plugins/featurePlugins/useChartHighlight/highlightCreator.types.d.ts +4 -0
- package/internals/plugins/featurePlugins/useChartHighlight/highlightCreator.types.js +5 -0
- package/internals/plugins/featurePlugins/useChartHighlight/highlightStates.d.mts +20 -0
- package/internals/plugins/featurePlugins/useChartHighlight/highlightStates.d.ts +8 -8
- package/internals/plugins/featurePlugins/useChartHighlight/highlightStates.js +5 -0
- package/internals/plugins/featurePlugins/useChartHighlight/highlightStates.mjs +36 -0
- package/internals/plugins/featurePlugins/useChartHighlight/index.d.mts +6 -0
- package/internals/plugins/featurePlugins/useChartHighlight/index.d.ts +4 -2
- package/internals/plugins/featurePlugins/useChartHighlight/index.js +18 -2
- package/internals/plugins/featurePlugins/useChartHighlight/index.mjs +4 -0
- package/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.d.mts +3 -0
- package/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.d.ts +3 -3
- package/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.js +22 -8
- package/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.mjs +88 -0
- package/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.selectors.d.mts +87 -0
- package/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.selectors.d.ts +72 -19
- package/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.selectors.js +109 -17
- package/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.selectors.mjs +131 -0
- package/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.types.d.mts +56 -0
- package/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.types.d.ts +17 -42
- package/internals/plugins/featurePlugins/useChartInteraction/checkHasInteractionPlugin.d.mts +3 -0
- package/internals/plugins/featurePlugins/useChartInteraction/index.d.mts +3 -0
- package/internals/plugins/featurePlugins/useChartInteraction/index.mjs +2 -0
- package/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.d.mts +3 -0
- package/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.selectors.d.mts +18 -0
- package/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.types.d.mts +54 -0
- package/internals/plugins/featurePlugins/useChartItemClick/index.d.mts +2 -0
- package/internals/plugins/featurePlugins/useChartItemClick/index.mjs +1 -0
- package/internals/plugins/featurePlugins/useChartItemClick/useChartItemClick.d.mts +3 -0
- package/internals/plugins/featurePlugins/useChartItemClick/useChartItemClick.mjs +48 -0
- package/internals/plugins/featurePlugins/useChartItemClick/useChartItemClick.types.d.mts +23 -0
- package/internals/plugins/featurePlugins/useChartItemClick/useChartItemClick.types.d.ts +3 -3
- package/internals/plugins/featurePlugins/useChartKeyboardNavigation/index.d.mts +4 -0
- package/internals/plugins/featurePlugins/useChartKeyboardNavigation/index.mjs +2 -0
- package/internals/plugins/featurePlugins/useChartKeyboardNavigation/keyboardFocusHandler.types.d.mts +14 -0
- package/internals/plugins/featurePlugins/useChartKeyboardNavigation/keyboardFocusHandler.types.d.ts +2 -2
- package/internals/plugins/featurePlugins/useChartKeyboardNavigation/useChartKeyboardNavigation.d.mts +3 -0
- package/internals/plugins/featurePlugins/useChartKeyboardNavigation/useChartKeyboardNavigation.js +25 -5
- package/internals/plugins/featurePlugins/useChartKeyboardNavigation/useChartKeyboardNavigation.mjs +105 -0
- package/internals/plugins/featurePlugins/useChartKeyboardNavigation/useChartKeyboardNavigation.selectors.d.mts +23 -0
- package/internals/plugins/featurePlugins/useChartKeyboardNavigation/useChartKeyboardNavigation.selectors.js +4 -4
- package/internals/plugins/featurePlugins/useChartKeyboardNavigation/useChartKeyboardNavigation.selectors.mjs +46 -0
- package/internals/plugins/featurePlugins/useChartKeyboardNavigation/useChartKeyboardNavigation.types.d.mts +25 -0
- package/internals/plugins/featurePlugins/useChartKeyboardNavigation/useChartKeyboardNavigation.types.d.ts +2 -1
- package/internals/plugins/featurePlugins/useChartKeyboardNavigation/utils/getMaxSeriesLength.d.mts +3 -0
- package/internals/plugins/featurePlugins/useChartKeyboardNavigation/utils/getNextNonEmptySeries.d.mts +15 -0
- package/internals/plugins/featurePlugins/useChartKeyboardNavigation/utils/getNextNonEmptySeries.mjs +18 -0
- package/internals/plugins/featurePlugins/useChartKeyboardNavigation/utils/getNonEmptySeriesArray.d.mts +7 -0
- package/internals/plugins/featurePlugins/useChartKeyboardNavigation/utils/getPreviousNonEmptySeries.d.mts +11 -0
- package/internals/plugins/featurePlugins/useChartKeyboardNavigation/utils/getPreviousNonEmptySeries.mjs +18 -0
- package/internals/plugins/featurePlugins/useChartPolarAxis/computeAxisValue.d.mts +27 -0
- package/internals/plugins/featurePlugins/useChartPolarAxis/computeAxisValue.mjs +125 -0
- package/internals/plugins/featurePlugins/useChartPolarAxis/defaultizeAxis.d.mts +5 -0
- package/internals/plugins/featurePlugins/useChartPolarAxis/defaultizeAxis.js +2 -1
- package/internals/plugins/featurePlugins/useChartPolarAxis/defaultizeAxis.mjs +25 -0
- package/internals/plugins/featurePlugins/useChartPolarAxis/getAxisExtremum.d.mts +5 -0
- package/internals/plugins/featurePlugins/useChartPolarAxis/getAxisExtremum.mjs +21 -0
- package/internals/plugins/featurePlugins/useChartPolarAxis/getAxisIndex.d.mts +6 -0
- package/internals/plugins/featurePlugins/useChartPolarAxis/getAxisIndex.js +3 -1
- package/internals/plugins/featurePlugins/useChartPolarAxis/getAxisIndex.mjs +27 -0
- package/internals/plugins/featurePlugins/useChartPolarAxis/getAxisTriggerTooltip.d.mts +5 -0
- package/internals/plugins/featurePlugins/useChartPolarAxis/getAxisTriggerTooltip.mjs +21 -0
- package/internals/plugins/featurePlugins/useChartPolarAxis/index.d.mts +3 -0
- package/internals/plugins/featurePlugins/useChartPolarAxis/index.mjs +2 -0
- package/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarAxis.d.mts +3 -0
- package/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarAxis.js +5 -5
- package/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarAxis.mjs +221 -0
- package/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarAxis.selectors.d.mts +32 -0
- package/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarAxis.selectors.mjs +34 -0
- package/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarAxis.types.d.mts +74 -0
- package/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarInteraction.selectors.d.mts +29 -0
- package/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarInteraction.selectors.mjs +86 -0
- package/internals/plugins/featurePlugins/useChartTooltip/index.d.mts +3 -0
- package/internals/plugins/featurePlugins/useChartTooltip/index.mjs +2 -0
- package/internals/plugins/featurePlugins/useChartTooltip/useChartTooltip.d.mts +3 -0
- package/internals/plugins/featurePlugins/useChartTooltip/useChartTooltip.js +15 -8
- package/internals/plugins/featurePlugins/useChartTooltip/useChartTooltip.mjs +76 -0
- package/internals/plugins/featurePlugins/useChartTooltip/useChartTooltip.selectors.d.mts +18 -0
- package/internals/plugins/featurePlugins/useChartTooltip/useChartTooltip.selectors.d.ts +1 -1
- package/internals/plugins/featurePlugins/useChartTooltip/useChartTooltip.selectors.js +1 -1
- package/internals/plugins/featurePlugins/useChartTooltip/useChartTooltip.selectors.mjs +59 -0
- package/internals/plugins/featurePlugins/useChartTooltip/useChartTooltip.types.d.mts +51 -0
- package/internals/plugins/featurePlugins/useChartTooltip/useChartTooltip.types.d.ts +7 -7
- package/internals/plugins/featurePlugins/useChartVisibilityManager/index.d.mts +3 -0
- package/internals/plugins/featurePlugins/useChartVisibilityManager/index.mjs +3 -0
- package/internals/plugins/featurePlugins/useChartVisibilityManager/useChartVisibilityManager.d.mts +3 -0
- package/internals/plugins/featurePlugins/useChartVisibilityManager/useChartVisibilityManager.js +15 -10
- package/internals/plugins/featurePlugins/useChartVisibilityManager/useChartVisibilityManager.mjs +87 -0
- package/internals/plugins/featurePlugins/useChartVisibilityManager/useChartVisibilityManager.selectors.d.mts +13 -0
- package/internals/plugins/featurePlugins/useChartVisibilityManager/useChartVisibilityManager.selectors.d.ts +1 -2
- package/internals/plugins/featurePlugins/useChartVisibilityManager/useChartVisibilityManager.selectors.mjs +24 -0
- package/internals/plugins/featurePlugins/useChartVisibilityManager/useChartVisibilityManager.types.d.mts +115 -0
- package/internals/plugins/featurePlugins/useChartVisibilityManager/useChartVisibilityManager.types.d.ts +15 -12
- package/internals/plugins/featurePlugins/useChartVisibilityManager/visibilityParamToMap.d.mts +4 -0
- package/internals/plugins/featurePlugins/useChartVisibilityManager/visibilityParamToMap.d.ts +2 -2
- package/internals/plugins/featurePlugins/useChartVisibilityManager/visibilityParamToMap.mjs +11 -0
- package/internals/plugins/featurePlugins/useChartZAxis/index.d.mts +3 -0
- package/internals/plugins/featurePlugins/useChartZAxis/index.mjs +2 -0
- package/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.d.mts +3 -0
- package/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.js +2 -1
- package/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.mjs +85 -0
- package/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.selectors.d.mts +8 -0
- package/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.types.d.mts +37 -0
- package/internals/plugins/models/chart.d.mts +15 -0
- package/internals/plugins/models/helpers.d.mts +6 -0
- package/internals/plugins/models/index.d.mts +3 -0
- package/internals/plugins/models/index.mjs +3 -0
- package/internals/plugins/models/plugin.d.mts +131 -0
- package/internals/plugins/utils/defaultSeriesConfig.d.mts +2 -0
- package/internals/plugins/utils/defaultSeriesConfig.mjs +10 -0
- package/internals/plugins/utils/selectors.d.mts +5 -0
- package/internals/plugins/utils/useLazySelectorEffect.d.mts +7 -0
- package/internals/scaleGuards.d.mts +17 -0
- package/internals/scales/index.d.mts +3 -0
- package/internals/scales/index.mjs +3 -0
- package/internals/scales/scalePoint.mjs +41 -0
- package/internals/seriesHasData.d.mts +4 -0
- package/internals/seriesSelectorOfType.d.mts +20 -0
- package/internals/seriesSelectorOfType.d.ts +1 -1
- package/internals/seriesSelectorOfType.mjs +37 -0
- package/internals/sliceUntil.js +3 -1
- package/internals/sliceUntil.mjs +24 -0
- package/internals/stacking/index.d.mts +1 -0
- package/internals/stacking/index.mjs +1 -0
- package/internals/stacking/offset/index.d.mts +1 -0
- package/internals/stacking/offset/index.mjs +1 -0
- package/internals/stacking/stackSeries.d.mts +72 -0
- package/internals/stacking/stackSeries.mjs +95 -0
- package/internals/store/extractPluginParamsFromProps.d.mts +13 -0
- package/internals/store/useCharts.d.mts +20 -0
- package/internals/store/useCharts.mjs +81 -0
- package/internals/store/useCharts.types.d.mts +11 -0
- package/internals/store/useStore.d.mts +3 -0
- package/internals/store/useStore.js +3 -1
- package/internals/store/useStore.mjs +10 -0
- package/internals/ticks.d.mts +4 -0
- package/locales/elGR.d.mts +115 -0
- package/locales/elGR.mjs +113 -0
- package/locales/enUS.d.mts +116 -0
- package/locales/enUS.mjs +117 -0
- package/locales/frFR.d.mts +115 -0
- package/locales/frFR.mjs +114 -0
- package/locales/index.d.mts +8 -0
- package/locales/index.mjs +8 -0
- package/locales/nbNO.d.mts +115 -0
- package/locales/nbNO.mjs +113 -0
- package/locales/ptBR.d.mts +115 -0
- package/locales/ptBR.mjs +113 -0
- package/locales/ptPT.d.mts +115 -0
- package/locales/ptPT.mjs +115 -0
- package/locales/svSE.d.mts +115 -0
- package/locales/svSE.mjs +115 -0
- package/locales/utils/chartsLocaleTextApi.d.mts +420 -0
- package/locales/utils/getChartsLocalization.d.mts +119 -0
- package/models/axis.d.mts +573 -0
- package/models/index.d.mts +10 -0
- package/models/index.mjs +7 -0
- package/models/seriesType/bar.d.mts +67 -0
- package/models/seriesType/common.d.mts +85 -0
- package/models/seriesType/composition.d.mts +4 -0
- package/models/seriesType/composition.d.ts +4 -0
- package/models/seriesType/composition.js +7 -0
- package/models/seriesType/composition.mjs +1 -0
- package/models/seriesType/config.d.mts +132 -0
- package/models/seriesType/config.d.ts +29 -1
- package/models/seriesType/index.d.mts +21 -0
- package/models/seriesType/index.d.ts +10 -4
- package/models/seriesType/index.mjs +17 -0
- package/models/seriesType/line.d.mts +108 -0
- package/models/seriesType/pie.d.mts +202 -0
- package/models/seriesType/radar.d.mts +30 -0
- package/models/seriesType/scatter.d.mts +78 -0
- package/models/slots/chartsBaseSlots.d.mts +6 -0
- package/models/slots/index.d.mts +3 -0
- package/models/slots/index.mjs +3 -0
- package/models/z-axis.d.mts +22 -0
- package/moduleAugmentation/barChartBatchRendererOnItemClick.d.mts +13 -0
- package/moduleAugmentation/barChartBatchRendererOnItemClick.mjs +1 -0
- package/package.json +577 -20
- package/plugins/index.d.mts +8 -0
- package/plugins/index.d.ts +1 -1
- package/plugins/index.mjs +14 -0
- package/themeAugmentation/components.d.mts +75 -0
- package/themeAugmentation/components.d.ts +4 -0
- package/themeAugmentation/components.mjs +1 -0
- package/themeAugmentation/index.d.mts +3 -0
- package/themeAugmentation/overrides.d.mts +27 -0
- package/themeAugmentation/props.d.mts +37 -0
- package/themeAugmentation/props.d.ts +8 -2
- package/utils/index.d.mts +5 -0
- package/utils/index.mjs +6 -0
- package/utils/niceDomain.d.mts +20 -0
- package/utils/niceDomain.mjs +24 -0
- package/utils/timeTicks.d.mts +2 -0
- package/esm/BarChart/AnimatedBarElement.d.ts +0 -42
- package/esm/BarChart/AnimatedBarElement.js +0 -21
- package/esm/BarChart/BarChart.d.ts +0 -74
- package/esm/BarChart/BarChart.js +0 -1220
- package/esm/BarChart/BarChart.plugins.d.ts +0 -11
- package/esm/BarChart/BarChart.plugins.js +0 -9
- package/esm/BarChart/BarClipPath.d.ts +0 -37
- package/esm/BarChart/BarClipPath.js +0 -122
- package/esm/BarChart/BarElement.d.ts +0 -40
- package/esm/BarChart/BarElement.js +0 -113
- package/esm/BarChart/BarLabel/BarLabel.d.ts +0 -42
- package/esm/BarChart/BarLabel/BarLabel.js +0 -126
- package/esm/BarChart/BarLabel/BarLabel.types.d.ts +0 -42
- package/esm/BarChart/BarLabel/BarLabelItem.d.ts +0 -87
- package/esm/BarChart/BarLabel/BarLabelItem.js +0 -135
- package/esm/BarChart/BarLabel/BarLabelPlot.d.ts +0 -32
- package/esm/BarChart/BarLabel/BarLabelPlot.js +0 -60
- package/esm/BarChart/BarLabel/barLabelClasses.d.ts +0 -20
- package/esm/BarChart/BarLabel/getBarLabel.d.ts +0 -11
- package/esm/BarChart/BarLabel/index.d.ts +0 -6
- package/esm/BarChart/BarLabel/index.js +0 -2
- package/esm/BarChart/BarPlot.d.ts +0 -69
- package/esm/BarChart/BarPlot.js +0 -136
- package/esm/BarChart/BatchBarPlot/BarGroup.js +0 -134
- package/esm/BarChart/BatchBarPlot/BatchBarPlot.d.ts +0 -12
- package/esm/BarChart/BatchBarPlot/BatchBarPlot.js +0 -135
- package/esm/BarChart/BatchBarPlot/index.d.ts +0 -1
- package/esm/BarChart/BatchBarPlot/index.js +0 -1
- package/esm/BarChart/BatchBarPlot/useCreateBarPaths.d.ts +0 -8
- package/esm/BarChart/BatchBarPlot/useCreateBarPaths.js +0 -46
- package/esm/BarChart/FocusedBar.js +0 -63
- package/esm/BarChart/IndividualBarPlot.d.ts +0 -21
- package/esm/BarChart/IndividualBarPlot.js +0 -98
- package/esm/BarChart/barElementClasses.d.ts +0 -27
- package/esm/BarChart/checkBarChartScaleErrors.d.ts +0 -7
- package/esm/BarChart/checkBarChartScaleErrors.js +0 -32
- package/esm/BarChart/index.d.ts +0 -10
- package/esm/BarChart/index.js +0 -8
- package/esm/BarChart/seriesConfig/bar/extremums.d.ts +0 -3
- package/esm/BarChart/seriesConfig/bar/extremums.js +0 -74
- package/esm/BarChart/seriesConfig/bar/getColor.d.ts +0 -3
- package/esm/BarChart/seriesConfig/bar/getColor.js +0 -57
- package/esm/BarChart/seriesConfig/bar/getSeriesWithDefaultValues.d.ts +0 -22
- package/esm/BarChart/seriesConfig/bar/keyboardFocusHandler.d.ts +0 -4
- package/esm/BarChart/seriesConfig/bar/keyboardFocusHandler.js +0 -16
- package/esm/BarChart/seriesConfig/bar/legend.d.ts +0 -3
- package/esm/BarChart/seriesConfig/bar/legend.js +0 -22
- package/esm/BarChart/seriesConfig/bar/seriesProcessor.d.ts +0 -3
- package/esm/BarChart/seriesConfig/bar/seriesProcessor.js +0 -104
- package/esm/BarChart/seriesConfig/bar/tooltip.d.ts +0 -4
- package/esm/BarChart/seriesConfig/bar/tooltip.js +0 -37
- package/esm/BarChart/seriesConfig/bar/tooltipPosition.d.ts +0 -3
- package/esm/BarChart/seriesConfig/bar/tooltipPosition.js +0 -60
- package/esm/BarChart/seriesConfig/index.d.ts +0 -2
- package/esm/BarChart/seriesConfig/index.js +0 -24
- package/esm/BarChart/types.d.ts +0 -35
- package/esm/BarChart/useBarChartProps.d.ts +0 -38
- package/esm/BarChart/useBarChartProps.js +0 -158
- package/esm/BarChart/useBarPlotData.d.ts +0 -23
- package/esm/BarChart/useBarPlotData.js +0 -126
- package/esm/BarChart/useRegisterItemClickHandlers.d.ts +0 -6
- package/esm/BarChart/useRegisterItemClickHandlers.js +0 -67
- package/esm/ChartContainer/ChartContainer.d.ts +0 -22
- package/esm/ChartContainer/ChartContainer.js +0 -20
- package/esm/ChartContainer/index.d.ts +0 -1
- package/esm/ChartContainer/index.js +0 -1
- package/esm/ChartContainer/useChartContainerProps.d.ts +0 -14
- package/esm/ChartContainer/useChartContainerProps.js +0 -14
- package/esm/ChartDataProvider/ChartDataProvider.d.ts +0 -51
- package/esm/ChartDataProvider/ChartDataProvider.js +0 -132
- package/esm/ChartDataProvider/index.d.ts +0 -1
- package/esm/ChartDataProvider/index.js +0 -1
- package/esm/ChartDataProvider/useChartDataProviderProps.d.ts +0 -13
- package/esm/ChartDataProvider/useChartDataProviderProps.js +0 -39
- package/esm/ChartsAxis/ChartsAxis.d.ts +0 -28
- package/esm/ChartsAxis/ChartsAxis.js +0 -71
- package/esm/ChartsAxis/index.d.ts +0 -2
- package/esm/ChartsAxis/index.js +0 -2
- package/esm/ChartsAxisHighlight/ChartsAxisHighlight.d.ts +0 -15
- package/esm/ChartsAxisHighlight/ChartsAxisHighlight.js +0 -50
- package/esm/ChartsAxisHighlight/ChartsAxisHighlightPath.d.ts +0 -6
- package/esm/ChartsAxisHighlight/ChartsXAxisHighlight.d.ts +0 -9
- package/esm/ChartsAxisHighlight/ChartsXAxisHighlight.js +0 -59
- package/esm/ChartsAxisHighlight/ChartsYAxisHighlight.d.ts +0 -9
- package/esm/ChartsAxisHighlight/ChartsYAxisHighlight.js +0 -59
- package/esm/ChartsAxisHighlight/index.d.ts +0 -4
- package/esm/ChartsAxisHighlight/index.js +0 -4
- package/esm/ChartsBrushOverlay/ChartsBrushOverlay.js +0 -94
- package/esm/ChartsBrushOverlay/index.d.ts +0 -4
- package/esm/ChartsBrushOverlay/index.js +0 -2
- package/esm/ChartsClipPath/ChartsClipPath.js +0 -60
- package/esm/ChartsClipPath/index.d.ts +0 -1
- package/esm/ChartsClipPath/index.js +0 -1
- package/esm/ChartsContainer/ChartsContainer.d.ts +0 -37
- package/esm/ChartsContainer/ChartsContainer.js +0 -1692
- package/esm/ChartsContainer/index.d.ts +0 -1
- package/esm/ChartsContainer/index.js +0 -1
- package/esm/ChartsContainer/useChartsContainerProps.d.ts +0 -15
- package/esm/ChartsContainer/useChartsContainerProps.js +0 -99
- package/esm/ChartsGrid/ChartsGrid.d.ts +0 -29
- package/esm/ChartsGrid/ChartsGrid.js +0 -90
- package/esm/ChartsGrid/ChartsHorizontalGrid.d.ts +0 -13
- package/esm/ChartsGrid/ChartsHorizontalGrid.js +0 -45
- package/esm/ChartsGrid/ChartsVerticalGrid.d.ts +0 -13
- package/esm/ChartsGrid/ChartsVerticalGrid.js +0 -45
- package/esm/ChartsGrid/index.d.ts +0 -2
- package/esm/ChartsGrid/index.js +0 -2
- package/esm/ChartsGrid/styledComponents.js +0 -21
- package/esm/ChartsLabel/ChartsLabel.d.ts +0 -18
- package/esm/ChartsLabel/ChartsLabel.js +0 -43
- package/esm/ChartsLabel/ChartsLabelGradient.d.ts +0 -41
- package/esm/ChartsLabel/ChartsLabelGradient.js +0 -134
- package/esm/ChartsLabel/ChartsLabelMark.d.ts +0 -32
- package/esm/ChartsLabel/ChartsLabelMark.js +0 -125
- package/esm/ChartsLabel/index.d.ts +0 -9
- package/esm/ChartsLabel/index.js +0 -5
- package/esm/ChartsLabel/labelClasses.d.ts +0 -8
- package/esm/ChartsLabel/labelGradientClasses.d.ts +0 -16
- package/esm/ChartsLabel/labelMarkClasses.d.ts +0 -16
- package/esm/ChartsLegend/ChartsLegend.d.ts +0 -33
- package/esm/ChartsLegend/ChartsLegend.js +0 -179
- package/esm/ChartsLegend/ContinuousColorLegend.d.ts +0 -57
- package/esm/ChartsLegend/ContinuousColorLegend.js +0 -271
- package/esm/ChartsLegend/PiecewiseColorLegend.d.ts +0 -43
- package/esm/ChartsLegend/PiecewiseColorLegend.js +0 -277
- package/esm/ChartsLegend/chartsLegend.types.d.ts +0 -26
- package/esm/ChartsLegend/chartsLegendClasses.d.ts +0 -22
- package/esm/ChartsLegend/colorLegend.types.d.ts +0 -13
- package/esm/ChartsLegend/continuousColorLegendClasses.d.ts +0 -26
- package/esm/ChartsLegend/index.d.ts +0 -16
- package/esm/ChartsLegend/index.js +0 -12
- package/esm/ChartsLegend/legend.types.d.ts +0 -9
- package/esm/ChartsLegend/legendContext.types.d.ts +0 -60
- package/esm/ChartsLegend/onClickContextBuilder.d.ts +0 -2
- package/esm/ChartsLegend/piecewiseColorDefaultLabelFormatter.d.ts +0 -2
- package/esm/ChartsLegend/piecewiseColorLegendClasses.d.ts +0 -32
- package/esm/ChartsLegend/useAxis.d.ts +0 -10
- package/esm/ChartsLegend/useAxis.js +0 -42
- package/esm/ChartsLocalizationProvider/ChartsLocalizationProvider.d.ts +0 -27
- package/esm/ChartsLocalizationProvider/ChartsLocalizationProvider.js +0 -64
- package/esm/ChartsLocalizationProvider/index.d.ts +0 -2
- package/esm/ChartsLocalizationProvider/index.js +0 -1
- package/esm/ChartsOverlay/ChartsLoadingOverlay.d.ts +0 -2
- package/esm/ChartsOverlay/ChartsLoadingOverlay.js +0 -42
- package/esm/ChartsOverlay/ChartsNoDataOverlay.d.ts +0 -2
- package/esm/ChartsOverlay/ChartsNoDataOverlay.js +0 -42
- package/esm/ChartsOverlay/ChartsOverlay.js +0 -43
- package/esm/ChartsOverlay/index.d.ts +0 -4
- package/esm/ChartsOverlay/index.js +0 -3
- package/esm/ChartsReferenceLine/ChartsReferenceLine.d.ts +0 -9
- package/esm/ChartsReferenceLine/ChartsReferenceLine.js +0 -75
- package/esm/ChartsReferenceLine/ChartsXReferenceLine.d.ts +0 -15
- package/esm/ChartsReferenceLine/ChartsXReferenceLine.js +0 -153
- package/esm/ChartsReferenceLine/ChartsYReferenceLine.d.ts +0 -15
- package/esm/ChartsReferenceLine/ChartsYReferenceLine.js +0 -153
- package/esm/ChartsReferenceLine/common.d.ts +0 -43
- package/esm/ChartsReferenceLine/common.js +0 -25
- package/esm/ChartsReferenceLine/index.d.ts +0 -4
- package/esm/ChartsReferenceLine/index.js +0 -3
- package/esm/ChartsSurface/ChartsSurface.d.ts +0 -25
- package/esm/ChartsSurface/ChartsSurface.js +0 -120
- package/esm/ChartsSurface/index.d.ts +0 -2
- package/esm/ChartsSurface/index.js +0 -2
- package/esm/ChartsText/ChartsText.d.ts +0 -17
- package/esm/ChartsText/ChartsText.js +0 -89
- package/esm/ChartsText/defaultTextPlacement.d.ts +0 -9
- package/esm/ChartsText/defaultTextPlacement.js +0 -34
- package/esm/ChartsText/index.d.ts +0 -3
- package/esm/ChartsText/index.js +0 -1
- package/esm/ChartsTooltip/ChartTooltip.types.d.ts +0 -15
- package/esm/ChartsTooltip/ChartsAxisTooltipContent.d.ts +0 -15
- package/esm/ChartsTooltip/ChartsAxisTooltipContent.js +0 -79
- package/esm/ChartsTooltip/ChartsItemTooltipContent.d.ts +0 -15
- package/esm/ChartsTooltip/ChartsItemTooltipContent.js +0 -108
- package/esm/ChartsTooltip/ChartsTooltip.d.ts +0 -17
- package/esm/ChartsTooltip/ChartsTooltip.js +0 -207
- package/esm/ChartsTooltip/ChartsTooltipContainer.d.ts +0 -57
- package/esm/ChartsTooltip/ChartsTooltipContainer.js +0 -363
- package/esm/ChartsTooltip/ChartsTooltipTable.js +0 -98
- package/esm/ChartsTooltip/index.d.ts +0 -13
- package/esm/ChartsTooltip/index.js +0 -10
- package/esm/ChartsTooltip/useAxesTooltip.d.ts +0 -33
- package/esm/ChartsTooltip/useAxesTooltip.js +0 -180
- package/esm/ChartsTooltip/useItemTooltip.d.ts +0 -16
- package/esm/ChartsTooltip/useItemTooltip.js +0 -76
- package/esm/ChartsTooltip/utils.js +0 -59
- package/esm/ChartsWrapper/ChartsWrapper.d.ts +0 -37
- package/esm/ChartsWrapper/ChartsWrapper.js +0 -163
- package/esm/ChartsWrapper/index.d.ts +0 -1
- package/esm/ChartsWrapper/index.js +0 -1
- package/esm/ChartsXAxis/ChartsGroupedXAxisTicks.d.ts +0 -7
- package/esm/ChartsXAxis/ChartsGroupedXAxisTicks.js +0 -94
- package/esm/ChartsXAxis/ChartsSingleXAxisTicks.d.ts +0 -11
- package/esm/ChartsXAxis/ChartsSingleXAxisTicks.js +0 -106
- package/esm/ChartsXAxis/ChartsXAxis.d.ts +0 -17
- package/esm/ChartsXAxis/ChartsXAxis.js +0 -138
- package/esm/ChartsXAxis/ChartsXAxisImpl.d.ts +0 -12
- package/esm/ChartsXAxis/ChartsXAxisImpl.js +0 -117
- package/esm/ChartsXAxis/getVisibleLabels.d.ts +0 -14
- package/esm/ChartsXAxis/getVisibleLabels.js +0 -91
- package/esm/ChartsXAxis/index.d.ts +0 -1
- package/esm/ChartsXAxis/index.js +0 -1
- package/esm/ChartsXAxis/shortenLabels.d.ts +0 -4
- package/esm/ChartsXAxis/shortenLabels.js +0 -42
- package/esm/ChartsXAxis/useAxisTicksProps.d.ts +0 -3813
- package/esm/ChartsXAxis/useAxisTicksProps.js +0 -74
- package/esm/ChartsXAxis/utilities.d.ts +0 -10
- package/esm/ChartsXAxis/utilities.js +0 -28
- package/esm/ChartsYAxis/ChartsGroupedYAxisTicks.d.ts +0 -6
- package/esm/ChartsYAxis/ChartsGroupedYAxisTicks.js +0 -95
- package/esm/ChartsYAxis/ChartsSingleYAxisTicks.d.ts +0 -11
- package/esm/ChartsYAxis/ChartsSingleYAxisTicks.js +0 -96
- package/esm/ChartsYAxis/ChartsYAxis.d.ts +0 -17
- package/esm/ChartsYAxis/ChartsYAxis.js +0 -132
- package/esm/ChartsYAxis/ChartsYAxisImpl.d.ts +0 -12
- package/esm/ChartsYAxis/ChartsYAxisImpl.js +0 -133
- package/esm/ChartsYAxis/index.d.ts +0 -1
- package/esm/ChartsYAxis/index.js +0 -1
- package/esm/ChartsYAxis/shortenLabels.d.ts +0 -4
- package/esm/ChartsYAxis/shortenLabels.js +0 -41
- package/esm/ChartsYAxis/useAxisTicksProps.d.ts +0 -3731
- package/esm/ChartsYAxis/useAxisTicksProps.js +0 -72
- package/esm/ChartsYAxis/utilities.d.ts +0 -9
- package/esm/ChartsYAxis/utilities.js +0 -27
- package/esm/Gauge/Gauge.d.ts +0 -10
- package/esm/Gauge/Gauge.js +0 -145
- package/esm/Gauge/GaugeContainer.d.ts +0 -10
- package/esm/Gauge/GaugeContainer.js +0 -185
- package/esm/Gauge/GaugeProvider.js +0 -89
- package/esm/Gauge/GaugeReferenceArc.js +0 -45
- package/esm/Gauge/GaugeValueArc.js +0 -102
- package/esm/Gauge/GaugeValueText.d.ts +0 -14
- package/esm/Gauge/GaugeValueText.js +0 -72
- package/esm/Gauge/index.d.ts +0 -7
- package/esm/Gauge/index.js +0 -7
- package/esm/Gauge/utils.js +0 -66
- package/esm/LineChart/AnimatedArea.d.ts +0 -26
- package/esm/LineChart/AnimatedArea.js +0 -64
- package/esm/LineChart/AnimatedLine.d.ts +0 -23
- package/esm/LineChart/AnimatedLine.js +0 -71
- package/esm/LineChart/AppearingMask.d.ts +0 -17
- package/esm/LineChart/AppearingMask.js +0 -50
- package/esm/LineChart/AreaElement.d.ts +0 -66
- package/esm/LineChart/AreaElement.js +0 -111
- package/esm/LineChart/AreaPlot.d.ts +0 -29
- package/esm/LineChart/AreaPlot.js +0 -107
- package/esm/LineChart/CircleMarkElement.d.ts +0 -45
- package/esm/LineChart/CircleMarkElement.js +0 -106
- package/esm/LineChart/FocusedLineMark.js +0 -41
- package/esm/LineChart/LineChart.d.ts +0 -90
- package/esm/LineChart/LineChart.js +0 -1216
- package/esm/LineChart/LineChart.plugins.d.ts +0 -11
- package/esm/LineChart/LineChart.plugins.js +0 -9
- package/esm/LineChart/LineElement.d.ts +0 -70
- package/esm/LineChart/LineElement.js +0 -115
- package/esm/LineChart/LineHighlightElement.d.ts +0 -36
- package/esm/LineChart/LineHighlightElement.js +0 -79
- package/esm/LineChart/LineHighlightPlot.d.ts +0 -36
- package/esm/LineChart/LineHighlightPlot.js +0 -123
- package/esm/LineChart/LinePlot.d.ts +0 -28
- package/esm/LineChart/LinePlot.js +0 -109
- package/esm/LineChart/MarkElement.d.ts +0 -47
- package/esm/LineChart/MarkElement.js +0 -122
- package/esm/LineChart/MarkPlot.d.ts +0 -42
- package/esm/LineChart/MarkPlot.js +0 -139
- package/esm/LineChart/index.d.ts +0 -15
- package/esm/LineChart/index.js +0 -14
- package/esm/LineChart/markElementClasses.d.ts +0 -27
- package/esm/LineChart/seriesConfig/extremums.d.ts +0 -3
- package/esm/LineChart/seriesConfig/extremums.js +0 -56
- package/esm/LineChart/seriesConfig/getColor.d.ts +0 -3
- package/esm/LineChart/seriesConfig/getColor.js +0 -55
- package/esm/LineChart/seriesConfig/getSeriesWithDefaultValues.d.ts +0 -3
- package/esm/LineChart/seriesConfig/index.d.ts +0 -2
- package/esm/LineChart/seriesConfig/index.js +0 -24
- package/esm/LineChart/seriesConfig/keyboardFocusHandler.d.ts +0 -4
- package/esm/LineChart/seriesConfig/keyboardFocusHandler.js +0 -16
- package/esm/LineChart/seriesConfig/legend.d.ts +0 -3
- package/esm/LineChart/seriesConfig/legend.js +0 -22
- package/esm/LineChart/seriesConfig/seriesProcessor.d.ts +0 -3
- package/esm/LineChart/seriesConfig/seriesProcessor.js +0 -106
- package/esm/LineChart/seriesConfig/tooltip.d.ts +0 -4
- package/esm/LineChart/seriesConfig/tooltip.js +0 -31
- package/esm/LineChart/seriesConfig/tooltipPosition.d.ts +0 -3
- package/esm/LineChart/useAreaPlotData.d.ts +0 -12
- package/esm/LineChart/useAreaPlotData.js +0 -120
- package/esm/LineChart/useLineChartProps.d.ts +0 -40
- package/esm/LineChart/useLineChartProps.js +0 -143
- package/esm/LineChart/useLinePlotData.d.ts +0 -12
- package/esm/LineChart/useLinePlotData.js +0 -109
- package/esm/LineChart/useMarkPlotData.d.ts +0 -19
- package/esm/LineChart/useMarkPlotData.js +0 -102
- package/esm/PieChart/FocusedPieArc.d.ts +0 -2
- package/esm/PieChart/FocusedPieArc.js +0 -54
- package/esm/PieChart/PieArc.d.ts +0 -67
- package/esm/PieChart/PieArc.js +0 -135
- package/esm/PieChart/PieArcLabel.d.ts +0 -53
- package/esm/PieChart/PieArcLabel.js +0 -122
- package/esm/PieChart/PieArcLabelPlot.d.ts +0 -40
- package/esm/PieChart/PieArcLabelPlot.js +0 -183
- package/esm/PieChart/PieArcPlot.d.ts +0 -47
- package/esm/PieChart/PieArcPlot.js +0 -161
- package/esm/PieChart/PieChart.d.ts +0 -57
- package/esm/PieChart/PieChart.js +0 -281
- package/esm/PieChart/PieChart.plugins.d.ts +0 -8
- package/esm/PieChart/PieChart.plugins.js +0 -6
- package/esm/PieChart/PiePlot.d.ts +0 -31
- package/esm/PieChart/PiePlot.js +0 -124
- package/esm/PieChart/dataTransform/getModifiedArcProperties.d.ts +0 -11
- package/esm/PieChart/dataTransform/getModifiedArcProperties.js +0 -36
- package/esm/PieChart/dataTransform/useTransformData.d.ts +0 -17
- package/esm/PieChart/dataTransform/useTransformData.js +0 -53
- package/esm/PieChart/getPieCoordinates.d.ts +0 -7
- package/esm/PieChart/getPieCoordinates.js +0 -19
- package/esm/PieChart/index.d.ts +0 -11
- package/esm/PieChart/index.js +0 -10
- package/esm/PieChart/seriesConfig/getColor.d.ts +0 -3
- package/esm/PieChart/seriesConfig/getSeriesWithDefaultValues.d.ts +0 -3
- package/esm/PieChart/seriesConfig/index.d.ts +0 -2
- package/esm/PieChart/seriesConfig/index.js +0 -22
- package/esm/PieChart/seriesConfig/keyboardFocusHandler.d.ts +0 -3
- package/esm/PieChart/seriesConfig/keyboardFocusHandler.js +0 -17
- package/esm/PieChart/seriesConfig/legend.d.ts +0 -3
- package/esm/PieChart/seriesConfig/legend.js +0 -27
- package/esm/PieChart/seriesConfig/seriesLayout.d.ts +0 -3
- package/esm/PieChart/seriesConfig/seriesLayout.js +0 -42
- package/esm/PieChart/seriesConfig/seriesProcessor.d.ts +0 -3
- package/esm/PieChart/seriesConfig/seriesProcessor.js +0 -87
- package/esm/PieChart/seriesConfig/tooltip.d.ts +0 -3
- package/esm/PieChart/seriesConfig/tooltip.js +0 -32
- package/esm/PieChart/seriesConfig/tooltipPosition.d.ts +0 -3
- package/esm/PieChart/seriesConfig/tooltipPosition.js +0 -60
- package/esm/RadarChart/FocusedRadarMark.js +0 -28
- package/esm/RadarChart/RadarAxis/RadarAxis.d.ts +0 -29
- package/esm/RadarChart/RadarAxis/RadarAxis.js +0 -94
- package/esm/RadarChart/RadarAxis/RadarAxis.utils.d.ts +0 -20
- package/esm/RadarChart/RadarAxis/index.d.ts +0 -3
- package/esm/RadarChart/RadarAxis/index.js +0 -3
- package/esm/RadarChart/RadarAxis/useRadarAxis.js +0 -75
- package/esm/RadarChart/RadarAxisHighlight/RadarAxisHighlight.d.ts +0 -12
- package/esm/RadarChart/RadarAxisHighlight/RadarAxisHighlight.js +0 -83
- package/esm/RadarChart/RadarAxisHighlight/index.d.ts +0 -2
- package/esm/RadarChart/RadarAxisHighlight/index.js +0 -2
- package/esm/RadarChart/RadarAxisHighlight/useRadarAxisHighlight.d.ts +0 -51
- package/esm/RadarChart/RadarAxisHighlight/useRadarAxisHighlight.js +0 -58
- package/esm/RadarChart/RadarChart.d.ts +0 -46
- package/esm/RadarChart/RadarChart.js +0 -287
- package/esm/RadarChart/RadarChart.plugins.d.ts +0 -8
- package/esm/RadarChart/RadarChart.plugins.js +0 -7
- package/esm/RadarChart/RadarDataProvider/RadarDataProvider.d.ts +0 -25
- package/esm/RadarChart/RadarDataProvider/RadarDataProvider.js +0 -86
- package/esm/RadarChart/RadarDataProvider/index.d.ts +0 -1
- package/esm/RadarChart/RadarDataProvider/index.js +0 -1
- package/esm/RadarChart/RadarDataProvider/radar.types.d.ts +0 -43
- package/esm/RadarChart/RadarGrid/CircularRadarGrid.d.ts +0 -5
- package/esm/RadarChart/RadarGrid/CircularRadarStripes.d.ts +0 -5
- package/esm/RadarChart/RadarGrid/RadarGrid.d.ts +0 -6
- package/esm/RadarChart/RadarGrid/RadarGrid.js +0 -89
- package/esm/RadarChart/RadarGrid/RadarGrid.types.d.ts +0 -49
- package/esm/RadarChart/RadarGrid/SharpRadarGrid.d.ts +0 -5
- package/esm/RadarChart/RadarGrid/SharpRadarStripes.d.ts +0 -5
- package/esm/RadarChart/RadarGrid/index.d.ts +0 -3
- package/esm/RadarChart/RadarGrid/index.js +0 -2
- package/esm/RadarChart/RadarGrid/useRadarGridData.js +0 -40
- package/esm/RadarChart/RadarMetricLabels/RadarMetricLabels.js +0 -35
- package/esm/RadarChart/RadarMetricLabels/index.d.ts +0 -1
- package/esm/RadarChart/RadarMetricLabels/index.js +0 -1
- package/esm/RadarChart/RadarMetricLabels/useRadarMetricData.js +0 -37
- package/esm/RadarChart/RadarSeriesPlot/RadarSeriesArea.d.ts +0 -23
- package/esm/RadarChart/RadarSeriesPlot/RadarSeriesArea.js +0 -105
- package/esm/RadarChart/RadarSeriesPlot/RadarSeriesMarks.d.ts +0 -23
- package/esm/RadarChart/RadarSeriesPlot/RadarSeriesMarks.js +0 -102
- package/esm/RadarChart/RadarSeriesPlot/RadarSeriesPlot.d.ts +0 -6
- package/esm/RadarChart/RadarSeriesPlot/RadarSeriesPlot.js +0 -102
- package/esm/RadarChart/RadarSeriesPlot/RadarSeriesPlot.types.d.ts +0 -48
- package/esm/RadarChart/RadarSeriesPlot/index.d.ts +0 -6
- package/esm/RadarChart/RadarSeriesPlot/index.js +0 -4
- package/esm/RadarChart/RadarSeriesPlot/radarSeriesPlotClasses.d.ts +0 -16
- package/esm/RadarChart/RadarSeriesPlot/useInteractionAllItemProps.d.ts +0 -7
- package/esm/RadarChart/RadarSeriesPlot/useInteractionAllItemProps.js +0 -18
- package/esm/RadarChart/RadarSeriesPlot/useRadarRotationIndex.js +0 -31
- package/esm/RadarChart/RadarSeriesPlot/useRadarSeriesData.d.ts +0 -32
- package/esm/RadarChart/RadarSeriesPlot/useRadarSeriesData.js +0 -69
- package/esm/RadarChart/index.d.ts +0 -20
- package/esm/RadarChart/index.js +0 -21
- package/esm/RadarChart/seriesConfig/extremums.d.ts +0 -3
- package/esm/RadarChart/seriesConfig/getColor.d.ts +0 -3
- package/esm/RadarChart/seriesConfig/getColor.js +0 -15
- package/esm/RadarChart/seriesConfig/getSeriesWithDefaultValues.d.ts +0 -3
- package/esm/RadarChart/seriesConfig/index.d.ts +0 -2
- package/esm/RadarChart/seriesConfig/index.js +0 -24
- package/esm/RadarChart/seriesConfig/keyboardFocusHandler.d.ts +0 -3
- package/esm/RadarChart/seriesConfig/keyboardFocusHandler.js +0 -17
- package/esm/RadarChart/seriesConfig/legend.d.ts +0 -3
- package/esm/RadarChart/seriesConfig/legend.js +0 -22
- package/esm/RadarChart/seriesConfig/seriesProcessor.d.ts +0 -3
- package/esm/RadarChart/seriesConfig/tooltip.d.ts +0 -4
- package/esm/RadarChart/seriesConfig/tooltip.js +0 -39
- package/esm/RadarChart/seriesConfig/tooltipPosition.d.ts +0 -3
- package/esm/RadarChart/seriesConfig/tooltipPosition.js +0 -100
- package/esm/RadarChart/useRadarChartProps.d.ts +0 -28
- package/esm/RadarChart/useRadarChartProps.js +0 -93
- package/esm/ScatterChart/BatchScatter.d.ts +0 -31
- package/esm/ScatterChart/BatchScatter.js +0 -158
- package/esm/ScatterChart/FocusedScatterMark.js +0 -44
- package/esm/ScatterChart/Scatter.d.ts +0 -44
- package/esm/ScatterChart/Scatter.js +0 -111
- package/esm/ScatterChart/ScatterChart.d.ts +0 -85
- package/esm/ScatterChart/ScatterChart.js +0 -1220
- package/esm/ScatterChart/ScatterChart.plugins.d.ts +0 -12
- package/esm/ScatterChart/ScatterChart.plugins.js +0 -10
- package/esm/ScatterChart/ScatterMarker.d.ts +0 -46
- package/esm/ScatterChart/ScatterMarker.types.d.ts +0 -24
- package/esm/ScatterChart/ScatterPlot.d.ts +0 -45
- package/esm/ScatterChart/ScatterPlot.js +0 -115
- package/esm/ScatterChart/index.d.ts +0 -9
- package/esm/ScatterChart/index.js +0 -8
- package/esm/ScatterChart/seriesConfig/extremums.d.ts +0 -3
- package/esm/ScatterChart/seriesConfig/getColor.d.ts +0 -3
- package/esm/ScatterChart/seriesConfig/getColor.js +0 -81
- package/esm/ScatterChart/seriesConfig/getSeriesWithDefaultValues.d.ts +0 -3
- package/esm/ScatterChart/seriesConfig/index.d.ts +0 -2
- package/esm/ScatterChart/seriesConfig/index.js +0 -23
- package/esm/ScatterChart/seriesConfig/keyboardFocusHandler.d.ts +0 -4
- package/esm/ScatterChart/seriesConfig/keyboardFocusHandler.js +0 -16
- package/esm/ScatterChart/seriesConfig/legend.d.ts +0 -3
- package/esm/ScatterChart/seriesConfig/legend.js +0 -22
- package/esm/ScatterChart/seriesConfig/seriesProcessor.d.ts +0 -3
- package/esm/ScatterChart/seriesConfig/seriesProcessor.js +0 -40
- package/esm/ScatterChart/seriesConfig/tooltip.d.ts +0 -3
- package/esm/ScatterChart/seriesConfig/tooltip.js +0 -25
- package/esm/ScatterChart/seriesConfig/tooltipPosition.d.ts +0 -3
- package/esm/ScatterChart/useScatterChartProps.d.ts +0 -29
- package/esm/ScatterChart/useScatterChartProps.js +0 -110
- package/esm/ScatterChart/useScatterPlotData.d.ts +0 -8
- package/esm/ScatterChart/useScatterPlotData.js +0 -26
- package/esm/SparkLineChart/SparkLineChart.d.ts +0 -129
- package/esm/SparkLineChart/SparkLineChart.js +0 -1367
- package/esm/SparkLineChart/index.d.ts +0 -1
- package/esm/SparkLineChart/index.js +0 -1
- package/esm/Toolbar/Toolbar.js +0 -58
- package/esm/Toolbar/ToolbarButton.d.ts +0 -11
- package/esm/Toolbar/ToolbarButton.js +0 -56
- package/esm/Toolbar/index.d.ts +0 -4
- package/esm/Toolbar/index.js +0 -4
- package/esm/colorPalettes/categorical/blueberryTwilight.d.ts +0 -4
- package/esm/colorPalettes/categorical/cheerfulFiesta.d.ts +0 -4
- package/esm/colorPalettes/categorical/mangoFusion.d.ts +0 -4
- package/esm/colorPalettes/categorical/rainbowSurge.d.ts +0 -4
- package/esm/colorPalettes/index.d.ts +0 -14
- package/esm/colorPalettes/index.js +0 -20
- package/esm/colorPalettes/sequential/blue.d.ts +0 -4
- package/esm/colorPalettes/sequential/cyan.d.ts +0 -4
- package/esm/colorPalettes/sequential/green.d.ts +0 -4
- package/esm/colorPalettes/sequential/orange.d.ts +0 -4
- package/esm/colorPalettes/sequential/pink.d.ts +0 -4
- package/esm/colorPalettes/sequential/purple.d.ts +0 -4
- package/esm/colorPalettes/sequential/red.d.ts +0 -4
- package/esm/colorPalettes/sequential/strawberrySky.d.ts +0 -4
- package/esm/colorPalettes/sequential/yellow.d.ts +0 -4
- package/esm/context/ChartApi.d.ts +0 -22
- package/esm/context/ChartProvider/ChartContext.d.ts +0 -6
- package/esm/context/ChartProvider/ChartContext.js +0 -8
- package/esm/context/ChartProvider/ChartProvider.d.ts +0 -7
- package/esm/context/ChartProvider/ChartProvider.js +0 -29
- package/esm/context/ChartProvider/ChartProvider.types.d.ts +0 -27
- package/esm/context/ChartProvider/index.d.ts +0 -3
- package/esm/context/ChartProvider/index.js +0 -3
- package/esm/context/ChartProvider/useChartContext.d.ts +0 -3
- package/esm/context/ChartProvider/useChartContext.js +0 -11
- package/esm/context/ChartsSlotsContext.d.ts +0 -20
- package/esm/context/ChartsSlotsContext.js +0 -35
- package/esm/context/index.d.ts +0 -4
- package/esm/context/index.js +0 -2
- package/esm/context/useChartApiContext.d.ts +0 -10
- package/esm/context/useChartApiContext.js +0 -21
- package/esm/hooks/animation/index.d.ts +0 -7
- package/esm/hooks/animation/index.js +0 -7
- package/esm/hooks/animation/useAnimate.js +0 -49
- package/esm/hooks/animation/useAnimateArea.d.ts +0 -15
- package/esm/hooks/animation/useAnimateArea.js +0 -24
- package/esm/hooks/animation/useAnimateBar.d.ts +0 -17
- package/esm/hooks/animation/useAnimateBar.js +0 -50
- package/esm/hooks/animation/useAnimateBarLabel.d.ts +0 -19
- package/esm/hooks/animation/useAnimateBarLabel.js +0 -102
- package/esm/hooks/animation/useAnimateGaugeValueArc.js +0 -54
- package/esm/hooks/animation/useAnimateLine.d.ts +0 -14
- package/esm/hooks/animation/useAnimateLine.js +0 -23
- package/esm/hooks/animation/useAnimatePieArc.d.ts +0 -15
- package/esm/hooks/animation/useAnimatePieArc.js +0 -62
- package/esm/hooks/animation/useAnimatePieArcLabel.d.ts +0 -24
- package/esm/hooks/animation/useAnimatePieArcLabel.js +0 -68
- package/esm/hooks/index.d.ts +0 -26
- package/esm/hooks/index.js +0 -25
- package/esm/hooks/useAxis.d.ts +0 -151
- package/esm/hooks/useAxis.js +0 -222
- package/esm/hooks/useAxisCoordinates.d.ts +0 -30
- package/esm/hooks/useAxisCoordinates.js +0 -105
- package/esm/hooks/useAxisSystem.js +0 -25
- package/esm/hooks/useAxisTicks.d.ts +0 -14
- package/esm/hooks/useAxisTicks.js +0 -68
- package/esm/hooks/useBarSeries.d.ts +0 -36
- package/esm/hooks/useBarSeries.js +0 -41
- package/esm/hooks/useBrush.js +0 -15
- package/esm/hooks/useChartGradientId.d.ts +0 -31
- package/esm/hooks/useChartGradientId.js +0 -47
- package/esm/hooks/useChartId.js +0 -13
- package/esm/hooks/useChartRootRef.js +0 -14
- package/esm/hooks/useChartsLocalization.d.ts +0 -1
- package/esm/hooks/useChartsLocalization.js +0 -11
- package/esm/hooks/useColorScale.d.ts +0 -22
- package/esm/hooks/useColorScale.js +0 -37
- package/esm/hooks/useDataset.d.ts +0 -6
- package/esm/hooks/useDataset.js +0 -12
- package/esm/hooks/useDrawingArea.js +0 -15
- package/esm/hooks/useFocusedItem.d.ts +0 -4
- package/esm/hooks/useFocusedItem.js +0 -12
- package/esm/hooks/useInteractionItemProps.d.ts +0 -18
- package/esm/hooks/useInteractionItemProps.js +0 -73
- package/esm/hooks/useIsItemFocused.d.ts +0 -13
- package/esm/hooks/useIsItemFocused.js +0 -16
- package/esm/hooks/useIsItemFocusedGetter.d.ts +0 -9
- package/esm/hooks/useIsItemFocusedGetter.js +0 -15
- package/esm/hooks/useItemHighlighted.d.ts +0 -23
- package/esm/hooks/useItemHighlighted.js +0 -22
- package/esm/hooks/useItemHighlightedGetter.d.ts +0 -12
- package/esm/hooks/useItemHighlightedGetter.js +0 -21
- package/esm/hooks/useLegend.d.ts +0 -13
- package/esm/hooks/useLegend.js +0 -29
- package/esm/hooks/useLineSeries.d.ts +0 -36
- package/esm/hooks/useLineSeries.js +0 -41
- package/esm/hooks/usePieSeries.d.ts +0 -41
- package/esm/hooks/usePieSeries.js +0 -52
- package/esm/hooks/useRadarSeries.d.ts +0 -35
- package/esm/hooks/useRadarSeries.js +0 -40
- package/esm/hooks/useScale.d.ts +0 -47
- package/esm/hooks/useScale.js +0 -74
- package/esm/hooks/useScatterSeries.d.ts +0 -35
- package/esm/hooks/useScatterSeries.js +0 -40
- package/esm/hooks/useSeries.d.ts +0 -7
- package/esm/hooks/useSeries.js +0 -14
- package/esm/hooks/useSkipAnimation.js +0 -15
- package/esm/hooks/useSvgRef.d.ts +0 -6
- package/esm/hooks/useSvgRef.js +0 -14
- package/esm/hooks/useTicks.d.ts +0 -91
- package/esm/hooks/useTicks.js +0 -260
- package/esm/hooks/useTicksGrouped.d.ts +0 -28
- package/esm/hooks/useTicksGrouped.js +0 -98
- package/esm/hooks/useZAxis.d.ts +0 -7
- package/esm/hooks/useZAxis.js +0 -26
- package/esm/index.d.ts +0 -35
- package/esm/index.js +0 -43
- package/esm/internals/Flatbush.js +0 -468
- package/esm/internals/animation/Transition.d.ts +0 -37
- package/esm/internals/animation/Transition.js +0 -78
- package/esm/internals/animation/useAnimateInternal.js +0 -76
- package/esm/internals/colorScale.d.ts +0 -5
- package/esm/internals/commonNextFocusItem.d.ts +0 -41
- package/esm/internals/commonNextFocusItem.js +0 -123
- package/esm/internals/components/AxisSharedComponents.js +0 -25
- package/esm/internals/components/ChartsAxesGradients/ChartsAxesGradients.js +0 -133
- package/esm/internals/components/ChartsAxesGradients/ChartsContinuousGradient.d.ts +0 -18
- package/esm/internals/components/ChartsAxesGradients/ChartsContinuousGradientObjectBound.d.ts +0 -12
- package/esm/internals/components/ChartsAxesGradients/ChartsPiecewiseGradient.d.ts +0 -11
- package/esm/internals/components/ChartsAxesGradients/index.d.ts +0 -1
- package/esm/internals/components/ChartsAxesGradients/index.js +0 -1
- package/esm/internals/components/NotRendered.js +0 -10
- package/esm/internals/components/WebGLContext.d.ts +0 -3
- package/esm/internals/components/WebGLContext.js +0 -108
- package/esm/internals/configInit.d.ts +0 -16
- package/esm/internals/configInit.js +0 -38
- package/esm/internals/constants.d.ts +0 -16
- package/esm/internals/createGetBarDimensions.d.ts +0 -14
- package/esm/internals/createGetBarDimensions.js +0 -55
- package/esm/internals/createSvgIcon.d.ts +0 -3
- package/esm/internals/dateHelpers.d.ts +0 -17
- package/esm/internals/defaultValueFormatters.d.ts +0 -6
- package/esm/internals/defaultizeMargin.d.ts +0 -3
- package/esm/internals/ellipsize.js +0 -53
- package/esm/internals/geometry.js +0 -35
- package/esm/internals/getCurve.d.ts +0 -2
- package/esm/internals/getGraphemeCount.js +0 -19
- package/esm/internals/getPercentageValue.js +0 -28
- package/esm/internals/getScale.d.ts +0 -3
- package/esm/internals/getScale.js +0 -20
- package/esm/internals/getSeriesColorFn.d.ts +0 -6
- package/esm/internals/getWordsByLines.js +0 -14
- package/esm/internals/identifierCleaner.d.ts +0 -11
- package/esm/internals/identifierSerializer.d.ts +0 -9
- package/esm/internals/index.d.ts +0 -85
- package/esm/internals/index.js +0 -98
- package/esm/internals/invertScale.d.ts +0 -6
- package/esm/internals/invertScale.js +0 -16
- package/esm/internals/invertTextAnchor.d.ts +0 -2
- package/esm/internals/isCartesian.d.ts +0 -3
- package/esm/internals/isCartesian.js +0 -7
- package/esm/internals/isPolar.d.ts +0 -2
- package/esm/internals/isPolar.js +0 -4
- package/esm/internals/material/index.d.ts +0 -6
- package/esm/internals/plugins/allPlugins.d.ts +0 -14
- package/esm/internals/plugins/allPlugins.js +0 -12
- package/esm/internals/plugins/corePlugins/corePlugins.d.ts +0 -16
- package/esm/internals/plugins/corePlugins/corePlugins.js +0 -13
- package/esm/internals/plugins/corePlugins/index.d.ts +0 -3
- package/esm/internals/plugins/corePlugins/index.js +0 -1
- package/esm/internals/plugins/corePlugins/useChartAnimation/index.d.ts +0 -3
- package/esm/internals/plugins/corePlugins/useChartAnimation/index.js +0 -2
- package/esm/internals/plugins/corePlugins/useChartAnimation/useChartAnimation.d.ts +0 -3
- package/esm/internals/plugins/corePlugins/useChartAnimation/useChartAnimation.selectors.d.ts +0 -3
- package/esm/internals/plugins/corePlugins/useChartAnimation/useChartAnimation.types.d.ts +0 -39
- package/esm/internals/plugins/corePlugins/useChartDimensions/index.d.ts +0 -3
- package/esm/internals/plugins/corePlugins/useChartDimensions/index.js +0 -2
- package/esm/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.d.ts +0 -3
- package/esm/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.js +0 -183
- package/esm/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.selectors.d.ts +0 -27
- package/esm/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.selectors.js +0 -31
- package/esm/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.types.d.ts +0 -93
- package/esm/internals/plugins/corePlugins/useChartElementRef/index.d.ts +0 -2
- package/esm/internals/plugins/corePlugins/useChartElementRef/index.js +0 -1
- package/esm/internals/plugins/corePlugins/useChartElementRef/useChartElementRef.d.ts +0 -3
- package/esm/internals/plugins/corePlugins/useChartElementRef/useChartElementRef.js +0 -14
- package/esm/internals/plugins/corePlugins/useChartElementRef/useChartElementRef.types.d.ts +0 -15
- package/esm/internals/plugins/corePlugins/useChartExperimentalFeature/index.d.ts +0 -3
- package/esm/internals/plugins/corePlugins/useChartExperimentalFeature/index.js +0 -2
- package/esm/internals/plugins/corePlugins/useChartExperimentalFeature/useChartExperimentalFeature.d.ts +0 -3
- package/esm/internals/plugins/corePlugins/useChartExperimentalFeature/useChartExperimentalFeature.selectors.d.ts +0 -6
- package/esm/internals/plugins/corePlugins/useChartExperimentalFeature/useChartExperimentalFeature.types.d.ts +0 -21
- package/esm/internals/plugins/corePlugins/useChartId/index.d.ts +0 -3
- package/esm/internals/plugins/corePlugins/useChartId/index.js +0 -2
- package/esm/internals/plugins/corePlugins/useChartId/useChartId.d.ts +0 -3
- package/esm/internals/plugins/corePlugins/useChartId/useChartId.js +0 -30
- package/esm/internals/plugins/corePlugins/useChartId/useChartId.selectors.d.ts +0 -8
- package/esm/internals/plugins/corePlugins/useChartId/useChartId.types.d.ts +0 -20
- package/esm/internals/plugins/corePlugins/useChartInteractionListener/index.d.ts +0 -2
- package/esm/internals/plugins/corePlugins/useChartInteractionListener/index.js +0 -1
- package/esm/internals/plugins/corePlugins/useChartInteractionListener/useChartInteractionListener.d.ts +0 -3
- package/esm/internals/plugins/corePlugins/useChartInteractionListener/useChartInteractionListener.js +0 -118
- package/esm/internals/plugins/corePlugins/useChartInteractionListener/useChartInteractionListener.types.d.ts +0 -51
- package/esm/internals/plugins/corePlugins/useChartSeries/index.d.ts +0 -3
- package/esm/internals/plugins/corePlugins/useChartSeries/index.js +0 -2
- package/esm/internals/plugins/corePlugins/useChartSeries/processSeries.d.ts +0 -39
- package/esm/internals/plugins/corePlugins/useChartSeries/processSeries.js +0 -81
- package/esm/internals/plugins/corePlugins/useChartSeries/useChartSeries.d.ts +0 -3
- package/esm/internals/plugins/corePlugins/useChartSeries/useChartSeries.js +0 -63
- package/esm/internals/plugins/corePlugins/useChartSeries/useChartSeries.selectors.d.ts +0 -29
- package/esm/internals/plugins/corePlugins/useChartSeries/useChartSeries.selectors.js +0 -31
- package/esm/internals/plugins/corePlugins/useChartSeries/useChartSeries.types.d.ts +0 -52
- package/esm/internals/plugins/corePlugins/useChartSeries/useColorProcessor.d.ts +0 -5
- package/esm/internals/plugins/corePlugins/useChartSeries/useColorProcessor.js +0 -21
- package/esm/internals/plugins/corePlugins/useChartSeriesConfig/index.d.ts +0 -4
- package/esm/internals/plugins/corePlugins/useChartSeriesConfig/index.js +0 -3
- package/esm/internals/plugins/corePlugins/useChartSeriesConfig/types/cartesianExtremumGetter.types.d.ts +0 -22
- package/esm/internals/plugins/corePlugins/useChartSeriesConfig/types/colorProcessor.types.d.ts +0 -19
- package/esm/internals/plugins/corePlugins/useChartSeriesConfig/types/getItemAtPosition.types.d.ts +0 -8
- package/esm/internals/plugins/corePlugins/useChartSeriesConfig/types/getSeriesWithDefaultValues.types.d.ts +0 -3
- package/esm/internals/plugins/corePlugins/useChartSeriesConfig/types/identifierCleaner.types.d.ts +0 -3
- package/esm/internals/plugins/corePlugins/useChartSeriesConfig/types/identifierSerializer.types.d.ts +0 -3
- package/esm/internals/plugins/corePlugins/useChartSeriesConfig/types/index.d.ts +0 -13
- package/esm/internals/plugins/corePlugins/useChartSeriesConfig/types/index.js +0 -13
- package/esm/internals/plugins/corePlugins/useChartSeriesConfig/types/legendGetter.types.d.ts +0 -4
- package/esm/internals/plugins/corePlugins/useChartSeriesConfig/types/polarExtremumGetter.types.d.ts +0 -12
- package/esm/internals/plugins/corePlugins/useChartSeriesConfig/types/seriesConfig.types.d.ts +0 -57
- package/esm/internals/plugins/corePlugins/useChartSeriesConfig/types/seriesLayout.types.d.ts +0 -6
- package/esm/internals/plugins/corePlugins/useChartSeriesConfig/types/seriesProcessor.types.d.ts +0 -17
- package/esm/internals/plugins/corePlugins/useChartSeriesConfig/types/tooltipGetter.types.d.ts +0 -74
- package/esm/internals/plugins/corePlugins/useChartSeriesConfig/types/tooltipItemPositionGetter.types.d.ts +0 -27
- package/esm/internals/plugins/corePlugins/useChartSeriesConfig/useChartSeriesConfig.d.ts +0 -3
- package/esm/internals/plugins/corePlugins/useChartSeriesConfig/useChartSeriesConfig.js +0 -35
- package/esm/internals/plugins/corePlugins/useChartSeriesConfig/useChartSeriesConfig.selectors.d.ts +0 -6
- package/esm/internals/plugins/corePlugins/useChartSeriesConfig/useChartSeriesConfig.types.d.ts +0 -48
- package/esm/internals/plugins/corePlugins/useChartSeriesConfig/utils/cleanIdentifier.d.ts +0 -15
- package/esm/internals/plugins/corePlugins/useChartSeriesConfig/utils/cleanIdentifier.js +0 -18
- package/esm/internals/plugins/corePlugins/useChartSeriesConfig/utils/serializeIdentifier.d.ts +0 -14
- package/esm/internals/plugins/corePlugins/useChartSeriesConfig/utils/serializeIdentifier.js +0 -18
- package/esm/internals/plugins/featurePlugins/shared/useRegisterPointerInteractions.d.ts +0 -12
- package/esm/internals/plugins/featurePlugins/shared/useRegisterPointerInteractions.js +0 -74
- package/esm/internals/plugins/featurePlugins/useChartBrush/index.d.ts +0 -3
- package/esm/internals/plugins/featurePlugins/useChartBrush/index.js +0 -3
- package/esm/internals/plugins/featurePlugins/useChartBrush/useChartBrush.d.ts +0 -3
- package/esm/internals/plugins/featurePlugins/useChartBrush/useChartBrush.js +0 -111
- package/esm/internals/plugins/featurePlugins/useChartBrush/useChartBrush.selectors.d.ts +0 -54
- package/esm/internals/plugins/featurePlugins/useChartBrush/useChartBrush.selectors.js +0 -75
- package/esm/internals/plugins/featurePlugins/useChartBrush/useChartBrush.types.d.ts +0 -81
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/computeAxisValue.d.ts +0 -32
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/computeAxisValue.js +0 -129
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/createAxisFilterMapper.d.ts +0 -7
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/createAxisFilterMapper.js +0 -43
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/createZoomLookup.d.ts +0 -4
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/createZoomLookup.js +0 -14
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/defaultizeAxis.d.ts +0 -13
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/defaultizeAxis.js +0 -103
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/defaultizeZoom.d.ts +0 -20
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/defaultizeZoom.js +0 -41
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/domain.d.ts +0 -20
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/domain.js +0 -77
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisDomainLimit.d.ts +0 -8
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisExtrema.d.ts +0 -6
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisExtrema.js +0 -24
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisScale.d.ts +0 -5
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisScale.js +0 -24
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisTriggerTooltip.d.ts +0 -5
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisTriggerTooltip.js +0 -21
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisValue.d.ts +0 -15
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisValue.js +0 -61
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/index.d.ts +0 -11
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/index.js +0 -10
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartAxisSize.selectors.d.ts +0 -20
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartAxisSize.selectors.js +0 -35
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxis.d.ts +0 -3
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxis.js +0 -230
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxis.types.d.ts +0 -106
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisLayout.selectors.d.ts +0 -13
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisPosition.selectors.d.ts +0 -4
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisPosition.selectors.js +0 -83
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisPreview.selectors.d.ts +0 -13
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisPreview.selectors.js +0 -119
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisRendering.selectors.d.ts +0 -159
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisRendering.selectors.js +0 -301
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianHighlight.selectors.d.ts +0 -45
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianHighlight.selectors.js +0 -90
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianInteraction.selectors.d.ts +0 -44
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianInteraction.selectors.js +0 -102
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useInternalIsZoomInteracting.js +0 -18
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/zoom.types.d.ts +0 -109
- package/esm/internals/plugins/featurePlugins/useChartClosestPoint/findClosestPoints.d.ts +0 -4
- package/esm/internals/plugins/featurePlugins/useChartClosestPoint/findClosestPoints.js +0 -33
- package/esm/internals/plugins/featurePlugins/useChartClosestPoint/index.d.ts +0 -3
- package/esm/internals/plugins/featurePlugins/useChartClosestPoint/index.js +0 -2
- package/esm/internals/plugins/featurePlugins/useChartClosestPoint/useChartClosestPoint.d.ts +0 -3
- package/esm/internals/plugins/featurePlugins/useChartClosestPoint/useChartClosestPoint.js +0 -210
- package/esm/internals/plugins/featurePlugins/useChartClosestPoint/useChartClosestPoint.selectors.d.ts +0 -3
- package/esm/internals/plugins/featurePlugins/useChartClosestPoint/useChartClosestPoint.types.d.ts +0 -59
- package/esm/internals/plugins/featurePlugins/useChartHighlight/createIsFaded.d.ts +0 -3
- package/esm/internals/plugins/featurePlugins/useChartHighlight/createIsFaded.js +0 -20
- package/esm/internals/plugins/featurePlugins/useChartHighlight/createIsHighlighted.d.ts +0 -3
- package/esm/internals/plugins/featurePlugins/useChartHighlight/createIsHighlighted.js +0 -20
- package/esm/internals/plugins/featurePlugins/useChartHighlight/highlightStates.d.ts +0 -20
- package/esm/internals/plugins/featurePlugins/useChartHighlight/highlightStates.js +0 -32
- package/esm/internals/plugins/featurePlugins/useChartHighlight/index.d.ts +0 -4
- package/esm/internals/plugins/featurePlugins/useChartHighlight/index.js +0 -2
- package/esm/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.d.ts +0 -3
- package/esm/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.js +0 -74
- package/esm/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.selectors.d.ts +0 -34
- package/esm/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.selectors.js +0 -43
- package/esm/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.types.d.ts +0 -81
- package/esm/internals/plugins/featurePlugins/useChartInteraction/checkHasInteractionPlugin.d.ts +0 -3
- package/esm/internals/plugins/featurePlugins/useChartInteraction/index.d.ts +0 -3
- package/esm/internals/plugins/featurePlugins/useChartInteraction/index.js +0 -2
- package/esm/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.d.ts +0 -3
- package/esm/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.selectors.d.ts +0 -18
- package/esm/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.types.d.ts +0 -54
- package/esm/internals/plugins/featurePlugins/useChartItemClick/index.d.ts +0 -2
- package/esm/internals/plugins/featurePlugins/useChartItemClick/index.js +0 -1
- package/esm/internals/plugins/featurePlugins/useChartItemClick/useChartItemClick.d.ts +0 -3
- package/esm/internals/plugins/featurePlugins/useChartItemClick/useChartItemClick.js +0 -48
- package/esm/internals/plugins/featurePlugins/useChartItemClick/useChartItemClick.types.d.ts +0 -23
- package/esm/internals/plugins/featurePlugins/useChartKeyboardNavigation/index.d.ts +0 -4
- package/esm/internals/plugins/featurePlugins/useChartKeyboardNavigation/index.js +0 -2
- package/esm/internals/plugins/featurePlugins/useChartKeyboardNavigation/keyboardFocusHandler.types.d.ts +0 -14
- package/esm/internals/plugins/featurePlugins/useChartKeyboardNavigation/useChartKeyboardNavigation.d.ts +0 -3
- package/esm/internals/plugins/featurePlugins/useChartKeyboardNavigation/useChartKeyboardNavigation.js +0 -85
- package/esm/internals/plugins/featurePlugins/useChartKeyboardNavigation/useChartKeyboardNavigation.selectors.d.ts +0 -23
- package/esm/internals/plugins/featurePlugins/useChartKeyboardNavigation/useChartKeyboardNavigation.selectors.js +0 -46
- package/esm/internals/plugins/featurePlugins/useChartKeyboardNavigation/useChartKeyboardNavigation.types.d.ts +0 -24
- package/esm/internals/plugins/featurePlugins/useChartKeyboardNavigation/utils/getMaxSeriesLength.d.ts +0 -3
- package/esm/internals/plugins/featurePlugins/useChartKeyboardNavigation/utils/getNextNonEmptySeries.d.ts +0 -15
- package/esm/internals/plugins/featurePlugins/useChartKeyboardNavigation/utils/getNextNonEmptySeries.js +0 -18
- package/esm/internals/plugins/featurePlugins/useChartKeyboardNavigation/utils/getNonEmptySeriesArray.d.ts +0 -7
- package/esm/internals/plugins/featurePlugins/useChartKeyboardNavigation/utils/getPreviousNonEmptySeries.d.ts +0 -11
- package/esm/internals/plugins/featurePlugins/useChartKeyboardNavigation/utils/getPreviousNonEmptySeries.js +0 -18
- package/esm/internals/plugins/featurePlugins/useChartPolarAxis/computeAxisValue.d.ts +0 -27
- package/esm/internals/plugins/featurePlugins/useChartPolarAxis/computeAxisValue.js +0 -125
- package/esm/internals/plugins/featurePlugins/useChartPolarAxis/defaultizeAxis.d.ts +0 -5
- package/esm/internals/plugins/featurePlugins/useChartPolarAxis/defaultizeAxis.js +0 -24
- package/esm/internals/plugins/featurePlugins/useChartPolarAxis/getAxisExtremum.d.ts +0 -5
- package/esm/internals/plugins/featurePlugins/useChartPolarAxis/getAxisExtremum.js +0 -21
- package/esm/internals/plugins/featurePlugins/useChartPolarAxis/getAxisIndex.d.ts +0 -6
- package/esm/internals/plugins/featurePlugins/useChartPolarAxis/getAxisIndex.js +0 -26
- package/esm/internals/plugins/featurePlugins/useChartPolarAxis/getAxisTriggerTooltip.d.ts +0 -5
- package/esm/internals/plugins/featurePlugins/useChartPolarAxis/getAxisTriggerTooltip.js +0 -21
- package/esm/internals/plugins/featurePlugins/useChartPolarAxis/index.d.ts +0 -3
- package/esm/internals/plugins/featurePlugins/useChartPolarAxis/index.js +0 -2
- package/esm/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarAxis.d.ts +0 -3
- package/esm/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarAxis.js +0 -221
- package/esm/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarAxis.selectors.d.ts +0 -32
- package/esm/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarAxis.selectors.js +0 -34
- package/esm/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarAxis.types.d.ts +0 -74
- package/esm/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarInteraction.selectors.d.ts +0 -29
- package/esm/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarInteraction.selectors.js +0 -86
- package/esm/internals/plugins/featurePlugins/useChartTooltip/index.d.ts +0 -3
- package/esm/internals/plugins/featurePlugins/useChartTooltip/index.js +0 -2
- package/esm/internals/plugins/featurePlugins/useChartTooltip/useChartTooltip.d.ts +0 -3
- package/esm/internals/plugins/featurePlugins/useChartTooltip/useChartTooltip.js +0 -69
- package/esm/internals/plugins/featurePlugins/useChartTooltip/useChartTooltip.selectors.d.ts +0 -18
- package/esm/internals/plugins/featurePlugins/useChartTooltip/useChartTooltip.selectors.js +0 -59
- package/esm/internals/plugins/featurePlugins/useChartTooltip/useChartTooltip.types.d.ts +0 -51
- package/esm/internals/plugins/featurePlugins/useChartVisibilityManager/index.d.ts +0 -3
- package/esm/internals/plugins/featurePlugins/useChartVisibilityManager/index.js +0 -3
- package/esm/internals/plugins/featurePlugins/useChartVisibilityManager/useChartVisibilityManager.d.ts +0 -3
- package/esm/internals/plugins/featurePlugins/useChartVisibilityManager/useChartVisibilityManager.js +0 -82
- package/esm/internals/plugins/featurePlugins/useChartVisibilityManager/useChartVisibilityManager.selectors.d.ts +0 -14
- package/esm/internals/plugins/featurePlugins/useChartVisibilityManager/useChartVisibilityManager.selectors.js +0 -24
- package/esm/internals/plugins/featurePlugins/useChartVisibilityManager/useChartVisibilityManager.types.d.ts +0 -112
- package/esm/internals/plugins/featurePlugins/useChartVisibilityManager/visibilityParamToMap.d.ts +0 -4
- package/esm/internals/plugins/featurePlugins/useChartVisibilityManager/visibilityParamToMap.js +0 -11
- package/esm/internals/plugins/featurePlugins/useChartZAxis/index.d.ts +0 -3
- package/esm/internals/plugins/featurePlugins/useChartZAxis/index.js +0 -2
- package/esm/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.d.ts +0 -3
- package/esm/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.js +0 -84
- package/esm/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.selectors.d.ts +0 -8
- package/esm/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.types.d.ts +0 -37
- package/esm/internals/plugins/models/chart.d.ts +0 -15
- package/esm/internals/plugins/models/helpers.d.ts +0 -6
- package/esm/internals/plugins/models/index.d.ts +0 -3
- package/esm/internals/plugins/models/index.js +0 -3
- package/esm/internals/plugins/models/plugin.d.ts +0 -131
- package/esm/internals/plugins/utils/defaultSeriesConfig.d.ts +0 -2
- package/esm/internals/plugins/utils/defaultSeriesConfig.js +0 -10
- package/esm/internals/plugins/utils/selectors.d.ts +0 -5
- package/esm/internals/plugins/utils/useLazySelectorEffect.d.ts +0 -7
- package/esm/internals/scaleGuards.d.ts +0 -17
- package/esm/internals/scales/index.d.ts +0 -3
- package/esm/internals/scales/index.js +0 -3
- package/esm/internals/scales/scalePoint.js +0 -41
- package/esm/internals/seriesHasData.d.ts +0 -4
- package/esm/internals/seriesSelectorOfType.d.ts +0 -20
- package/esm/internals/seriesSelectorOfType.js +0 -37
- package/esm/internals/sliceUntil.js +0 -22
- package/esm/internals/stacking/index.d.ts +0 -1
- package/esm/internals/stacking/index.js +0 -1
- package/esm/internals/stacking/offset/index.d.ts +0 -1
- package/esm/internals/stacking/offset/index.js +0 -1
- package/esm/internals/stacking/stackSeries.d.ts +0 -72
- package/esm/internals/stacking/stackSeries.js +0 -95
- package/esm/internals/store/extractPluginParamsFromProps.d.ts +0 -13
- package/esm/internals/store/useCharts.d.ts +0 -20
- package/esm/internals/store/useCharts.js +0 -81
- package/esm/internals/store/useCharts.types.d.ts +0 -11
- package/esm/internals/store/useStore.d.ts +0 -3
- package/esm/internals/store/useStore.js +0 -9
- package/esm/internals/ticks.d.ts +0 -4
- package/esm/locales/elGR.d.ts +0 -115
- package/esm/locales/elGR.js +0 -113
- package/esm/locales/enUS.d.ts +0 -116
- package/esm/locales/enUS.js +0 -117
- package/esm/locales/frFR.d.ts +0 -115
- package/esm/locales/frFR.js +0 -114
- package/esm/locales/index.d.ts +0 -8
- package/esm/locales/index.js +0 -8
- package/esm/locales/nbNO.d.ts +0 -115
- package/esm/locales/nbNO.js +0 -113
- package/esm/locales/ptBR.d.ts +0 -115
- package/esm/locales/ptBR.js +0 -113
- package/esm/locales/ptPT.d.ts +0 -115
- package/esm/locales/ptPT.js +0 -115
- package/esm/locales/svSE.d.ts +0 -115
- package/esm/locales/svSE.js +0 -115
- package/esm/locales/utils/chartsLocaleTextApi.d.ts +0 -420
- package/esm/locales/utils/getChartsLocalization.d.ts +0 -119
- package/esm/models/axis.d.ts +0 -573
- package/esm/models/index.d.ts +0 -10
- package/esm/models/index.js +0 -7
- package/esm/models/seriesType/bar.d.ts +0 -67
- package/esm/models/seriesType/common.d.ts +0 -85
- package/esm/models/seriesType/config.d.ts +0 -104
- package/esm/models/seriesType/index.d.ts +0 -15
- package/esm/models/seriesType/index.js +0 -10
- package/esm/models/seriesType/line.d.ts +0 -108
- package/esm/models/seriesType/pie.d.ts +0 -202
- package/esm/models/seriesType/radar.d.ts +0 -30
- package/esm/models/seriesType/scatter.d.ts +0 -78
- package/esm/models/slots/chartsBaseSlots.d.ts +0 -6
- package/esm/models/slots/index.d.ts +0 -3
- package/esm/models/slots/index.js +0 -3
- package/esm/models/z-axis.d.ts +0 -22
- package/esm/moduleAugmentation/barChartBatchRendererOnItemClick.d.ts +0 -13
- package/esm/package.json +0 -1
- package/esm/plugins/index.d.ts +0 -8
- package/esm/plugins/index.js +0 -14
- package/esm/themeAugmentation/components.d.ts +0 -71
- package/esm/themeAugmentation/index.d.ts +0 -3
- package/esm/themeAugmentation/overrides.d.ts +0 -27
- package/esm/themeAugmentation/props.d.ts +0 -31
- package/esm/utils/index.d.ts +0 -5
- package/esm/utils/index.js +0 -6
- package/esm/utils/niceDomain.d.ts +0 -20
- package/esm/utils/niceDomain.js +0 -24
- package/esm/utils/timeTicks.d.ts +0 -2
- package/hooks/useSvgRef.d.ts +0 -6
- package/hooks/useSvgRef.js +0 -18
- package/internals/components/WebGLContext.d.ts +0 -3
- package/internals/components/WebGLContext.js +0 -116
- /package/{esm/BarChart/BarLabel/BarLabel.types.js → BarChart/BarLabel/BarLabel.types.mjs} +0 -0
- /package/{esm/BarChart/BarLabel/barLabelClasses.js → BarChart/BarLabel/barLabelClasses.mjs} +0 -0
- /package/{esm/BarChart/BarLabel/getBarLabel.js → BarChart/BarLabel/getBarLabel.mjs} +0 -0
- /package/{esm/BarChart/BatchBarPlot/BarGroup.d.ts → BarChart/BatchBarPlot/BarGroup.d.mts} +0 -0
- /package/{esm/BarChart/FocusedBar.d.ts → BarChart/FocusedBar.d.mts} +0 -0
- /package/{esm/BarChart/barClasses.d.ts → BarChart/barClasses.d.mts} +0 -0
- /package/{esm/BarChart/barClasses.js → BarChart/barClasses.mjs} +0 -0
- /package/{esm/BarChart/barElementClasses.js → BarChart/barElementClasses.mjs} +0 -0
- /package/{esm/BarChart/seriesConfig/bar/getSeriesWithDefaultValues.js → BarChart/seriesConfig/bar/getSeriesWithDefaultValues.mjs} +0 -0
- /package/{esm/BarChart/types.js → BarChart/types.mjs} +0 -0
- /package/{esm/ChartsAxis/axisClasses.d.ts → ChartsAxis/axisClasses.d.mts} +0 -0
- /package/{esm/ChartsAxis/axisClasses.js → ChartsAxis/axisClasses.mjs} +0 -0
- /package/{esm/ChartsAxisHighlight/ChartsAxisHighlight.types.d.ts → ChartsAxisHighlight/ChartsAxisHighlight.types.d.mts} +0 -0
- /package/{esm/ChartsAxisHighlight/ChartsAxisHighlight.types.js → ChartsAxisHighlight/ChartsAxisHighlight.types.mjs} +0 -0
- /package/{esm/ChartsAxisHighlight/ChartsAxisHighlightPath.js → ChartsAxisHighlight/ChartsAxisHighlightPath.mjs} +0 -0
- /package/{esm/ChartsAxisHighlight/chartsAxisHighlightClasses.d.ts → ChartsAxisHighlight/chartsAxisHighlightClasses.d.mts} +0 -0
- /package/{esm/ChartsAxisHighlight/chartsAxisHighlightClasses.js → ChartsAxisHighlight/chartsAxisHighlightClasses.mjs} +0 -0
- /package/{esm/ChartsBrushOverlay/ChartsBrushOverlay.classes.d.ts → ChartsBrushOverlay/ChartsBrushOverlay.classes.d.mts} +0 -0
- /package/{esm/ChartsBrushOverlay/ChartsBrushOverlay.classes.js → ChartsBrushOverlay/ChartsBrushOverlay.classes.mjs} +0 -0
- /package/{esm/ChartsBrushOverlay/ChartsBrushOverlay.d.ts → ChartsBrushOverlay/ChartsBrushOverlay.d.mts} +0 -0
- /package/{esm/ChartsClipPath/ChartsClipPath.d.ts → ChartsClipPath/ChartsClipPath.d.mts} +0 -0
- /package/{esm/ChartsGrid/chartsGridClasses.d.ts → ChartsGrid/chartsGridClasses.d.mts} +0 -0
- /package/{esm/ChartsGrid/chartsGridClasses.js → ChartsGrid/chartsGridClasses.mjs} +0 -0
- /package/{esm/ChartsGrid/styledComponents.d.ts → ChartsGrid/styledComponents.d.mts} +0 -0
- /package/{esm/ChartsLabel/labelClasses.js → ChartsLabel/labelClasses.mjs} +0 -0
- /package/{esm/ChartsLabel/labelGradientClasses.js → ChartsLabel/labelGradientClasses.mjs} +0 -0
- /package/{esm/ChartsLabel/labelMarkClasses.js → ChartsLabel/labelMarkClasses.mjs} +0 -0
- /package/{esm/ChartsLegend/chartsLegend.types.js → ChartsLegend/chartsLegend.types.mjs} +0 -0
- /package/{esm/ChartsLegend/chartsLegendClasses.js → ChartsLegend/chartsLegendClasses.mjs} +0 -0
- /package/{esm/ChartsLegend/colorLegend.types.js → ChartsLegend/colorLegend.types.mjs} +0 -0
- /package/{esm/ChartsLegend/continuousColorLegendClasses.js → ChartsLegend/continuousColorLegendClasses.mjs} +0 -0
- /package/{esm/ChartsLegend/direction.d.ts → ChartsLegend/direction.d.mts} +0 -0
- /package/{esm/ChartsLegend/direction.js → ChartsLegend/direction.mjs} +0 -0
- /package/{esm/ChartsLegend/legend.types.js → ChartsLegend/legend.types.mjs} +0 -0
- /package/{esm/ChartsLegend/legendContext.types.js → ChartsLegend/legendContext.types.mjs} +0 -0
- /package/{esm/ChartsLegend/onClickContextBuilder.js → ChartsLegend/onClickContextBuilder.mjs} +0 -0
- /package/{esm/ChartsLegend/piecewiseColorDefaultLabelFormatter.js → ChartsLegend/piecewiseColorDefaultLabelFormatter.mjs} +0 -0
- /package/{esm/ChartsLegend/piecewiseColorLegend.types.d.ts → ChartsLegend/piecewiseColorLegend.types.d.mts} +0 -0
- /package/{esm/ChartsLegend/piecewiseColorLegend.types.js → ChartsLegend/piecewiseColorLegend.types.mjs} +0 -0
- /package/{esm/ChartsLegend/piecewiseColorLegendClasses.js → ChartsLegend/piecewiseColorLegendClasses.mjs} +0 -0
- /package/{esm/ChartsOverlay/ChartsOverlay.d.ts → ChartsOverlay/ChartsOverlay.d.mts} +0 -0
- /package/{esm/ChartsReferenceLine/chartsReferenceLineClasses.d.ts → ChartsReferenceLine/chartsReferenceLineClasses.d.mts} +0 -0
- /package/{esm/ChartsReferenceLine/chartsReferenceLineClasses.js → ChartsReferenceLine/chartsReferenceLineClasses.mjs} +0 -0
- /package/{esm/ChartsSurface/chartsSurfaceClasses.d.ts → ChartsSurface/chartsSurfaceClasses.d.mts} +0 -0
- /package/{esm/ChartsSurface/chartsSurfaceClasses.js → ChartsSurface/chartsSurfaceClasses.mjs} +0 -0
- /package/{esm/ChartsTooltip/ChartTooltip.types.js → ChartsTooltip/ChartTooltip.types.mjs} +0 -0
- /package/{esm/ChartsTooltip/ChartsTooltipTable.d.ts → ChartsTooltip/ChartsTooltipTable.d.mts} +0 -0
- /package/{esm/ChartsTooltip/chartsTooltipClasses.d.ts → ChartsTooltip/chartsTooltipClasses.d.mts} +0 -0
- /package/{esm/ChartsTooltip/chartsTooltipClasses.js → ChartsTooltip/chartsTooltipClasses.mjs} +0 -0
- /package/{esm/ChartsTooltip/utils.d.ts → ChartsTooltip/utils.d.mts} +0 -0
- /package/{esm/Gauge/GaugeProvider.d.ts → Gauge/GaugeProvider.d.mts} +0 -0
- /package/{esm/Gauge/GaugeReferenceArc.d.ts → Gauge/GaugeReferenceArc.d.mts} +0 -0
- /package/{esm/Gauge/GaugeValueArc.d.ts → Gauge/GaugeValueArc.d.mts} +0 -0
- /package/{esm/Gauge/gaugeClasses.d.ts → Gauge/gaugeClasses.d.mts} +0 -0
- /package/{esm/Gauge/gaugeClasses.js → Gauge/gaugeClasses.mjs} +0 -0
- /package/{esm/Gauge/utils.d.ts → Gauge/utils.d.mts} +0 -0
- /package/{esm/LineChart/FocusedLineMark.d.ts → LineChart/FocusedLineMark.d.mts} +0 -0
- /package/{esm/LineChart/markElementClasses.js → LineChart/markElementClasses.mjs} +0 -0
- /package/{esm/LineChart/seriesConfig/getSeriesWithDefaultValues.js → LineChart/seriesConfig/getSeriesWithDefaultValues.mjs} +0 -0
- /package/{esm/LineChart/seriesConfig/tooltipPosition.js → LineChart/seriesConfig/tooltipPosition.mjs} +0 -0
- /package/{esm/PieChart/pieClasses.d.ts → PieChart/pieClasses.d.mts} +0 -0
- /package/{esm/PieChart/pieClasses.js → PieChart/pieClasses.mjs} +0 -0
- /package/{esm/PieChart/seriesConfig/getColor.js → PieChart/seriesConfig/getColor.mjs} +0 -0
- /package/{esm/PieChart/seriesConfig/getSeriesWithDefaultValues.js → PieChart/seriesConfig/getSeriesWithDefaultValues.mjs} +0 -0
- /package/{esm/RadarChart/FocusedRadarMark.d.ts → RadarChart/FocusedRadarMark.d.mts} +0 -0
- /package/{esm/RadarChart/RadarAxis/RadarAxis.utils.js → RadarChart/RadarAxis/RadarAxis.utils.mjs} +0 -0
- /package/{esm/RadarChart/RadarAxis/radarAxisClasses.d.ts → RadarChart/RadarAxis/radarAxisClasses.d.mts} +0 -0
- /package/{esm/RadarChart/RadarAxis/radarAxisClasses.js → RadarChart/RadarAxis/radarAxisClasses.mjs} +0 -0
- /package/{esm/RadarChart/RadarAxis/useRadarAxis.d.ts → RadarChart/RadarAxis/useRadarAxis.d.mts} +0 -0
- /package/{esm/RadarChart/RadarAxisHighlight/radarAxisHighlightClasses.d.ts → RadarChart/RadarAxisHighlight/radarAxisHighlightClasses.d.mts} +0 -0
- /package/{esm/RadarChart/RadarAxisHighlight/radarAxisHighlightClasses.js → RadarChart/RadarAxisHighlight/radarAxisHighlightClasses.mjs} +0 -0
- /package/{esm/RadarChart/RadarDataProvider/radar.types.js → RadarChart/RadarDataProvider/radar.types.mjs} +0 -0
- /package/{esm/RadarChart/RadarGrid/CircularRadarGrid.js → RadarChart/RadarGrid/CircularRadarGrid.mjs} +0 -0
- /package/{esm/RadarChart/RadarGrid/CircularRadarStripes.js → RadarChart/RadarGrid/CircularRadarStripes.mjs} +0 -0
- /package/{esm/RadarChart/RadarGrid/RadarGrid.types.js → RadarChart/RadarGrid/RadarGrid.types.mjs} +0 -0
- /package/{esm/RadarChart/RadarGrid/SharpRadarGrid.js → RadarChart/RadarGrid/SharpRadarGrid.mjs} +0 -0
- /package/{esm/RadarChart/RadarGrid/SharpRadarStripes.js → RadarChart/RadarGrid/SharpRadarStripes.mjs} +0 -0
- /package/{esm/RadarChart/RadarGrid/radarGridClasses.d.ts → RadarChart/RadarGrid/radarGridClasses.d.mts} +0 -0
- /package/{esm/RadarChart/RadarGrid/radarGridClasses.js → RadarChart/RadarGrid/radarGridClasses.mjs} +0 -0
- /package/{esm/RadarChart/RadarGrid/useRadarGridData.d.ts → RadarChart/RadarGrid/useRadarGridData.d.mts} +0 -0
- /package/{esm/RadarChart/RadarMetricLabels/RadarMetricLabels.d.ts → RadarChart/RadarMetricLabels/RadarMetricLabels.d.mts} +0 -0
- /package/{esm/RadarChart/RadarMetricLabels/useRadarMetricData.d.ts → RadarChart/RadarMetricLabels/useRadarMetricData.d.mts} +0 -0
- /package/{esm/RadarChart/RadarSeriesPlot/RadarSeriesPlot.types.js → RadarChart/RadarSeriesPlot/RadarSeriesPlot.types.mjs} +0 -0
- /package/{esm/RadarChart/RadarSeriesPlot/getAreaPath.d.ts → RadarChart/RadarSeriesPlot/getAreaPath.d.mts} +0 -0
- /package/{esm/RadarChart/RadarSeriesPlot/getAreaPath.js → RadarChart/RadarSeriesPlot/getAreaPath.mjs} +0 -0
- /package/{esm/RadarChart/RadarSeriesPlot/radarSeriesPlotClasses.js → RadarChart/RadarSeriesPlot/radarSeriesPlotClasses.mjs} +0 -0
- /package/{esm/RadarChart/RadarSeriesPlot/useRadarRotationIndex.d.ts → RadarChart/RadarSeriesPlot/useRadarRotationIndex.d.mts} +0 -0
- /package/{esm/RadarChart/seriesConfig/extremums.js → RadarChart/seriesConfig/extremums.mjs} +0 -0
- /package/{esm/RadarChart/seriesConfig/getSeriesWithDefaultValues.js → RadarChart/seriesConfig/getSeriesWithDefaultValues.mjs} +0 -0
- /package/{esm/RadarChart/seriesConfig/seriesProcessor.js → RadarChart/seriesConfig/seriesProcessor.mjs} +0 -0
- /package/{esm/ScatterChart/FocusedScatterMark.d.ts → ScatterChart/FocusedScatterMark.d.mts} +0 -0
- /package/{esm/ScatterChart/ScatterMarker.js → ScatterChart/ScatterMarker.mjs} +0 -0
- /package/{esm/ScatterChart/ScatterMarker.types.js → ScatterChart/ScatterMarker.types.mjs} +0 -0
- /package/{esm/ScatterChart/scatterClasses.d.ts → ScatterChart/scatterClasses.d.mts} +0 -0
- /package/{esm/ScatterChart/scatterClasses.js → ScatterChart/scatterClasses.mjs} +0 -0
- /package/{esm/ScatterChart/seriesConfig/extremums.js → ScatterChart/seriesConfig/extremums.mjs} +0 -0
- /package/{esm/ScatterChart/seriesConfig/getSeriesWithDefaultValues.js → ScatterChart/seriesConfig/getSeriesWithDefaultValues.mjs} +0 -0
- /package/{esm/ScatterChart/seriesConfig/tooltipPosition.js → ScatterChart/seriesConfig/tooltipPosition.mjs} +0 -0
- /package/{esm/Toolbar/Toolbar.d.ts → Toolbar/Toolbar.d.mts} +0 -0
- /package/{esm/Toolbar/Toolbar.types.d.ts → Toolbar/Toolbar.types.d.mts} +0 -0
- /package/{esm/Toolbar/Toolbar.types.js → Toolbar/Toolbar.types.mjs} +0 -0
- /package/{esm/Toolbar/chartToolbarClasses.d.ts → Toolbar/chartToolbarClasses.d.mts} +0 -0
- /package/{esm/Toolbar/chartToolbarClasses.js → Toolbar/chartToolbarClasses.mjs} +0 -0
- /package/{esm/colorPalettes/categorical/blueberryTwilight.js → colorPalettes/categorical/blueberryTwilight.mjs} +0 -0
- /package/{esm/colorPalettes/categorical/cheerfulFiesta.js → colorPalettes/categorical/cheerfulFiesta.mjs} +0 -0
- /package/{esm/colorPalettes/categorical/mangoFusion.js → colorPalettes/categorical/mangoFusion.mjs} +0 -0
- /package/{esm/colorPalettes/categorical/rainbowSurge.js → colorPalettes/categorical/rainbowSurge.mjs} +0 -0
- /package/{esm/colorPalettes/sequential/blue.js → colorPalettes/sequential/blue.mjs} +0 -0
- /package/{esm/colorPalettes/sequential/cyan.js → colorPalettes/sequential/cyan.mjs} +0 -0
- /package/{esm/colorPalettes/sequential/green.js → colorPalettes/sequential/green.mjs} +0 -0
- /package/{esm/colorPalettes/sequential/orange.js → colorPalettes/sequential/orange.mjs} +0 -0
- /package/{esm/colorPalettes/sequential/pink.js → colorPalettes/sequential/pink.mjs} +0 -0
- /package/{esm/colorPalettes/sequential/purple.js → colorPalettes/sequential/purple.mjs} +0 -0
- /package/{esm/colorPalettes/sequential/red.js → colorPalettes/sequential/red.mjs} +0 -0
- /package/{esm/colorPalettes/sequential/strawberrySky.js → colorPalettes/sequential/strawberrySky.mjs} +0 -0
- /package/{esm/colorPalettes/sequential/yellow.js → colorPalettes/sequential/yellow.mjs} +0 -0
- /package/{esm/colorPalettes/types.d.ts → colorPalettes/types.d.mts} +0 -0
- /package/{esm/colorPalettes/types.js → colorPalettes/types.mjs} +0 -0
- /package/{esm/constants/index.d.ts → constants/index.d.mts} +0 -0
- /package/{esm/constants/index.js → constants/index.mjs} +0 -0
- /package/{esm/context/ChartApi.js → context/ChartApi.mjs} +0 -0
- /package/{esm/context/ChartProvider/ChartProvider.types.js → context/ChartProvider/ChartProvider.types.mjs} +0 -0
- /package/{esm/internals/plugins/corePlugins/useChartAnimation/useChartAnimation.types.js → context/ChartsProvider/ChartsProvider.types.mjs} +0 -0
- /package/{esm/hooks/animation/useAnimate.d.ts → hooks/animation/useAnimate.d.mts} +0 -0
- /package/{esm/hooks/animation/useAnimateGaugeValueArc.d.ts → hooks/animation/useAnimateGaugeValueArc.d.mts} +0 -0
- /package/{esm/hooks/useAxisSystem.d.ts → hooks/useAxisSystem.d.mts} +0 -0
- /package/{esm/hooks/useBrush.d.ts → hooks/useBrush.d.mts} +0 -0
- /package/{esm/hooks/useChartId.d.ts → hooks/useChartId.d.mts} +0 -0
- /package/{esm/hooks/useChartRootRef.d.ts → hooks/useChartRootRef.d.mts} +0 -0
- /package/{esm/hooks/useDrawingArea.d.ts → hooks/useDrawingArea.d.mts} +0 -0
- /package/{esm/hooks/useIsHydrated.d.ts → hooks/useIsHydrated.d.mts} +0 -0
- /package/{esm/hooks/useIsHydrated.js → hooks/useIsHydrated.mjs} +0 -0
- /package/{esm/hooks/useMounted.d.ts → hooks/useMounted.d.mts} +0 -0
- /package/{esm/hooks/useMounted.js → hooks/useMounted.mjs} +0 -0
- /package/{esm/hooks/useSkipAnimation.d.ts → hooks/useSkipAnimation.d.mts} +0 -0
- /package/{esm/internals/Flatbush.d.ts → internals/Flatbush.d.mts} +0 -0
- /package/{esm/internals/angleConversion.d.ts → internals/angleConversion.d.mts} +0 -0
- /package/{esm/internals/angleConversion.js → internals/angleConversion.mjs} +0 -0
- /package/{esm/internals/animation/animation.d.ts → internals/animation/animation.d.mts} +0 -0
- /package/{esm/internals/animation/animation.js → internals/animation/animation.mjs} +0 -0
- /package/{esm/internals/animation/useAnimateInternal.d.ts → internals/animation/useAnimateInternal.d.mts} +0 -0
- /package/{esm/internals/appendAtKey.d.ts → internals/appendAtKey.d.mts} +0 -0
- /package/{esm/internals/appendAtKey.js → internals/appendAtKey.mjs} +0 -0
- /package/{esm/internals/clampAngle.d.ts → internals/clampAngle.d.mts} +0 -0
- /package/{esm/internals/clampAngle.js → internals/clampAngle.mjs} +0 -0
- /package/{esm/internals/cleanId.d.ts → internals/cleanId.d.mts} +0 -0
- /package/{esm/internals/cleanId.js → internals/cleanId.mjs} +0 -0
- /package/{esm/internals/colorScale.js → internals/colorScale.mjs} +0 -0
- /package/{esm/internals/components/AxisSharedComponents.d.ts → internals/components/AxisSharedComponents.d.mts} +0 -0
- /package/{esm/internals/components/ChartsAxesGradients/ChartsAxesGradients.d.ts → internals/components/ChartsAxesGradients/ChartsAxesGradients.d.mts} +0 -0
- /package/{esm/internals/components/ChartsAxesGradients/ChartsContinuousGradient.js → internals/components/ChartsAxesGradients/ChartsContinuousGradient.mjs} +0 -0
- /package/{esm/internals/components/ChartsAxesGradients/ChartsContinuousGradientObjectBound.js → internals/components/ChartsAxesGradients/ChartsContinuousGradientObjectBound.mjs} +0 -0
- /package/{esm/internals/components/ChartsAxesGradients/ChartsPiecewiseGradient.js → internals/components/ChartsAxesGradients/ChartsPiecewiseGradient.mjs} +0 -0
- /package/{esm/internals/components/NotRendered.d.ts → internals/components/NotRendered.d.mts} +0 -0
- /package/{esm/internals/constants.js → internals/constants.mjs} +0 -0
- /package/{esm/internals/consumeSlots.d.ts → internals/consumeSlots.d.mts} +0 -0
- /package/{esm/internals/consumeSlots.js → internals/consumeSlots.mjs} +0 -0
- /package/{esm/internals/consumeThemeProps.d.ts → internals/consumeThemeProps.d.mts} +0 -0
- /package/{esm/internals/consumeThemeProps.js → internals/consumeThemeProps.mjs} +0 -0
- /package/{esm/internals/createSvgIcon.js → internals/createSvgIcon.mjs} +0 -0
- /package/{esm/internals/dateHelpers.js → internals/dateHelpers.mjs} +0 -0
- /package/{esm/internals/defaultValueFormatters.js → internals/defaultValueFormatters.mjs} +0 -0
- /package/{esm/internals/defaultizeMargin.js → internals/defaultizeMargin.mjs} +0 -0
- /package/{esm/internals/degToRad.d.ts → internals/degToRad.d.mts} +0 -0
- /package/{esm/internals/degToRad.js → internals/degToRad.mjs} +0 -0
- /package/{esm/internals/domUtils.d.ts → internals/domUtils.d.mts} +0 -0
- /package/{esm/internals/domUtils.js → internals/domUtils.mjs} +0 -0
- /package/{esm/internals/ellipsize.d.ts → internals/ellipsize.d.mts} +0 -0
- /package/{esm/internals/findMinMax.d.ts → internals/findMinMax.d.mts} +0 -0
- /package/{esm/internals/findMinMax.js → internals/findMinMax.mjs} +0 -0
- /package/{esm/internals/geometry.d.ts → internals/geometry.d.mts} +0 -0
- /package/{esm/internals/getBandSize.d.ts → internals/getBandSize.d.mts} +0 -0
- /package/{esm/internals/getBandSize.js → internals/getBandSize.mjs} +0 -0
- /package/{esm/internals/getChartPoint.d.ts → internals/getChartPoint.d.mts} +0 -0
- /package/{esm/internals/getChartPoint.js → internals/getChartPoint.mjs} +0 -0
- /package/{esm/internals/getCurve.js → internals/getCurve.mjs} +0 -0
- /package/{esm/internals/getGraphemeCount.d.ts → internals/getGraphemeCount.d.mts} +0 -0
- /package/{esm/internals/getLabel.d.ts → internals/getLabel.d.mts} +0 -0
- /package/{esm/internals/getLabel.js → internals/getLabel.mjs} +0 -0
- /package/{esm/internals/getPercentageValue.d.ts → internals/getPercentageValue.d.mts} +0 -0
- /package/{esm/internals/getSeriesColorFn.js → internals/getSeriesColorFn.mjs} +0 -0
- /package/{esm/internals/getSymbol.d.ts → internals/getSymbol.d.mts} +0 -0
- /package/{esm/internals/getSymbol.js → internals/getSymbol.mjs} +0 -0
- /package/{esm/internals/getWordsByLines.d.ts → internals/getWordsByLines.d.mts} +0 -0
- /package/{esm/internals/identifierCleaner.js → internals/identifierCleaner.mjs} +0 -0
- /package/{esm/internals/identifierSerializer.js → internals/identifierSerializer.mjs} +0 -0
- /package/{esm/internals/invertTextAnchor.js → internals/invertTextAnchor.mjs} +0 -0
- /package/{esm/internals/isDefined.d.ts → internals/isDefined.d.mts} +0 -0
- /package/{esm/internals/isDefined.js → internals/isDefined.mjs} +0 -0
- /package/{esm/internals/isInfinity.d.ts → internals/isInfinity.d.mts} +0 -0
- /package/{esm/internals/isInfinity.js → internals/isInfinity.mjs} +0 -0
- /package/{esm/internals/material/index.js → internals/material/index.mjs} +0 -0
- /package/{esm/internals/plugins/corePlugins/useChartAnimation/useChartAnimation.js → internals/plugins/corePlugins/useChartAnimation/useChartAnimation.mjs} +0 -0
- /package/{esm/internals/plugins/corePlugins/useChartAnimation/useChartAnimation.selectors.js → internals/plugins/corePlugins/useChartAnimation/useChartAnimation.selectors.mjs} +0 -0
- /package/{esm/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.types.js → internals/plugins/corePlugins/useChartAnimation/useChartAnimation.types.mjs} +0 -0
- /package/{esm/internals/plugins/corePlugins/useChartElementRef/useChartElementRef.types.js → internals/plugins/corePlugins/useChartDimensions/useChartDimensions.types.mjs} +0 -0
- /package/{esm/internals/plugins/corePlugins/useChartExperimentalFeature/useChartExperimentalFeature.types.js → internals/plugins/corePlugins/useChartElementRef/useChartElementRef.types.mjs} +0 -0
- /package/{esm/internals/plugins/corePlugins/useChartExperimentalFeature/useChartExperimentalFeature.js → internals/plugins/corePlugins/useChartExperimentalFeature/useChartExperimentalFeature.mjs} +0 -0
- /package/{esm/internals/plugins/corePlugins/useChartExperimentalFeature/useChartExperimentalFeature.selectors.js → internals/plugins/corePlugins/useChartExperimentalFeature/useChartExperimentalFeature.selectors.mjs} +0 -0
- /package/{esm/internals/plugins/corePlugins/useChartId/useChartId.types.js → internals/plugins/corePlugins/useChartExperimentalFeature/useChartExperimentalFeature.types.mjs} +0 -0
- /package/{esm/internals/plugins/corePlugins/useChartId/useChartId.selectors.js → internals/plugins/corePlugins/useChartId/useChartId.selectors.mjs} +0 -0
- /package/{esm/internals/plugins/corePlugins/useChartInteractionListener/useChartInteractionListener.types.js → internals/plugins/corePlugins/useChartId/useChartId.types.mjs} +0 -0
- /package/{esm/internals/plugins/corePlugins/useChartId/useChartId.utils.d.ts → internals/plugins/corePlugins/useChartId/useChartId.utils.d.mts} +0 -0
- /package/{esm/internals/plugins/corePlugins/useChartId/useChartId.utils.js → internals/plugins/corePlugins/useChartId/useChartId.utils.mjs} +0 -0
- /package/{esm/internals/plugins/corePlugins/useChartSeries/useChartSeries.types.js → internals/plugins/corePlugins/useChartInteractionListener/useChartInteractionListener.types.mjs} +0 -0
- /package/{esm/internals/plugins/corePlugins/useChartSeriesConfig/types/cartesianExtremumGetter.types.js → internals/plugins/corePlugins/useChartSeries/useChartSeries.types.mjs} +0 -0
- /package/{esm/internals/plugins/corePlugins/useChartSeriesConfig/types/colorProcessor.types.js → internals/plugins/corePlugins/useChartSeriesConfig/types/cartesianExtremumGetter.types.mjs} +0 -0
- /package/{esm/internals/plugins/corePlugins/useChartSeriesConfig/types/getItemAtPosition.types.js → internals/plugins/corePlugins/useChartSeriesConfig/types/colorProcessor.types.mjs} +0 -0
- /package/{esm/internals/plugins/corePlugins/useChartSeriesConfig/types/getSeriesWithDefaultValues.types.js → internals/plugins/corePlugins/useChartSeriesConfig/types/getItemAtPosition.types.mjs} +0 -0
- /package/{esm/internals/plugins/corePlugins/useChartSeriesConfig/types/identifierCleaner.types.js → internals/plugins/corePlugins/useChartSeriesConfig/types/getSeriesWithDefaultValues.types.mjs} +0 -0
- /package/{esm/internals/plugins/corePlugins/useChartSeriesConfig/types/identifierSerializer.types.js → internals/plugins/corePlugins/useChartSeriesConfig/types/identifierCleaner.types.mjs} +0 -0
- /package/{esm/internals/plugins/corePlugins/useChartSeriesConfig/types/legendGetter.types.js → internals/plugins/corePlugins/useChartSeriesConfig/types/identifierSerializer.types.mjs} +0 -0
- /package/{esm/internals/plugins/corePlugins/useChartSeriesConfig/types/polarExtremumGetter.types.js → internals/plugins/corePlugins/useChartSeriesConfig/types/legendGetter.types.mjs} +0 -0
- /package/{esm/internals/plugins/corePlugins/useChartSeriesConfig/types/seriesConfig.types.js → internals/plugins/corePlugins/useChartSeriesConfig/types/polarExtremumGetter.types.mjs} +0 -0
- /package/{esm/internals/plugins/corePlugins/useChartSeriesConfig/types/seriesLayout.types.js → internals/plugins/corePlugins/useChartSeriesConfig/types/seriesConfig.types.mjs} +0 -0
- /package/{esm/internals/plugins/corePlugins/useChartSeriesConfig/types/seriesProcessor.types.js → internals/plugins/corePlugins/useChartSeriesConfig/types/seriesLayout.types.mjs} +0 -0
- /package/{esm/internals/plugins/corePlugins/useChartSeriesConfig/types/tooltipGetter.types.js → internals/plugins/corePlugins/useChartSeriesConfig/types/seriesProcessor.types.mjs} +0 -0
- /package/{esm/internals/plugins/corePlugins/useChartSeriesConfig/types/tooltipItemPositionGetter.types.js → internals/plugins/corePlugins/useChartSeriesConfig/types/tooltipGetter.types.mjs} +0 -0
- /package/{esm/internals/plugins/corePlugins/useChartSeriesConfig/useChartSeriesConfig.types.js → internals/plugins/corePlugins/useChartSeriesConfig/types/tooltipItemPositionGetter.types.mjs} +0 -0
- /package/{esm/internals/plugins/corePlugins/useChartSeriesConfig/useChartSeriesConfig.selectors.js → internals/plugins/corePlugins/useChartSeriesConfig/useChartSeriesConfig.selectors.mjs} +0 -0
- /package/{esm/internals/plugins/featurePlugins/useChartBrush/useChartBrush.types.js → internals/plugins/corePlugins/useChartSeriesConfig/useChartSeriesConfig.types.mjs} +0 -0
- /package/{esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxis.types.js → internals/plugins/featurePlugins/useChartBrush/useChartBrush.types.mjs} +0 -0
- /package/{esm/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisDomainLimit.js → internals/plugins/featurePlugins/useChartCartesianAxis/getAxisDomainLimit.mjs} +0 -0
- /package/{esm/internals/plugins/featurePlugins/useChartCartesianAxis/zoom.types.js → internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxis.types.mjs} +0 -0
- /package/{esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisLayout.selectors.js → internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisLayout.selectors.mjs} +0 -0
- /package/{esm/internals/plugins/featurePlugins/useChartCartesianAxis/useInternalIsZoomInteracting.d.ts → internals/plugins/featurePlugins/useChartCartesianAxis/useInternalIsZoomInteracting.d.mts} +0 -0
- /package/{esm/internals/plugins/featurePlugins/useChartCartesianAxis/zoom.d.ts → internals/plugins/featurePlugins/useChartCartesianAxis/zoom.d.mts} +0 -0
- /package/{esm/internals/plugins/featurePlugins/useChartCartesianAxis/zoom.js → internals/plugins/featurePlugins/useChartCartesianAxis/zoom.mjs} +0 -0
- /package/{esm/internals/plugins/featurePlugins/useChartClosestPoint/useChartClosestPoint.types.js → internals/plugins/featurePlugins/useChartCartesianAxis/zoom.types.mjs} +0 -0
- /package/{esm/internals/plugins/featurePlugins/useChartClosestPoint/useChartClosestPoint.selectors.js → internals/plugins/featurePlugins/useChartClosestPoint/useChartClosestPoint.selectors.mjs} +0 -0
- /package/{esm/internals/plugins/featurePlugins/useChartHighlight/highlightConfig.types.js → internals/plugins/featurePlugins/useChartClosestPoint/useChartClosestPoint.types.mjs} +0 -0
- /package/{esm/internals/plugins/featurePlugins/useChartHighlight/highlightConfig.types.d.ts → internals/plugins/featurePlugins/useChartHighlight/highlightConfig.types.d.mts} +0 -0
- /package/{esm/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.types.js → internals/plugins/featurePlugins/useChartHighlight/highlightConfig.types.mjs} +0 -0
- /package/{esm/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.types.js → internals/plugins/featurePlugins/useChartHighlight/highlightCreator.types.mjs} +0 -0
- /package/{esm/internals/plugins/featurePlugins/useChartItemClick/useChartItemClick.types.js → internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.types.mjs} +0 -0
- /package/{esm/internals/plugins/featurePlugins/useChartInteraction/checkHasInteractionPlugin.js → internals/plugins/featurePlugins/useChartInteraction/checkHasInteractionPlugin.mjs} +0 -0
- /package/{esm/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.js → internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.mjs} +0 -0
- /package/{esm/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.selectors.js → internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.selectors.mjs} +0 -0
- /package/{esm/internals/plugins/featurePlugins/useChartKeyboardNavigation/keyboardFocusHandler.types.js → internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.types.mjs} +0 -0
- /package/{esm/internals/plugins/featurePlugins/useChartKeyboardNavigation/useChartKeyboardNavigation.types.js → internals/plugins/featurePlugins/useChartItemClick/useChartItemClick.types.mjs} +0 -0
- /package/{esm/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarAxis.types.js → internals/plugins/featurePlugins/useChartKeyboardNavigation/keyboardFocusHandler.types.mjs} +0 -0
- /package/{esm/internals/plugins/featurePlugins/useChartTooltip/useChartTooltip.types.js → internals/plugins/featurePlugins/useChartKeyboardNavigation/useChartKeyboardNavigation.types.mjs} +0 -0
- /package/{esm/internals/plugins/featurePlugins/useChartKeyboardNavigation/utils/getMaxSeriesLength.js → internals/plugins/featurePlugins/useChartKeyboardNavigation/utils/getMaxSeriesLength.mjs} +0 -0
- /package/{esm/internals/plugins/featurePlugins/useChartKeyboardNavigation/utils/getNonEmptySeriesArray.js → internals/plugins/featurePlugins/useChartKeyboardNavigation/utils/getNonEmptySeriesArray.mjs} +0 -0
- /package/{esm/internals/plugins/featurePlugins/useChartPolarAxis/coordinateTransformation.d.ts → internals/plugins/featurePlugins/useChartPolarAxis/coordinateTransformation.d.mts} +0 -0
- /package/{esm/internals/plugins/featurePlugins/useChartPolarAxis/coordinateTransformation.js → internals/plugins/featurePlugins/useChartPolarAxis/coordinateTransformation.mjs} +0 -0
- /package/{esm/internals/plugins/featurePlugins/useChartVisibilityManager/useChartVisibilityManager.types.js → internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarAxis.types.mjs} +0 -0
- /package/{esm/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.types.js → internals/plugins/featurePlugins/useChartTooltip/useChartTooltip.types.mjs} +0 -0
- /package/{esm/internals/plugins/models/chart.js → internals/plugins/featurePlugins/useChartVisibilityManager/useChartVisibilityManager.types.mjs} +0 -0
- /package/{esm/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.selectors.js → internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.selectors.mjs} +0 -0
- /package/{esm/internals/plugins/models/helpers.js → internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.types.mjs} +0 -0
- /package/{esm/internals/plugins/models/plugin.js → internals/plugins/models/chart.mjs} +0 -0
- /package/{esm/internals/plugins/utils/selectors.js → internals/plugins/models/helpers.mjs} +0 -0
- /package/{esm/internals/store/useCharts.types.js → internals/plugins/models/plugin.mjs} +0 -0
- /package/{esm/internals/ts-generic.js → internals/plugins/utils/selectors.mjs} +0 -0
- /package/{esm/internals/plugins/utils/useLazySelectorEffect.js → internals/plugins/utils/useLazySelectorEffect.mjs} +0 -0
- /package/{esm/internals/scaleGuards.js → internals/scaleGuards.mjs} +0 -0
- /package/{esm/internals/scales/scaleBand.d.ts → internals/scales/scaleBand.d.mts} +0 -0
- /package/{esm/internals/scales/scaleBand.js → internals/scales/scaleBand.mjs} +0 -0
- /package/{esm/internals/scales/scalePoint.d.ts → internals/scales/scalePoint.d.mts} +0 -0
- /package/{esm/internals/scales/scaleSymlog.d.ts → internals/scales/scaleSymlog.d.mts} +0 -0
- /package/{esm/internals/scales/scaleSymlog.js → internals/scales/scaleSymlog.mjs} +0 -0
- /package/{esm/internals/seriesHasData.js → internals/seriesHasData.mjs} +0 -0
- /package/{esm/internals/shallowEqual.d.ts → internals/shallowEqual.d.mts} +0 -0
- /package/{esm/internals/shallowEqual.js → internals/shallowEqual.mjs} +0 -0
- /package/{esm/internals/sliceUntil.d.ts → internals/sliceUntil.d.mts} +0 -0
- /package/{esm/internals/stacking/offset/offsetDiverging.d.ts → internals/stacking/offset/offsetDiverging.d.mts} +0 -0
- /package/{esm/internals/stacking/offset/offsetDiverging.js → internals/stacking/offset/offsetDiverging.mjs} +0 -0
- /package/{esm/internals/store/extractPluginParamsFromProps.js → internals/store/extractPluginParamsFromProps.mjs} +0 -0
- /package/{esm/locales/utils/chartsLocaleTextApi.js → internals/store/useCharts.types.mjs} +0 -0
- /package/{esm/internals/ticks.js → internals/ticks.mjs} +0 -0
- /package/{esm/internals/ts-generic.d.ts → internals/ts-generic.d.mts} +0 -0
- /package/{esm/models/colorMapping.js → internals/ts-generic.mjs} +0 -0
- /package/{esm/models/curve.js → locales/utils/chartsLocaleTextApi.mjs} +0 -0
- /package/{esm/locales/utils/getChartsLocalization.js → locales/utils/getChartsLocalization.mjs} +0 -0
- /package/{esm/locales/utils/imageMimeTypes.d.ts → locales/utils/imageMimeTypes.d.mts} +0 -0
- /package/{esm/locales/utils/imageMimeTypes.js → locales/utils/imageMimeTypes.mjs} +0 -0
- /package/{esm/models/axis.js → models/axis.mjs} +0 -0
- /package/{esm/models/colorMapping.d.ts → models/colorMapping.d.mts} +0 -0
- /package/{esm/models/featureFlags.js → models/colorMapping.mjs} +0 -0
- /package/{esm/models/curve.d.ts → models/curve.d.mts} +0 -0
- /package/{esm/models/position.js → models/curve.mjs} +0 -0
- /package/{esm/models/featureFlags.d.ts → models/featureFlags.d.mts} +0 -0
- /package/{esm/models/seriesType/bar.js → models/featureFlags.mjs} +0 -0
- /package/{esm/models/position.d.ts → models/position.d.mts} +0 -0
- /package/{esm/models/seriesType/common.js → models/position.mjs} +0 -0
- /package/{esm/models/seriesType/config.js → models/seriesType/bar.mjs} +0 -0
- /package/{esm/models/seriesType/line.js → models/seriesType/common.mjs} +0 -0
- /package/{esm/models/seriesType/pie.js → models/seriesType/config.mjs} +0 -0
- /package/{esm/models/seriesType/radar.js → models/seriesType/line.mjs} +0 -0
- /package/{esm/models/seriesType/scatter.js → models/seriesType/pie.mjs} +0 -0
- /package/{esm/models/slots/chartsBaseSlotProps.js → models/seriesType/radar.mjs} +0 -0
- /package/{esm/models/slots/chartsBaseSlots.js → models/seriesType/scatter.mjs} +0 -0
- /package/{esm/models/slots/chartsBaseSlotProps.d.ts → models/slots/chartsBaseSlotProps.d.mts} +0 -0
- /package/{esm/models/slots/chartsIconSlots.js → models/slots/chartsBaseSlotProps.mjs} +0 -0
- /package/{esm/models/stacking.js → models/slots/chartsBaseSlots.mjs} +0 -0
- /package/{esm/models/slots/chartsIconSlots.d.ts → models/slots/chartsIconSlots.d.mts} +0 -0
- /package/{esm/models/timeTicks.js → models/slots/chartsIconSlots.mjs} +0 -0
- /package/{esm/models/stacking.d.ts → models/stacking.d.mts} +0 -0
- /package/{esm/models/z-axis.js → models/stacking.mjs} +0 -0
- /package/{esm/models/timeTicks.d.ts → models/timeTicks.d.mts} +0 -0
- /package/{esm/moduleAugmentation/barChartBatchRendererOnItemClick.js → models/timeTicks.mjs} +0 -0
- /package/{esm/themeAugmentation/components.js → models/z-axis.mjs} +0 -0
- /package/{esm/tests/constants.js → tests/constants.mjs} +0 -0
- /package/{esm/tests/web-components.js → tests/web-components.mjs} +0 -0
- /package/{esm/themeAugmentation/index.js → themeAugmentation/index.mjs} +0 -0
- /package/{esm/themeAugmentation/overrides.js → themeAugmentation/overrides.mjs} +0 -0
- /package/{esm/themeAugmentation/props.js → themeAugmentation/props.mjs} +0 -0
- /package/{esm/utils/timeTicks.js → utils/timeTicks.mjs} +0 -0
package/esm/BarChart/BarChart.js
DELETED
|
@@ -1,1220 +0,0 @@
|
|
|
1
|
-
'use client';
|
|
2
|
-
|
|
3
|
-
import _extends from "@babel/runtime/helpers/esm/extends";
|
|
4
|
-
import * as React from 'react';
|
|
5
|
-
import PropTypes from 'prop-types';
|
|
6
|
-
import { useThemeProps } from '@mui/material/styles';
|
|
7
|
-
import { BarPlot } from "./BarPlot.js";
|
|
8
|
-
import { ChartsAxis } from "../ChartsAxis/index.js";
|
|
9
|
-
import { ChartsTooltip } from "../ChartsTooltip/index.js";
|
|
10
|
-
import { ChartsLegend } from "../ChartsLegend/index.js";
|
|
11
|
-
import { ChartsAxisHighlight } from "../ChartsAxisHighlight/index.js";
|
|
12
|
-
import { ChartsClipPath } from "../ChartsClipPath/index.js";
|
|
13
|
-
import { ChartsGrid } from "../ChartsGrid/index.js";
|
|
14
|
-
import { ChartsOverlay } from "../ChartsOverlay/ChartsOverlay.js";
|
|
15
|
-
import { useBarChartProps } from "./useBarChartProps.js";
|
|
16
|
-
import { ChartDataProvider } from "../ChartDataProvider/index.js";
|
|
17
|
-
import { ChartsSurface } from "../ChartsSurface/index.js";
|
|
18
|
-
import { useChartContainerProps } from "../ChartContainer/useChartContainerProps.js";
|
|
19
|
-
import { ChartsWrapper } from "../ChartsWrapper/index.js";
|
|
20
|
-
import { FocusedBar } from "./FocusedBar.js";
|
|
21
|
-
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
22
|
-
/**
|
|
23
|
-
* Demos:
|
|
24
|
-
*
|
|
25
|
-
* - [Bars](https://mui.com/x/react-charts/bars/)
|
|
26
|
-
* - [Bar demonstration](https://mui.com/x/react-charts/bar-demo/)
|
|
27
|
-
* - [Stacking](https://mui.com/x/react-charts/stacking/)
|
|
28
|
-
*
|
|
29
|
-
* API:
|
|
30
|
-
*
|
|
31
|
-
* - [BarChart API](https://mui.com/x/api/charts/bar-chart/)
|
|
32
|
-
*/
|
|
33
|
-
const BarChart = /*#__PURE__*/React.forwardRef(function BarChart(inProps, ref) {
|
|
34
|
-
const props = useThemeProps({
|
|
35
|
-
props: inProps,
|
|
36
|
-
name: 'MuiBarChart'
|
|
37
|
-
});
|
|
38
|
-
const {
|
|
39
|
-
chartsWrapperProps,
|
|
40
|
-
chartContainerProps,
|
|
41
|
-
barPlotProps,
|
|
42
|
-
gridProps,
|
|
43
|
-
clipPathProps,
|
|
44
|
-
clipPathGroupProps,
|
|
45
|
-
overlayProps,
|
|
46
|
-
chartsAxisProps,
|
|
47
|
-
axisHighlightProps,
|
|
48
|
-
legendProps,
|
|
49
|
-
children
|
|
50
|
-
} = useBarChartProps(props);
|
|
51
|
-
const {
|
|
52
|
-
chartDataProviderProps,
|
|
53
|
-
chartsSurfaceProps
|
|
54
|
-
} = useChartContainerProps(chartContainerProps, ref);
|
|
55
|
-
const Tooltip = props.slots?.tooltip ?? ChartsTooltip;
|
|
56
|
-
const Toolbar = props.slots?.toolbar;
|
|
57
|
-
return /*#__PURE__*/_jsx(ChartDataProvider, _extends({}, chartDataProviderProps, {
|
|
58
|
-
children: /*#__PURE__*/_jsxs(ChartsWrapper, _extends({}, chartsWrapperProps, {
|
|
59
|
-
children: [props.showToolbar && Toolbar ? /*#__PURE__*/_jsx(Toolbar, _extends({}, props.slotProps?.toolbar)) : null, !props.hideLegend && /*#__PURE__*/_jsx(ChartsLegend, _extends({}, legendProps)), /*#__PURE__*/_jsxs(ChartsSurface, _extends({}, chartsSurfaceProps, {
|
|
60
|
-
children: [/*#__PURE__*/_jsx(ChartsGrid, _extends({}, gridProps)), /*#__PURE__*/_jsxs("g", _extends({}, clipPathGroupProps, {
|
|
61
|
-
children: [/*#__PURE__*/_jsx(BarPlot, _extends({}, barPlotProps)), /*#__PURE__*/_jsx(ChartsOverlay, _extends({}, overlayProps)), /*#__PURE__*/_jsx(ChartsAxisHighlight, _extends({}, axisHighlightProps)), /*#__PURE__*/_jsx(FocusedBar, {})]
|
|
62
|
-
})), /*#__PURE__*/_jsx(ChartsAxis, _extends({}, chartsAxisProps)), /*#__PURE__*/_jsx(ChartsClipPath, _extends({}, clipPathProps)), children]
|
|
63
|
-
})), !props.loading && /*#__PURE__*/_jsx(Tooltip, _extends({}, props.slotProps?.tooltip))]
|
|
64
|
-
}))
|
|
65
|
-
}));
|
|
66
|
-
});
|
|
67
|
-
if (process.env.NODE_ENV !== "production") BarChart.displayName = "BarChart";
|
|
68
|
-
process.env.NODE_ENV !== "production" ? BarChart.propTypes = {
|
|
69
|
-
// ----------------------------- Warning --------------------------------
|
|
70
|
-
// | These PropTypes are generated from the TypeScript type definitions |
|
|
71
|
-
// | To update them edit the TypeScript types and run "pnpm proptypes" |
|
|
72
|
-
// ----------------------------------------------------------------------
|
|
73
|
-
apiRef: PropTypes.shape({
|
|
74
|
-
current: PropTypes.object
|
|
75
|
-
}),
|
|
76
|
-
/**
|
|
77
|
-
* A gap added between axes when multiple axes are rendered on the same side of the chart.
|
|
78
|
-
* @default 0
|
|
79
|
-
*/
|
|
80
|
-
axesGap: PropTypes.number,
|
|
81
|
-
/**
|
|
82
|
-
* The configuration of axes highlight.
|
|
83
|
-
* Default is set to 'band' in the bar direction.
|
|
84
|
-
* Depends on `layout` prop.
|
|
85
|
-
* @see See {@link https://mui.com/x/react-charts/highlighting/ highlighting docs} for more details.
|
|
86
|
-
*/
|
|
87
|
-
axisHighlight: PropTypes.shape({
|
|
88
|
-
x: PropTypes.oneOf(['band', 'line', 'none']),
|
|
89
|
-
y: PropTypes.oneOf(['band', 'line', 'none'])
|
|
90
|
-
}),
|
|
91
|
-
/**
|
|
92
|
-
* @deprecated Use `barLabel` in the chart series instead.
|
|
93
|
-
* If provided, the function will be used to format the label of the bar.
|
|
94
|
-
* It can be set to 'value' to display the current value.
|
|
95
|
-
* @param {BarItem} item The item to format.
|
|
96
|
-
* @param {BarLabelContext} context data about the bar.
|
|
97
|
-
* @returns {string} The formatted label.
|
|
98
|
-
*/
|
|
99
|
-
barLabel: PropTypes.oneOfType([PropTypes.oneOf(['value']), PropTypes.func]),
|
|
100
|
-
/**
|
|
101
|
-
* Defines the border radius of the bar element.
|
|
102
|
-
*/
|
|
103
|
-
borderRadius: PropTypes.number,
|
|
104
|
-
/**
|
|
105
|
-
* Configuration for the brush interaction.
|
|
106
|
-
*/
|
|
107
|
-
brushConfig: PropTypes.shape({
|
|
108
|
-
enabled: PropTypes.bool,
|
|
109
|
-
preventHighlight: PropTypes.bool,
|
|
110
|
-
preventTooltip: PropTypes.bool
|
|
111
|
-
}),
|
|
112
|
-
children: PropTypes.node,
|
|
113
|
-
className: PropTypes.string,
|
|
114
|
-
/**
|
|
115
|
-
* Color palette used to colorize multiple series.
|
|
116
|
-
* @default rainbowSurgePalette
|
|
117
|
-
*/
|
|
118
|
-
colors: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.string), PropTypes.func]),
|
|
119
|
-
/**
|
|
120
|
-
* An array of objects that can be used to populate series and axes data using their `dataKey` property.
|
|
121
|
-
*/
|
|
122
|
-
dataset: PropTypes.arrayOf(PropTypes.object),
|
|
123
|
-
desc: PropTypes.string,
|
|
124
|
-
/**
|
|
125
|
-
* If `true`, the charts will not listen to the mouse move event.
|
|
126
|
-
* It might break interactive features, but will improve performance.
|
|
127
|
-
* @default false
|
|
128
|
-
*/
|
|
129
|
-
disableAxisListener: PropTypes.bool,
|
|
130
|
-
enableKeyboardNavigation: PropTypes.bool,
|
|
131
|
-
/**
|
|
132
|
-
* Option to display a cartesian grid in the background.
|
|
133
|
-
*/
|
|
134
|
-
grid: PropTypes.shape({
|
|
135
|
-
horizontal: PropTypes.bool,
|
|
136
|
-
vertical: PropTypes.bool
|
|
137
|
-
}),
|
|
138
|
-
/**
|
|
139
|
-
* The height of the chart in px. If not defined, it takes the height of the parent element.
|
|
140
|
-
*/
|
|
141
|
-
height: PropTypes.number,
|
|
142
|
-
/**
|
|
143
|
-
* List of hidden series and/or items.
|
|
144
|
-
*
|
|
145
|
-
* Different chart types use different keys.
|
|
146
|
-
*
|
|
147
|
-
* @example
|
|
148
|
-
* ```ts
|
|
149
|
-
* [
|
|
150
|
-
* {
|
|
151
|
-
* type: 'pie',
|
|
152
|
-
* seriesId: 'series-1',
|
|
153
|
-
* dataIndex: 3,
|
|
154
|
-
* },
|
|
155
|
-
* {
|
|
156
|
-
* type: 'line',
|
|
157
|
-
* seriesId: 'series-2',
|
|
158
|
-
* }
|
|
159
|
-
* ]
|
|
160
|
-
* ```
|
|
161
|
-
*/
|
|
162
|
-
hiddenItems: PropTypes.arrayOf(PropTypes.shape({
|
|
163
|
-
dataIndex: PropTypes.number,
|
|
164
|
-
seriesId: PropTypes.string,
|
|
165
|
-
type: PropTypes.oneOf(['bar']).isRequired
|
|
166
|
-
})),
|
|
167
|
-
/**
|
|
168
|
-
* If `true`, the legend is not rendered.
|
|
169
|
-
*/
|
|
170
|
-
hideLegend: PropTypes.bool,
|
|
171
|
-
/**
|
|
172
|
-
* The controlled axis highlight.
|
|
173
|
-
* Identified by the axis id, and data index.
|
|
174
|
-
*/
|
|
175
|
-
highlightedAxis: PropTypes.arrayOf(PropTypes.shape({
|
|
176
|
-
axisId: PropTypes.oneOfType([PropTypes.number, PropTypes.string]).isRequired,
|
|
177
|
-
dataIndex: PropTypes.number.isRequired
|
|
178
|
-
})),
|
|
179
|
-
/**
|
|
180
|
-
* The highlighted item.
|
|
181
|
-
* Used when the highlight is controlled.
|
|
182
|
-
*/
|
|
183
|
-
highlightedItem: PropTypes.shape({
|
|
184
|
-
dataIndex: PropTypes.number,
|
|
185
|
-
seriesId: PropTypes.string.isRequired
|
|
186
|
-
}),
|
|
187
|
-
/**
|
|
188
|
-
* This prop is used to help implement the accessibility logic.
|
|
189
|
-
* If you don't provide this prop. It falls back to a randomly generated id.
|
|
190
|
-
*/
|
|
191
|
-
id: PropTypes.string,
|
|
192
|
-
/**
|
|
193
|
-
* List of initially hidden series and/or items.
|
|
194
|
-
* Used for uncontrolled state.
|
|
195
|
-
*
|
|
196
|
-
* Different chart types use different keys.
|
|
197
|
-
*
|
|
198
|
-
* @example
|
|
199
|
-
* ```ts
|
|
200
|
-
* [
|
|
201
|
-
* {
|
|
202
|
-
* type: 'pie',
|
|
203
|
-
* seriesId: 'series-1',
|
|
204
|
-
* dataIndex: 3,
|
|
205
|
-
* },
|
|
206
|
-
* {
|
|
207
|
-
* type: 'line',
|
|
208
|
-
* seriesId: 'series-2',
|
|
209
|
-
* }
|
|
210
|
-
* ]
|
|
211
|
-
* ```
|
|
212
|
-
*/
|
|
213
|
-
initialHiddenItems: PropTypes.arrayOf(PropTypes.shape({
|
|
214
|
-
dataIndex: PropTypes.number,
|
|
215
|
-
seriesId: PropTypes.string,
|
|
216
|
-
type: PropTypes.oneOf(['bar']).isRequired
|
|
217
|
-
})),
|
|
218
|
-
/**
|
|
219
|
-
* The direction of the bar elements.
|
|
220
|
-
* @default 'vertical'
|
|
221
|
-
*/
|
|
222
|
-
layout: PropTypes.oneOf(['horizontal', 'vertical']),
|
|
223
|
-
/**
|
|
224
|
-
* If `true`, a loading overlay is displayed.
|
|
225
|
-
* @default false
|
|
226
|
-
*/
|
|
227
|
-
loading: PropTypes.bool,
|
|
228
|
-
/**
|
|
229
|
-
* Localized text for chart components.
|
|
230
|
-
*/
|
|
231
|
-
localeText: PropTypes.object,
|
|
232
|
-
/**
|
|
233
|
-
* The margin between the SVG and the drawing area.
|
|
234
|
-
* It's used for leaving some space for extra information such as the x- and y-axis or legend.
|
|
235
|
-
*
|
|
236
|
-
* Accepts a `number` to be used on all sides or an object with the optional properties: `top`, `bottom`, `left`, and `right`.
|
|
237
|
-
*/
|
|
238
|
-
margin: PropTypes.oneOfType([PropTypes.number, PropTypes.shape({
|
|
239
|
-
bottom: PropTypes.number,
|
|
240
|
-
left: PropTypes.number,
|
|
241
|
-
right: PropTypes.number,
|
|
242
|
-
top: PropTypes.number
|
|
243
|
-
})]),
|
|
244
|
-
/**
|
|
245
|
-
* The function called for onClick events.
|
|
246
|
-
* The second argument contains information about all line/bar elements at the current mouse position.
|
|
247
|
-
* @param {MouseEvent} event The mouse event recorded on the `<svg/>` element.
|
|
248
|
-
* @param {null | ChartsAxisData} data The data about the clicked axis and items associated with it.
|
|
249
|
-
*/
|
|
250
|
-
onAxisClick: PropTypes.func,
|
|
251
|
-
/**
|
|
252
|
-
* Callback fired when any hidden identifiers change.
|
|
253
|
-
* @param {VisibilityIdentifier[]} hiddenItems The new list of hidden identifiers.
|
|
254
|
-
*/
|
|
255
|
-
onHiddenItemsChange: PropTypes.func,
|
|
256
|
-
/**
|
|
257
|
-
* The callback fired when the highlighted item changes.
|
|
258
|
-
*
|
|
259
|
-
* @param {HighlightItemData | null} highlightedItem The newly highlighted item.
|
|
260
|
-
*/
|
|
261
|
-
onHighlightChange: PropTypes.func,
|
|
262
|
-
/**
|
|
263
|
-
* The function called when the pointer position corresponds to a new axis data item.
|
|
264
|
-
* This update can either be caused by a pointer movement, or an axis update.
|
|
265
|
-
* In case of multiple axes, the function is called if at least one axis is updated.
|
|
266
|
-
* The argument contains the identifier for all axes with a `data` property.
|
|
267
|
-
* @param {AxisItemIdentifier[]} axisItems The array of axes item identifiers.
|
|
268
|
-
*/
|
|
269
|
-
onHighlightedAxisChange: PropTypes.func,
|
|
270
|
-
/**
|
|
271
|
-
* Callback fired when a bar item is clicked.
|
|
272
|
-
* @param {React.MouseEvent<SVGElement, MouseEvent>} event The event source of the callback.
|
|
273
|
-
* @param {BarItemIdentifier} barItemIdentifier The bar item identifier.
|
|
274
|
-
*/
|
|
275
|
-
onItemClick: PropTypes.func,
|
|
276
|
-
/**
|
|
277
|
-
* The callback fired when the tooltip item changes.
|
|
278
|
-
*
|
|
279
|
-
* @param {SeriesItemIdentifier<TSeries> | null} tooltipItem The newly highlighted item.
|
|
280
|
-
*/
|
|
281
|
-
onTooltipItemChange: PropTypes.func,
|
|
282
|
-
/**
|
|
283
|
-
* The type of renderer to use for the bar plot.
|
|
284
|
-
* - `svg-single`: Renders every bar in a `<rect />` element.
|
|
285
|
-
* - `svg-batch`: Batch renders bars in `<path />` elements for better performance with large datasets, at the cost of some limitations.
|
|
286
|
-
* Read more: https://mui.com/x/react-charts/bars/#performance
|
|
287
|
-
*
|
|
288
|
-
* @default 'svg-single'
|
|
289
|
-
*/
|
|
290
|
-
renderer: PropTypes.oneOf(['svg-batch', 'svg-single']),
|
|
291
|
-
/**
|
|
292
|
-
* The series to display in the bar chart.
|
|
293
|
-
* An array of [[BarSeries]] objects.
|
|
294
|
-
*/
|
|
295
|
-
series: PropTypes.arrayOf(PropTypes.object).isRequired,
|
|
296
|
-
/**
|
|
297
|
-
* If true, shows the default chart toolbar.
|
|
298
|
-
* @default false
|
|
299
|
-
*/
|
|
300
|
-
showToolbar: PropTypes.bool,
|
|
301
|
-
/**
|
|
302
|
-
* If `true`, animations are skipped.
|
|
303
|
-
* If unset or `false`, the animations respects the user's `prefers-reduced-motion` setting.
|
|
304
|
-
*/
|
|
305
|
-
skipAnimation: PropTypes.bool,
|
|
306
|
-
/**
|
|
307
|
-
* The props used for each component slot.
|
|
308
|
-
* @default {}
|
|
309
|
-
*/
|
|
310
|
-
slotProps: PropTypes.object,
|
|
311
|
-
/**
|
|
312
|
-
* Overridable component slots.
|
|
313
|
-
* @default {}
|
|
314
|
-
*/
|
|
315
|
-
slots: PropTypes.object,
|
|
316
|
-
sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object]),
|
|
317
|
-
theme: PropTypes.oneOf(['dark', 'light']),
|
|
318
|
-
title: PropTypes.string,
|
|
319
|
-
/**
|
|
320
|
-
* The tooltip item.
|
|
321
|
-
* Used when the tooltip is controlled.
|
|
322
|
-
*/
|
|
323
|
-
tooltipItem: PropTypes.shape({
|
|
324
|
-
dataIndex: PropTypes.number.isRequired,
|
|
325
|
-
seriesId: PropTypes.string.isRequired,
|
|
326
|
-
type: PropTypes.oneOf(['bar']).isRequired
|
|
327
|
-
}),
|
|
328
|
-
/**
|
|
329
|
-
* The width of the chart in px. If not defined, it takes the width of the parent element.
|
|
330
|
-
*/
|
|
331
|
-
width: PropTypes.number,
|
|
332
|
-
/**
|
|
333
|
-
* The configuration of the x-axes.
|
|
334
|
-
* If not provided, a default axis config is used.
|
|
335
|
-
* An array of [[AxisConfig]] objects.
|
|
336
|
-
*/
|
|
337
|
-
xAxis: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.shape({
|
|
338
|
-
axis: PropTypes.oneOf(['x']),
|
|
339
|
-
barGapRatio: PropTypes.number,
|
|
340
|
-
categoryGapRatio: PropTypes.number,
|
|
341
|
-
classes: PropTypes.object,
|
|
342
|
-
colorMap: PropTypes.oneOfType([PropTypes.shape({
|
|
343
|
-
colors: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
344
|
-
type: PropTypes.oneOf(['ordinal']).isRequired,
|
|
345
|
-
unknownColor: PropTypes.string,
|
|
346
|
-
values: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number, PropTypes.string]).isRequired)
|
|
347
|
-
}), PropTypes.shape({
|
|
348
|
-
color: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.string.isRequired), PropTypes.func]).isRequired,
|
|
349
|
-
max: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
|
|
350
|
-
min: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
|
|
351
|
-
type: PropTypes.oneOf(['continuous']).isRequired
|
|
352
|
-
}), PropTypes.shape({
|
|
353
|
-
colors: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
354
|
-
thresholds: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]).isRequired).isRequired,
|
|
355
|
-
type: PropTypes.oneOf(['piecewise']).isRequired
|
|
356
|
-
})]),
|
|
357
|
-
data: PropTypes.array,
|
|
358
|
-
dataKey: PropTypes.string,
|
|
359
|
-
disableLine: PropTypes.bool,
|
|
360
|
-
disableTicks: PropTypes.bool,
|
|
361
|
-
domainLimit: PropTypes.oneOfType([PropTypes.oneOf(['nice', 'strict']), PropTypes.func]),
|
|
362
|
-
groups: PropTypes.arrayOf(PropTypes.shape({
|
|
363
|
-
getValue: PropTypes.func.isRequired,
|
|
364
|
-
tickLabelStyle: PropTypes.object,
|
|
365
|
-
tickSize: PropTypes.number
|
|
366
|
-
})),
|
|
367
|
-
height: PropTypes.number,
|
|
368
|
-
hideTooltip: PropTypes.bool,
|
|
369
|
-
id: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
|
|
370
|
-
ignoreTooltip: PropTypes.bool,
|
|
371
|
-
label: PropTypes.string,
|
|
372
|
-
labelStyle: PropTypes.object,
|
|
373
|
-
offset: PropTypes.number,
|
|
374
|
-
ordinalTimeTicks: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf(['biweekly', 'days', 'hours', 'months', 'quarterly', 'weeks', 'years']), PropTypes.shape({
|
|
375
|
-
format: PropTypes.func.isRequired,
|
|
376
|
-
getTickNumber: PropTypes.func.isRequired,
|
|
377
|
-
isTick: PropTypes.func.isRequired
|
|
378
|
-
})]).isRequired),
|
|
379
|
-
position: PropTypes.oneOf(['bottom', 'none', 'top']),
|
|
380
|
-
reverse: PropTypes.bool,
|
|
381
|
-
scaleType: PropTypes.oneOf(['band']),
|
|
382
|
-
slotProps: PropTypes.object,
|
|
383
|
-
slots: PropTypes.object,
|
|
384
|
-
sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object]),
|
|
385
|
-
tickInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.array, PropTypes.func]),
|
|
386
|
-
tickLabelInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.func]),
|
|
387
|
-
tickLabelMinGap: PropTypes.number,
|
|
388
|
-
tickLabelPlacement: PropTypes.oneOf(['middle', 'tick']),
|
|
389
|
-
tickLabelStyle: PropTypes.object,
|
|
390
|
-
tickMaxStep: PropTypes.number,
|
|
391
|
-
tickMinStep: PropTypes.number,
|
|
392
|
-
tickNumber: PropTypes.number,
|
|
393
|
-
tickPlacement: PropTypes.oneOf(['end', 'extremities', 'middle', 'start']),
|
|
394
|
-
tickSize: PropTypes.number,
|
|
395
|
-
tickSpacing: PropTypes.number,
|
|
396
|
-
valueFormatter: PropTypes.func
|
|
397
|
-
}), PropTypes.shape({
|
|
398
|
-
axis: PropTypes.oneOf(['x']),
|
|
399
|
-
classes: PropTypes.object,
|
|
400
|
-
colorMap: PropTypes.oneOfType([PropTypes.shape({
|
|
401
|
-
colors: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
402
|
-
type: PropTypes.oneOf(['ordinal']).isRequired,
|
|
403
|
-
unknownColor: PropTypes.string,
|
|
404
|
-
values: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number, PropTypes.string]).isRequired)
|
|
405
|
-
}), PropTypes.shape({
|
|
406
|
-
color: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.string.isRequired), PropTypes.func]).isRequired,
|
|
407
|
-
max: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
|
|
408
|
-
min: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
|
|
409
|
-
type: PropTypes.oneOf(['continuous']).isRequired
|
|
410
|
-
}), PropTypes.shape({
|
|
411
|
-
colors: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
412
|
-
thresholds: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]).isRequired).isRequired,
|
|
413
|
-
type: PropTypes.oneOf(['piecewise']).isRequired
|
|
414
|
-
})]),
|
|
415
|
-
data: PropTypes.array,
|
|
416
|
-
dataKey: PropTypes.string,
|
|
417
|
-
disableLine: PropTypes.bool,
|
|
418
|
-
disableTicks: PropTypes.bool,
|
|
419
|
-
domainLimit: PropTypes.oneOfType([PropTypes.oneOf(['nice', 'strict']), PropTypes.func]),
|
|
420
|
-
groups: PropTypes.arrayOf(PropTypes.shape({
|
|
421
|
-
getValue: PropTypes.func.isRequired,
|
|
422
|
-
tickLabelStyle: PropTypes.object,
|
|
423
|
-
tickSize: PropTypes.number
|
|
424
|
-
})),
|
|
425
|
-
height: PropTypes.number,
|
|
426
|
-
hideTooltip: PropTypes.bool,
|
|
427
|
-
id: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
|
|
428
|
-
ignoreTooltip: PropTypes.bool,
|
|
429
|
-
label: PropTypes.string,
|
|
430
|
-
labelStyle: PropTypes.object,
|
|
431
|
-
offset: PropTypes.number,
|
|
432
|
-
ordinalTimeTicks: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf(['biweekly', 'days', 'hours', 'months', 'quarterly', 'weeks', 'years']), PropTypes.shape({
|
|
433
|
-
format: PropTypes.func.isRequired,
|
|
434
|
-
getTickNumber: PropTypes.func.isRequired,
|
|
435
|
-
isTick: PropTypes.func.isRequired
|
|
436
|
-
})]).isRequired),
|
|
437
|
-
position: PropTypes.oneOf(['bottom', 'none', 'top']),
|
|
438
|
-
reverse: PropTypes.bool,
|
|
439
|
-
scaleType: PropTypes.oneOf(['point']),
|
|
440
|
-
slotProps: PropTypes.object,
|
|
441
|
-
slots: PropTypes.object,
|
|
442
|
-
sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object]),
|
|
443
|
-
tickInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.array, PropTypes.func]),
|
|
444
|
-
tickLabelInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.func]),
|
|
445
|
-
tickLabelMinGap: PropTypes.number,
|
|
446
|
-
tickLabelPlacement: PropTypes.oneOf(['middle', 'tick']),
|
|
447
|
-
tickLabelStyle: PropTypes.object,
|
|
448
|
-
tickMaxStep: PropTypes.number,
|
|
449
|
-
tickMinStep: PropTypes.number,
|
|
450
|
-
tickNumber: PropTypes.number,
|
|
451
|
-
tickPlacement: PropTypes.oneOf(['end', 'extremities', 'middle', 'start']),
|
|
452
|
-
tickSize: PropTypes.number,
|
|
453
|
-
tickSpacing: PropTypes.number,
|
|
454
|
-
valueFormatter: PropTypes.func
|
|
455
|
-
}), PropTypes.shape({
|
|
456
|
-
axis: PropTypes.oneOf(['x']),
|
|
457
|
-
classes: PropTypes.object,
|
|
458
|
-
colorMap: PropTypes.oneOfType([PropTypes.shape({
|
|
459
|
-
color: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.string.isRequired), PropTypes.func]).isRequired,
|
|
460
|
-
max: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
|
|
461
|
-
min: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
|
|
462
|
-
type: PropTypes.oneOf(['continuous']).isRequired
|
|
463
|
-
}), PropTypes.shape({
|
|
464
|
-
colors: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
465
|
-
thresholds: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]).isRequired).isRequired,
|
|
466
|
-
type: PropTypes.oneOf(['piecewise']).isRequired
|
|
467
|
-
})]),
|
|
468
|
-
data: PropTypes.array,
|
|
469
|
-
dataKey: PropTypes.string,
|
|
470
|
-
disableLine: PropTypes.bool,
|
|
471
|
-
disableTicks: PropTypes.bool,
|
|
472
|
-
domainLimit: PropTypes.oneOfType([PropTypes.oneOf(['nice', 'strict']), PropTypes.func]),
|
|
473
|
-
height: PropTypes.number,
|
|
474
|
-
hideTooltip: PropTypes.bool,
|
|
475
|
-
id: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
|
|
476
|
-
ignoreTooltip: PropTypes.bool,
|
|
477
|
-
label: PropTypes.string,
|
|
478
|
-
labelStyle: PropTypes.object,
|
|
479
|
-
max: PropTypes.number,
|
|
480
|
-
min: PropTypes.number,
|
|
481
|
-
offset: PropTypes.number,
|
|
482
|
-
position: PropTypes.oneOf(['bottom', 'none', 'top']),
|
|
483
|
-
reverse: PropTypes.bool,
|
|
484
|
-
scaleType: PropTypes.oneOf(['log']),
|
|
485
|
-
slotProps: PropTypes.object,
|
|
486
|
-
slots: PropTypes.object,
|
|
487
|
-
sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object]),
|
|
488
|
-
tickInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.array, PropTypes.func]),
|
|
489
|
-
tickLabelInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.func]),
|
|
490
|
-
tickLabelMinGap: PropTypes.number,
|
|
491
|
-
tickLabelPlacement: PropTypes.oneOf(['middle', 'tick']),
|
|
492
|
-
tickLabelStyle: PropTypes.object,
|
|
493
|
-
tickMaxStep: PropTypes.number,
|
|
494
|
-
tickMinStep: PropTypes.number,
|
|
495
|
-
tickNumber: PropTypes.number,
|
|
496
|
-
tickPlacement: PropTypes.oneOf(['end', 'extremities', 'middle', 'start']),
|
|
497
|
-
tickSize: PropTypes.number,
|
|
498
|
-
tickSpacing: PropTypes.number,
|
|
499
|
-
valueFormatter: PropTypes.func
|
|
500
|
-
}), PropTypes.shape({
|
|
501
|
-
axis: PropTypes.oneOf(['x']),
|
|
502
|
-
classes: PropTypes.object,
|
|
503
|
-
colorMap: PropTypes.oneOfType([PropTypes.shape({
|
|
504
|
-
color: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.string.isRequired), PropTypes.func]).isRequired,
|
|
505
|
-
max: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
|
|
506
|
-
min: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
|
|
507
|
-
type: PropTypes.oneOf(['continuous']).isRequired
|
|
508
|
-
}), PropTypes.shape({
|
|
509
|
-
colors: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
510
|
-
thresholds: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]).isRequired).isRequired,
|
|
511
|
-
type: PropTypes.oneOf(['piecewise']).isRequired
|
|
512
|
-
})]),
|
|
513
|
-
constant: PropTypes.number,
|
|
514
|
-
data: PropTypes.array,
|
|
515
|
-
dataKey: PropTypes.string,
|
|
516
|
-
disableLine: PropTypes.bool,
|
|
517
|
-
disableTicks: PropTypes.bool,
|
|
518
|
-
domainLimit: PropTypes.oneOfType([PropTypes.oneOf(['nice', 'strict']), PropTypes.func]),
|
|
519
|
-
height: PropTypes.number,
|
|
520
|
-
hideTooltip: PropTypes.bool,
|
|
521
|
-
id: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
|
|
522
|
-
ignoreTooltip: PropTypes.bool,
|
|
523
|
-
label: PropTypes.string,
|
|
524
|
-
labelStyle: PropTypes.object,
|
|
525
|
-
max: PropTypes.number,
|
|
526
|
-
min: PropTypes.number,
|
|
527
|
-
offset: PropTypes.number,
|
|
528
|
-
position: PropTypes.oneOf(['bottom', 'none', 'top']),
|
|
529
|
-
reverse: PropTypes.bool,
|
|
530
|
-
scaleType: PropTypes.oneOf(['symlog']),
|
|
531
|
-
slotProps: PropTypes.object,
|
|
532
|
-
slots: PropTypes.object,
|
|
533
|
-
sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object]),
|
|
534
|
-
tickInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.array, PropTypes.func]),
|
|
535
|
-
tickLabelInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.func]),
|
|
536
|
-
tickLabelMinGap: PropTypes.number,
|
|
537
|
-
tickLabelPlacement: PropTypes.oneOf(['middle', 'tick']),
|
|
538
|
-
tickLabelStyle: PropTypes.object,
|
|
539
|
-
tickMaxStep: PropTypes.number,
|
|
540
|
-
tickMinStep: PropTypes.number,
|
|
541
|
-
tickNumber: PropTypes.number,
|
|
542
|
-
tickPlacement: PropTypes.oneOf(['end', 'extremities', 'middle', 'start']),
|
|
543
|
-
tickSize: PropTypes.number,
|
|
544
|
-
tickSpacing: PropTypes.number,
|
|
545
|
-
valueFormatter: PropTypes.func
|
|
546
|
-
}), PropTypes.shape({
|
|
547
|
-
axis: PropTypes.oneOf(['x']),
|
|
548
|
-
classes: PropTypes.object,
|
|
549
|
-
colorMap: PropTypes.oneOfType([PropTypes.shape({
|
|
550
|
-
color: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.string.isRequired), PropTypes.func]).isRequired,
|
|
551
|
-
max: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
|
|
552
|
-
min: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
|
|
553
|
-
type: PropTypes.oneOf(['continuous']).isRequired
|
|
554
|
-
}), PropTypes.shape({
|
|
555
|
-
colors: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
556
|
-
thresholds: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]).isRequired).isRequired,
|
|
557
|
-
type: PropTypes.oneOf(['piecewise']).isRequired
|
|
558
|
-
})]),
|
|
559
|
-
data: PropTypes.array,
|
|
560
|
-
dataKey: PropTypes.string,
|
|
561
|
-
disableLine: PropTypes.bool,
|
|
562
|
-
disableTicks: PropTypes.bool,
|
|
563
|
-
domainLimit: PropTypes.oneOfType([PropTypes.oneOf(['nice', 'strict']), PropTypes.func]),
|
|
564
|
-
height: PropTypes.number,
|
|
565
|
-
hideTooltip: PropTypes.bool,
|
|
566
|
-
id: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
|
|
567
|
-
ignoreTooltip: PropTypes.bool,
|
|
568
|
-
label: PropTypes.string,
|
|
569
|
-
labelStyle: PropTypes.object,
|
|
570
|
-
max: PropTypes.number,
|
|
571
|
-
min: PropTypes.number,
|
|
572
|
-
offset: PropTypes.number,
|
|
573
|
-
position: PropTypes.oneOf(['bottom', 'none', 'top']),
|
|
574
|
-
reverse: PropTypes.bool,
|
|
575
|
-
scaleType: PropTypes.oneOf(['pow']),
|
|
576
|
-
slotProps: PropTypes.object,
|
|
577
|
-
slots: PropTypes.object,
|
|
578
|
-
sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object]),
|
|
579
|
-
tickInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.array, PropTypes.func]),
|
|
580
|
-
tickLabelInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.func]),
|
|
581
|
-
tickLabelMinGap: PropTypes.number,
|
|
582
|
-
tickLabelPlacement: PropTypes.oneOf(['middle', 'tick']),
|
|
583
|
-
tickLabelStyle: PropTypes.object,
|
|
584
|
-
tickMaxStep: PropTypes.number,
|
|
585
|
-
tickMinStep: PropTypes.number,
|
|
586
|
-
tickNumber: PropTypes.number,
|
|
587
|
-
tickPlacement: PropTypes.oneOf(['end', 'extremities', 'middle', 'start']),
|
|
588
|
-
tickSize: PropTypes.number,
|
|
589
|
-
tickSpacing: PropTypes.number,
|
|
590
|
-
valueFormatter: PropTypes.func
|
|
591
|
-
}), PropTypes.shape({
|
|
592
|
-
axis: PropTypes.oneOf(['x']),
|
|
593
|
-
classes: PropTypes.object,
|
|
594
|
-
colorMap: PropTypes.oneOfType([PropTypes.shape({
|
|
595
|
-
color: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.string.isRequired), PropTypes.func]).isRequired,
|
|
596
|
-
max: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
|
|
597
|
-
min: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
|
|
598
|
-
type: PropTypes.oneOf(['continuous']).isRequired
|
|
599
|
-
}), PropTypes.shape({
|
|
600
|
-
colors: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
601
|
-
thresholds: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]).isRequired).isRequired,
|
|
602
|
-
type: PropTypes.oneOf(['piecewise']).isRequired
|
|
603
|
-
})]),
|
|
604
|
-
data: PropTypes.array,
|
|
605
|
-
dataKey: PropTypes.string,
|
|
606
|
-
disableLine: PropTypes.bool,
|
|
607
|
-
disableTicks: PropTypes.bool,
|
|
608
|
-
domainLimit: PropTypes.oneOfType([PropTypes.oneOf(['nice', 'strict']), PropTypes.func]),
|
|
609
|
-
height: PropTypes.number,
|
|
610
|
-
hideTooltip: PropTypes.bool,
|
|
611
|
-
id: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
|
|
612
|
-
ignoreTooltip: PropTypes.bool,
|
|
613
|
-
label: PropTypes.string,
|
|
614
|
-
labelStyle: PropTypes.object,
|
|
615
|
-
max: PropTypes.number,
|
|
616
|
-
min: PropTypes.number,
|
|
617
|
-
offset: PropTypes.number,
|
|
618
|
-
position: PropTypes.oneOf(['bottom', 'none', 'top']),
|
|
619
|
-
reverse: PropTypes.bool,
|
|
620
|
-
scaleType: PropTypes.oneOf(['sqrt']),
|
|
621
|
-
slotProps: PropTypes.object,
|
|
622
|
-
slots: PropTypes.object,
|
|
623
|
-
sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object]),
|
|
624
|
-
tickInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.array, PropTypes.func]),
|
|
625
|
-
tickLabelInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.func]),
|
|
626
|
-
tickLabelMinGap: PropTypes.number,
|
|
627
|
-
tickLabelPlacement: PropTypes.oneOf(['middle', 'tick']),
|
|
628
|
-
tickLabelStyle: PropTypes.object,
|
|
629
|
-
tickMaxStep: PropTypes.number,
|
|
630
|
-
tickMinStep: PropTypes.number,
|
|
631
|
-
tickNumber: PropTypes.number,
|
|
632
|
-
tickPlacement: PropTypes.oneOf(['end', 'extremities', 'middle', 'start']),
|
|
633
|
-
tickSize: PropTypes.number,
|
|
634
|
-
tickSpacing: PropTypes.number,
|
|
635
|
-
valueFormatter: PropTypes.func
|
|
636
|
-
}), PropTypes.shape({
|
|
637
|
-
axis: PropTypes.oneOf(['x']),
|
|
638
|
-
classes: PropTypes.object,
|
|
639
|
-
colorMap: PropTypes.oneOfType([PropTypes.shape({
|
|
640
|
-
color: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.string.isRequired), PropTypes.func]).isRequired,
|
|
641
|
-
max: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
|
|
642
|
-
min: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
|
|
643
|
-
type: PropTypes.oneOf(['continuous']).isRequired
|
|
644
|
-
}), PropTypes.shape({
|
|
645
|
-
colors: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
646
|
-
thresholds: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]).isRequired).isRequired,
|
|
647
|
-
type: PropTypes.oneOf(['piecewise']).isRequired
|
|
648
|
-
})]),
|
|
649
|
-
data: PropTypes.array,
|
|
650
|
-
dataKey: PropTypes.string,
|
|
651
|
-
disableLine: PropTypes.bool,
|
|
652
|
-
disableTicks: PropTypes.bool,
|
|
653
|
-
domainLimit: PropTypes.oneOfType([PropTypes.oneOf(['nice', 'strict']), PropTypes.func]),
|
|
654
|
-
height: PropTypes.number,
|
|
655
|
-
hideTooltip: PropTypes.bool,
|
|
656
|
-
id: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
|
|
657
|
-
ignoreTooltip: PropTypes.bool,
|
|
658
|
-
label: PropTypes.string,
|
|
659
|
-
labelStyle: PropTypes.object,
|
|
660
|
-
max: PropTypes.oneOfType([PropTypes.number, PropTypes.shape({
|
|
661
|
-
valueOf: PropTypes.func.isRequired
|
|
662
|
-
})]),
|
|
663
|
-
min: PropTypes.oneOfType([PropTypes.number, PropTypes.shape({
|
|
664
|
-
valueOf: PropTypes.func.isRequired
|
|
665
|
-
})]),
|
|
666
|
-
offset: PropTypes.number,
|
|
667
|
-
position: PropTypes.oneOf(['bottom', 'none', 'top']),
|
|
668
|
-
reverse: PropTypes.bool,
|
|
669
|
-
scaleType: PropTypes.oneOf(['time']),
|
|
670
|
-
slotProps: PropTypes.object,
|
|
671
|
-
slots: PropTypes.object,
|
|
672
|
-
sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object]),
|
|
673
|
-
tickInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.array, PropTypes.func]),
|
|
674
|
-
tickLabelInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.func]),
|
|
675
|
-
tickLabelMinGap: PropTypes.number,
|
|
676
|
-
tickLabelPlacement: PropTypes.oneOf(['middle', 'tick']),
|
|
677
|
-
tickLabelStyle: PropTypes.object,
|
|
678
|
-
tickMaxStep: PropTypes.number,
|
|
679
|
-
tickMinStep: PropTypes.number,
|
|
680
|
-
tickNumber: PropTypes.number,
|
|
681
|
-
tickPlacement: PropTypes.oneOf(['end', 'extremities', 'middle', 'start']),
|
|
682
|
-
tickSize: PropTypes.number,
|
|
683
|
-
tickSpacing: PropTypes.number,
|
|
684
|
-
valueFormatter: PropTypes.func
|
|
685
|
-
}), PropTypes.shape({
|
|
686
|
-
axis: PropTypes.oneOf(['x']),
|
|
687
|
-
classes: PropTypes.object,
|
|
688
|
-
colorMap: PropTypes.oneOfType([PropTypes.shape({
|
|
689
|
-
color: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.string.isRequired), PropTypes.func]).isRequired,
|
|
690
|
-
max: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
|
|
691
|
-
min: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
|
|
692
|
-
type: PropTypes.oneOf(['continuous']).isRequired
|
|
693
|
-
}), PropTypes.shape({
|
|
694
|
-
colors: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
695
|
-
thresholds: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]).isRequired).isRequired,
|
|
696
|
-
type: PropTypes.oneOf(['piecewise']).isRequired
|
|
697
|
-
})]),
|
|
698
|
-
data: PropTypes.array,
|
|
699
|
-
dataKey: PropTypes.string,
|
|
700
|
-
disableLine: PropTypes.bool,
|
|
701
|
-
disableTicks: PropTypes.bool,
|
|
702
|
-
domainLimit: PropTypes.oneOfType([PropTypes.oneOf(['nice', 'strict']), PropTypes.func]),
|
|
703
|
-
height: PropTypes.number,
|
|
704
|
-
hideTooltip: PropTypes.bool,
|
|
705
|
-
id: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
|
|
706
|
-
ignoreTooltip: PropTypes.bool,
|
|
707
|
-
label: PropTypes.string,
|
|
708
|
-
labelStyle: PropTypes.object,
|
|
709
|
-
max: PropTypes.oneOfType([PropTypes.number, PropTypes.shape({
|
|
710
|
-
valueOf: PropTypes.func.isRequired
|
|
711
|
-
})]),
|
|
712
|
-
min: PropTypes.oneOfType([PropTypes.number, PropTypes.shape({
|
|
713
|
-
valueOf: PropTypes.func.isRequired
|
|
714
|
-
})]),
|
|
715
|
-
offset: PropTypes.number,
|
|
716
|
-
position: PropTypes.oneOf(['bottom', 'none', 'top']),
|
|
717
|
-
reverse: PropTypes.bool,
|
|
718
|
-
scaleType: PropTypes.oneOf(['utc']),
|
|
719
|
-
slotProps: PropTypes.object,
|
|
720
|
-
slots: PropTypes.object,
|
|
721
|
-
sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object]),
|
|
722
|
-
tickInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.array, PropTypes.func]),
|
|
723
|
-
tickLabelInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.func]),
|
|
724
|
-
tickLabelMinGap: PropTypes.number,
|
|
725
|
-
tickLabelPlacement: PropTypes.oneOf(['middle', 'tick']),
|
|
726
|
-
tickLabelStyle: PropTypes.object,
|
|
727
|
-
tickMaxStep: PropTypes.number,
|
|
728
|
-
tickMinStep: PropTypes.number,
|
|
729
|
-
tickNumber: PropTypes.number,
|
|
730
|
-
tickPlacement: PropTypes.oneOf(['end', 'extremities', 'middle', 'start']),
|
|
731
|
-
tickSize: PropTypes.number,
|
|
732
|
-
tickSpacing: PropTypes.number,
|
|
733
|
-
valueFormatter: PropTypes.func
|
|
734
|
-
}), PropTypes.shape({
|
|
735
|
-
axis: PropTypes.oneOf(['x']),
|
|
736
|
-
classes: PropTypes.object,
|
|
737
|
-
colorMap: PropTypes.oneOfType([PropTypes.shape({
|
|
738
|
-
color: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.string.isRequired), PropTypes.func]).isRequired,
|
|
739
|
-
max: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
|
|
740
|
-
min: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
|
|
741
|
-
type: PropTypes.oneOf(['continuous']).isRequired
|
|
742
|
-
}), PropTypes.shape({
|
|
743
|
-
colors: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
744
|
-
thresholds: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]).isRequired).isRequired,
|
|
745
|
-
type: PropTypes.oneOf(['piecewise']).isRequired
|
|
746
|
-
})]),
|
|
747
|
-
data: PropTypes.array,
|
|
748
|
-
dataKey: PropTypes.string,
|
|
749
|
-
disableLine: PropTypes.bool,
|
|
750
|
-
disableTicks: PropTypes.bool,
|
|
751
|
-
domainLimit: PropTypes.oneOfType([PropTypes.oneOf(['nice', 'strict']), PropTypes.func]),
|
|
752
|
-
height: PropTypes.number,
|
|
753
|
-
hideTooltip: PropTypes.bool,
|
|
754
|
-
id: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
|
|
755
|
-
ignoreTooltip: PropTypes.bool,
|
|
756
|
-
label: PropTypes.string,
|
|
757
|
-
labelStyle: PropTypes.object,
|
|
758
|
-
max: PropTypes.number,
|
|
759
|
-
min: PropTypes.number,
|
|
760
|
-
offset: PropTypes.number,
|
|
761
|
-
position: PropTypes.oneOf(['bottom', 'none', 'top']),
|
|
762
|
-
reverse: PropTypes.bool,
|
|
763
|
-
scaleType: PropTypes.oneOf(['linear']),
|
|
764
|
-
slotProps: PropTypes.object,
|
|
765
|
-
slots: PropTypes.object,
|
|
766
|
-
sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object]),
|
|
767
|
-
tickInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.array, PropTypes.func]),
|
|
768
|
-
tickLabelInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.func]),
|
|
769
|
-
tickLabelMinGap: PropTypes.number,
|
|
770
|
-
tickLabelPlacement: PropTypes.oneOf(['middle', 'tick']),
|
|
771
|
-
tickLabelStyle: PropTypes.object,
|
|
772
|
-
tickMaxStep: PropTypes.number,
|
|
773
|
-
tickMinStep: PropTypes.number,
|
|
774
|
-
tickNumber: PropTypes.number,
|
|
775
|
-
tickPlacement: PropTypes.oneOf(['end', 'extremities', 'middle', 'start']),
|
|
776
|
-
tickSize: PropTypes.number,
|
|
777
|
-
tickSpacing: PropTypes.number,
|
|
778
|
-
valueFormatter: PropTypes.func
|
|
779
|
-
})]).isRequired),
|
|
780
|
-
/**
|
|
781
|
-
* The configuration of the y-axes.
|
|
782
|
-
* If not provided, a default axis config is used.
|
|
783
|
-
* An array of [[AxisConfig]] objects.
|
|
784
|
-
*/
|
|
785
|
-
yAxis: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.shape({
|
|
786
|
-
axis: PropTypes.oneOf(['y']),
|
|
787
|
-
barGapRatio: PropTypes.number,
|
|
788
|
-
categoryGapRatio: PropTypes.number,
|
|
789
|
-
classes: PropTypes.object,
|
|
790
|
-
colorMap: PropTypes.oneOfType([PropTypes.shape({
|
|
791
|
-
colors: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
792
|
-
type: PropTypes.oneOf(['ordinal']).isRequired,
|
|
793
|
-
unknownColor: PropTypes.string,
|
|
794
|
-
values: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number, PropTypes.string]).isRequired)
|
|
795
|
-
}), PropTypes.shape({
|
|
796
|
-
color: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.string.isRequired), PropTypes.func]).isRequired,
|
|
797
|
-
max: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
|
|
798
|
-
min: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
|
|
799
|
-
type: PropTypes.oneOf(['continuous']).isRequired
|
|
800
|
-
}), PropTypes.shape({
|
|
801
|
-
colors: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
802
|
-
thresholds: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]).isRequired).isRequired,
|
|
803
|
-
type: PropTypes.oneOf(['piecewise']).isRequired
|
|
804
|
-
})]),
|
|
805
|
-
data: PropTypes.array,
|
|
806
|
-
dataKey: PropTypes.string,
|
|
807
|
-
disableLine: PropTypes.bool,
|
|
808
|
-
disableTicks: PropTypes.bool,
|
|
809
|
-
domainLimit: PropTypes.oneOfType([PropTypes.oneOf(['nice', 'strict']), PropTypes.func]),
|
|
810
|
-
groups: PropTypes.arrayOf(PropTypes.shape({
|
|
811
|
-
getValue: PropTypes.func.isRequired,
|
|
812
|
-
tickLabelStyle: PropTypes.object,
|
|
813
|
-
tickSize: PropTypes.number
|
|
814
|
-
})),
|
|
815
|
-
hideTooltip: PropTypes.bool,
|
|
816
|
-
id: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
|
|
817
|
-
ignoreTooltip: PropTypes.bool,
|
|
818
|
-
label: PropTypes.string,
|
|
819
|
-
labelStyle: PropTypes.object,
|
|
820
|
-
offset: PropTypes.number,
|
|
821
|
-
ordinalTimeTicks: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf(['biweekly', 'days', 'hours', 'months', 'quarterly', 'weeks', 'years']), PropTypes.shape({
|
|
822
|
-
format: PropTypes.func.isRequired,
|
|
823
|
-
getTickNumber: PropTypes.func.isRequired,
|
|
824
|
-
isTick: PropTypes.func.isRequired
|
|
825
|
-
})]).isRequired),
|
|
826
|
-
position: PropTypes.oneOf(['left', 'none', 'right']),
|
|
827
|
-
reverse: PropTypes.bool,
|
|
828
|
-
scaleType: PropTypes.oneOf(['band']),
|
|
829
|
-
slotProps: PropTypes.object,
|
|
830
|
-
slots: PropTypes.object,
|
|
831
|
-
sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object]),
|
|
832
|
-
tickInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.array, PropTypes.func]),
|
|
833
|
-
tickLabelInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.func]),
|
|
834
|
-
tickLabelPlacement: PropTypes.oneOf(['middle', 'tick']),
|
|
835
|
-
tickLabelStyle: PropTypes.object,
|
|
836
|
-
tickMaxStep: PropTypes.number,
|
|
837
|
-
tickMinStep: PropTypes.number,
|
|
838
|
-
tickNumber: PropTypes.number,
|
|
839
|
-
tickPlacement: PropTypes.oneOf(['end', 'extremities', 'middle', 'start']),
|
|
840
|
-
tickSize: PropTypes.number,
|
|
841
|
-
tickSpacing: PropTypes.number,
|
|
842
|
-
valueFormatter: PropTypes.func,
|
|
843
|
-
width: PropTypes.number
|
|
844
|
-
}), PropTypes.shape({
|
|
845
|
-
axis: PropTypes.oneOf(['y']),
|
|
846
|
-
classes: PropTypes.object,
|
|
847
|
-
colorMap: PropTypes.oneOfType([PropTypes.shape({
|
|
848
|
-
colors: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
849
|
-
type: PropTypes.oneOf(['ordinal']).isRequired,
|
|
850
|
-
unknownColor: PropTypes.string,
|
|
851
|
-
values: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number, PropTypes.string]).isRequired)
|
|
852
|
-
}), PropTypes.shape({
|
|
853
|
-
color: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.string.isRequired), PropTypes.func]).isRequired,
|
|
854
|
-
max: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
|
|
855
|
-
min: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
|
|
856
|
-
type: PropTypes.oneOf(['continuous']).isRequired
|
|
857
|
-
}), PropTypes.shape({
|
|
858
|
-
colors: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
859
|
-
thresholds: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]).isRequired).isRequired,
|
|
860
|
-
type: PropTypes.oneOf(['piecewise']).isRequired
|
|
861
|
-
})]),
|
|
862
|
-
data: PropTypes.array,
|
|
863
|
-
dataKey: PropTypes.string,
|
|
864
|
-
disableLine: PropTypes.bool,
|
|
865
|
-
disableTicks: PropTypes.bool,
|
|
866
|
-
domainLimit: PropTypes.oneOfType([PropTypes.oneOf(['nice', 'strict']), PropTypes.func]),
|
|
867
|
-
groups: PropTypes.arrayOf(PropTypes.shape({
|
|
868
|
-
getValue: PropTypes.func.isRequired,
|
|
869
|
-
tickLabelStyle: PropTypes.object,
|
|
870
|
-
tickSize: PropTypes.number
|
|
871
|
-
})),
|
|
872
|
-
hideTooltip: PropTypes.bool,
|
|
873
|
-
id: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
|
|
874
|
-
ignoreTooltip: PropTypes.bool,
|
|
875
|
-
label: PropTypes.string,
|
|
876
|
-
labelStyle: PropTypes.object,
|
|
877
|
-
offset: PropTypes.number,
|
|
878
|
-
ordinalTimeTicks: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf(['biweekly', 'days', 'hours', 'months', 'quarterly', 'weeks', 'years']), PropTypes.shape({
|
|
879
|
-
format: PropTypes.func.isRequired,
|
|
880
|
-
getTickNumber: PropTypes.func.isRequired,
|
|
881
|
-
isTick: PropTypes.func.isRequired
|
|
882
|
-
})]).isRequired),
|
|
883
|
-
position: PropTypes.oneOf(['left', 'none', 'right']),
|
|
884
|
-
reverse: PropTypes.bool,
|
|
885
|
-
scaleType: PropTypes.oneOf(['point']),
|
|
886
|
-
slotProps: PropTypes.object,
|
|
887
|
-
slots: PropTypes.object,
|
|
888
|
-
sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object]),
|
|
889
|
-
tickInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.array, PropTypes.func]),
|
|
890
|
-
tickLabelInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.func]),
|
|
891
|
-
tickLabelPlacement: PropTypes.oneOf(['middle', 'tick']),
|
|
892
|
-
tickLabelStyle: PropTypes.object,
|
|
893
|
-
tickMaxStep: PropTypes.number,
|
|
894
|
-
tickMinStep: PropTypes.number,
|
|
895
|
-
tickNumber: PropTypes.number,
|
|
896
|
-
tickPlacement: PropTypes.oneOf(['end', 'extremities', 'middle', 'start']),
|
|
897
|
-
tickSize: PropTypes.number,
|
|
898
|
-
tickSpacing: PropTypes.number,
|
|
899
|
-
valueFormatter: PropTypes.func,
|
|
900
|
-
width: PropTypes.number
|
|
901
|
-
}), PropTypes.shape({
|
|
902
|
-
axis: PropTypes.oneOf(['y']),
|
|
903
|
-
classes: PropTypes.object,
|
|
904
|
-
colorMap: PropTypes.oneOfType([PropTypes.shape({
|
|
905
|
-
color: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.string.isRequired), PropTypes.func]).isRequired,
|
|
906
|
-
max: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
|
|
907
|
-
min: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
|
|
908
|
-
type: PropTypes.oneOf(['continuous']).isRequired
|
|
909
|
-
}), PropTypes.shape({
|
|
910
|
-
colors: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
911
|
-
thresholds: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]).isRequired).isRequired,
|
|
912
|
-
type: PropTypes.oneOf(['piecewise']).isRequired
|
|
913
|
-
})]),
|
|
914
|
-
data: PropTypes.array,
|
|
915
|
-
dataKey: PropTypes.string,
|
|
916
|
-
disableLine: PropTypes.bool,
|
|
917
|
-
disableTicks: PropTypes.bool,
|
|
918
|
-
domainLimit: PropTypes.oneOfType([PropTypes.oneOf(['nice', 'strict']), PropTypes.func]),
|
|
919
|
-
hideTooltip: PropTypes.bool,
|
|
920
|
-
id: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
|
|
921
|
-
ignoreTooltip: PropTypes.bool,
|
|
922
|
-
label: PropTypes.string,
|
|
923
|
-
labelStyle: PropTypes.object,
|
|
924
|
-
max: PropTypes.number,
|
|
925
|
-
min: PropTypes.number,
|
|
926
|
-
offset: PropTypes.number,
|
|
927
|
-
position: PropTypes.oneOf(['left', 'none', 'right']),
|
|
928
|
-
reverse: PropTypes.bool,
|
|
929
|
-
scaleType: PropTypes.oneOf(['log']),
|
|
930
|
-
slotProps: PropTypes.object,
|
|
931
|
-
slots: PropTypes.object,
|
|
932
|
-
sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object]),
|
|
933
|
-
tickInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.array, PropTypes.func]),
|
|
934
|
-
tickLabelInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.func]),
|
|
935
|
-
tickLabelPlacement: PropTypes.oneOf(['middle', 'tick']),
|
|
936
|
-
tickLabelStyle: PropTypes.object,
|
|
937
|
-
tickMaxStep: PropTypes.number,
|
|
938
|
-
tickMinStep: PropTypes.number,
|
|
939
|
-
tickNumber: PropTypes.number,
|
|
940
|
-
tickPlacement: PropTypes.oneOf(['end', 'extremities', 'middle', 'start']),
|
|
941
|
-
tickSize: PropTypes.number,
|
|
942
|
-
tickSpacing: PropTypes.number,
|
|
943
|
-
valueFormatter: PropTypes.func,
|
|
944
|
-
width: PropTypes.number
|
|
945
|
-
}), PropTypes.shape({
|
|
946
|
-
axis: PropTypes.oneOf(['y']),
|
|
947
|
-
classes: PropTypes.object,
|
|
948
|
-
colorMap: PropTypes.oneOfType([PropTypes.shape({
|
|
949
|
-
color: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.string.isRequired), PropTypes.func]).isRequired,
|
|
950
|
-
max: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
|
|
951
|
-
min: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
|
|
952
|
-
type: PropTypes.oneOf(['continuous']).isRequired
|
|
953
|
-
}), PropTypes.shape({
|
|
954
|
-
colors: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
955
|
-
thresholds: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]).isRequired).isRequired,
|
|
956
|
-
type: PropTypes.oneOf(['piecewise']).isRequired
|
|
957
|
-
})]),
|
|
958
|
-
constant: PropTypes.number,
|
|
959
|
-
data: PropTypes.array,
|
|
960
|
-
dataKey: PropTypes.string,
|
|
961
|
-
disableLine: PropTypes.bool,
|
|
962
|
-
disableTicks: PropTypes.bool,
|
|
963
|
-
domainLimit: PropTypes.oneOfType([PropTypes.oneOf(['nice', 'strict']), PropTypes.func]),
|
|
964
|
-
hideTooltip: PropTypes.bool,
|
|
965
|
-
id: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
|
|
966
|
-
ignoreTooltip: PropTypes.bool,
|
|
967
|
-
label: PropTypes.string,
|
|
968
|
-
labelStyle: PropTypes.object,
|
|
969
|
-
max: PropTypes.number,
|
|
970
|
-
min: PropTypes.number,
|
|
971
|
-
offset: PropTypes.number,
|
|
972
|
-
position: PropTypes.oneOf(['left', 'none', 'right']),
|
|
973
|
-
reverse: PropTypes.bool,
|
|
974
|
-
scaleType: PropTypes.oneOf(['symlog']),
|
|
975
|
-
slotProps: PropTypes.object,
|
|
976
|
-
slots: PropTypes.object,
|
|
977
|
-
sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object]),
|
|
978
|
-
tickInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.array, PropTypes.func]),
|
|
979
|
-
tickLabelInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.func]),
|
|
980
|
-
tickLabelPlacement: PropTypes.oneOf(['middle', 'tick']),
|
|
981
|
-
tickLabelStyle: PropTypes.object,
|
|
982
|
-
tickMaxStep: PropTypes.number,
|
|
983
|
-
tickMinStep: PropTypes.number,
|
|
984
|
-
tickNumber: PropTypes.number,
|
|
985
|
-
tickPlacement: PropTypes.oneOf(['end', 'extremities', 'middle', 'start']),
|
|
986
|
-
tickSize: PropTypes.number,
|
|
987
|
-
tickSpacing: PropTypes.number,
|
|
988
|
-
valueFormatter: PropTypes.func,
|
|
989
|
-
width: PropTypes.number
|
|
990
|
-
}), PropTypes.shape({
|
|
991
|
-
axis: PropTypes.oneOf(['y']),
|
|
992
|
-
classes: PropTypes.object,
|
|
993
|
-
colorMap: PropTypes.oneOfType([PropTypes.shape({
|
|
994
|
-
color: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.string.isRequired), PropTypes.func]).isRequired,
|
|
995
|
-
max: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
|
|
996
|
-
min: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
|
|
997
|
-
type: PropTypes.oneOf(['continuous']).isRequired
|
|
998
|
-
}), PropTypes.shape({
|
|
999
|
-
colors: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
1000
|
-
thresholds: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]).isRequired).isRequired,
|
|
1001
|
-
type: PropTypes.oneOf(['piecewise']).isRequired
|
|
1002
|
-
})]),
|
|
1003
|
-
data: PropTypes.array,
|
|
1004
|
-
dataKey: PropTypes.string,
|
|
1005
|
-
disableLine: PropTypes.bool,
|
|
1006
|
-
disableTicks: PropTypes.bool,
|
|
1007
|
-
domainLimit: PropTypes.oneOfType([PropTypes.oneOf(['nice', 'strict']), PropTypes.func]),
|
|
1008
|
-
hideTooltip: PropTypes.bool,
|
|
1009
|
-
id: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
|
|
1010
|
-
ignoreTooltip: PropTypes.bool,
|
|
1011
|
-
label: PropTypes.string,
|
|
1012
|
-
labelStyle: PropTypes.object,
|
|
1013
|
-
max: PropTypes.number,
|
|
1014
|
-
min: PropTypes.number,
|
|
1015
|
-
offset: PropTypes.number,
|
|
1016
|
-
position: PropTypes.oneOf(['left', 'none', 'right']),
|
|
1017
|
-
reverse: PropTypes.bool,
|
|
1018
|
-
scaleType: PropTypes.oneOf(['pow']),
|
|
1019
|
-
slotProps: PropTypes.object,
|
|
1020
|
-
slots: PropTypes.object,
|
|
1021
|
-
sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object]),
|
|
1022
|
-
tickInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.array, PropTypes.func]),
|
|
1023
|
-
tickLabelInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.func]),
|
|
1024
|
-
tickLabelPlacement: PropTypes.oneOf(['middle', 'tick']),
|
|
1025
|
-
tickLabelStyle: PropTypes.object,
|
|
1026
|
-
tickMaxStep: PropTypes.number,
|
|
1027
|
-
tickMinStep: PropTypes.number,
|
|
1028
|
-
tickNumber: PropTypes.number,
|
|
1029
|
-
tickPlacement: PropTypes.oneOf(['end', 'extremities', 'middle', 'start']),
|
|
1030
|
-
tickSize: PropTypes.number,
|
|
1031
|
-
tickSpacing: PropTypes.number,
|
|
1032
|
-
valueFormatter: PropTypes.func,
|
|
1033
|
-
width: PropTypes.number
|
|
1034
|
-
}), PropTypes.shape({
|
|
1035
|
-
axis: PropTypes.oneOf(['y']),
|
|
1036
|
-
classes: PropTypes.object,
|
|
1037
|
-
colorMap: PropTypes.oneOfType([PropTypes.shape({
|
|
1038
|
-
color: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.string.isRequired), PropTypes.func]).isRequired,
|
|
1039
|
-
max: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
|
|
1040
|
-
min: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
|
|
1041
|
-
type: PropTypes.oneOf(['continuous']).isRequired
|
|
1042
|
-
}), PropTypes.shape({
|
|
1043
|
-
colors: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
1044
|
-
thresholds: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]).isRequired).isRequired,
|
|
1045
|
-
type: PropTypes.oneOf(['piecewise']).isRequired
|
|
1046
|
-
})]),
|
|
1047
|
-
data: PropTypes.array,
|
|
1048
|
-
dataKey: PropTypes.string,
|
|
1049
|
-
disableLine: PropTypes.bool,
|
|
1050
|
-
disableTicks: PropTypes.bool,
|
|
1051
|
-
domainLimit: PropTypes.oneOfType([PropTypes.oneOf(['nice', 'strict']), PropTypes.func]),
|
|
1052
|
-
hideTooltip: PropTypes.bool,
|
|
1053
|
-
id: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
|
|
1054
|
-
ignoreTooltip: PropTypes.bool,
|
|
1055
|
-
label: PropTypes.string,
|
|
1056
|
-
labelStyle: PropTypes.object,
|
|
1057
|
-
max: PropTypes.number,
|
|
1058
|
-
min: PropTypes.number,
|
|
1059
|
-
offset: PropTypes.number,
|
|
1060
|
-
position: PropTypes.oneOf(['left', 'none', 'right']),
|
|
1061
|
-
reverse: PropTypes.bool,
|
|
1062
|
-
scaleType: PropTypes.oneOf(['sqrt']),
|
|
1063
|
-
slotProps: PropTypes.object,
|
|
1064
|
-
slots: PropTypes.object,
|
|
1065
|
-
sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object]),
|
|
1066
|
-
tickInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.array, PropTypes.func]),
|
|
1067
|
-
tickLabelInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.func]),
|
|
1068
|
-
tickLabelPlacement: PropTypes.oneOf(['middle', 'tick']),
|
|
1069
|
-
tickLabelStyle: PropTypes.object,
|
|
1070
|
-
tickMaxStep: PropTypes.number,
|
|
1071
|
-
tickMinStep: PropTypes.number,
|
|
1072
|
-
tickNumber: PropTypes.number,
|
|
1073
|
-
tickPlacement: PropTypes.oneOf(['end', 'extremities', 'middle', 'start']),
|
|
1074
|
-
tickSize: PropTypes.number,
|
|
1075
|
-
tickSpacing: PropTypes.number,
|
|
1076
|
-
valueFormatter: PropTypes.func,
|
|
1077
|
-
width: PropTypes.number
|
|
1078
|
-
}), PropTypes.shape({
|
|
1079
|
-
axis: PropTypes.oneOf(['y']),
|
|
1080
|
-
classes: PropTypes.object,
|
|
1081
|
-
colorMap: PropTypes.oneOfType([PropTypes.shape({
|
|
1082
|
-
color: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.string.isRequired), PropTypes.func]).isRequired,
|
|
1083
|
-
max: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
|
|
1084
|
-
min: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
|
|
1085
|
-
type: PropTypes.oneOf(['continuous']).isRequired
|
|
1086
|
-
}), PropTypes.shape({
|
|
1087
|
-
colors: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
1088
|
-
thresholds: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]).isRequired).isRequired,
|
|
1089
|
-
type: PropTypes.oneOf(['piecewise']).isRequired
|
|
1090
|
-
})]),
|
|
1091
|
-
data: PropTypes.array,
|
|
1092
|
-
dataKey: PropTypes.string,
|
|
1093
|
-
disableLine: PropTypes.bool,
|
|
1094
|
-
disableTicks: PropTypes.bool,
|
|
1095
|
-
domainLimit: PropTypes.oneOfType([PropTypes.oneOf(['nice', 'strict']), PropTypes.func]),
|
|
1096
|
-
hideTooltip: PropTypes.bool,
|
|
1097
|
-
id: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
|
|
1098
|
-
ignoreTooltip: PropTypes.bool,
|
|
1099
|
-
label: PropTypes.string,
|
|
1100
|
-
labelStyle: PropTypes.object,
|
|
1101
|
-
max: PropTypes.oneOfType([PropTypes.number, PropTypes.shape({
|
|
1102
|
-
valueOf: PropTypes.func.isRequired
|
|
1103
|
-
})]),
|
|
1104
|
-
min: PropTypes.oneOfType([PropTypes.number, PropTypes.shape({
|
|
1105
|
-
valueOf: PropTypes.func.isRequired
|
|
1106
|
-
})]),
|
|
1107
|
-
offset: PropTypes.number,
|
|
1108
|
-
position: PropTypes.oneOf(['left', 'none', 'right']),
|
|
1109
|
-
reverse: PropTypes.bool,
|
|
1110
|
-
scaleType: PropTypes.oneOf(['time']),
|
|
1111
|
-
slotProps: PropTypes.object,
|
|
1112
|
-
slots: PropTypes.object,
|
|
1113
|
-
sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object]),
|
|
1114
|
-
tickInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.array, PropTypes.func]),
|
|
1115
|
-
tickLabelInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.func]),
|
|
1116
|
-
tickLabelPlacement: PropTypes.oneOf(['middle', 'tick']),
|
|
1117
|
-
tickLabelStyle: PropTypes.object,
|
|
1118
|
-
tickMaxStep: PropTypes.number,
|
|
1119
|
-
tickMinStep: PropTypes.number,
|
|
1120
|
-
tickNumber: PropTypes.number,
|
|
1121
|
-
tickPlacement: PropTypes.oneOf(['end', 'extremities', 'middle', 'start']),
|
|
1122
|
-
tickSize: PropTypes.number,
|
|
1123
|
-
tickSpacing: PropTypes.number,
|
|
1124
|
-
valueFormatter: PropTypes.func,
|
|
1125
|
-
width: PropTypes.number
|
|
1126
|
-
}), PropTypes.shape({
|
|
1127
|
-
axis: PropTypes.oneOf(['y']),
|
|
1128
|
-
classes: PropTypes.object,
|
|
1129
|
-
colorMap: PropTypes.oneOfType([PropTypes.shape({
|
|
1130
|
-
color: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.string.isRequired), PropTypes.func]).isRequired,
|
|
1131
|
-
max: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
|
|
1132
|
-
min: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
|
|
1133
|
-
type: PropTypes.oneOf(['continuous']).isRequired
|
|
1134
|
-
}), PropTypes.shape({
|
|
1135
|
-
colors: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
1136
|
-
thresholds: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]).isRequired).isRequired,
|
|
1137
|
-
type: PropTypes.oneOf(['piecewise']).isRequired
|
|
1138
|
-
})]),
|
|
1139
|
-
data: PropTypes.array,
|
|
1140
|
-
dataKey: PropTypes.string,
|
|
1141
|
-
disableLine: PropTypes.bool,
|
|
1142
|
-
disableTicks: PropTypes.bool,
|
|
1143
|
-
domainLimit: PropTypes.oneOfType([PropTypes.oneOf(['nice', 'strict']), PropTypes.func]),
|
|
1144
|
-
hideTooltip: PropTypes.bool,
|
|
1145
|
-
id: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
|
|
1146
|
-
ignoreTooltip: PropTypes.bool,
|
|
1147
|
-
label: PropTypes.string,
|
|
1148
|
-
labelStyle: PropTypes.object,
|
|
1149
|
-
max: PropTypes.oneOfType([PropTypes.number, PropTypes.shape({
|
|
1150
|
-
valueOf: PropTypes.func.isRequired
|
|
1151
|
-
})]),
|
|
1152
|
-
min: PropTypes.oneOfType([PropTypes.number, PropTypes.shape({
|
|
1153
|
-
valueOf: PropTypes.func.isRequired
|
|
1154
|
-
})]),
|
|
1155
|
-
offset: PropTypes.number,
|
|
1156
|
-
position: PropTypes.oneOf(['left', 'none', 'right']),
|
|
1157
|
-
reverse: PropTypes.bool,
|
|
1158
|
-
scaleType: PropTypes.oneOf(['utc']),
|
|
1159
|
-
slotProps: PropTypes.object,
|
|
1160
|
-
slots: PropTypes.object,
|
|
1161
|
-
sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object]),
|
|
1162
|
-
tickInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.array, PropTypes.func]),
|
|
1163
|
-
tickLabelInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.func]),
|
|
1164
|
-
tickLabelPlacement: PropTypes.oneOf(['middle', 'tick']),
|
|
1165
|
-
tickLabelStyle: PropTypes.object,
|
|
1166
|
-
tickMaxStep: PropTypes.number,
|
|
1167
|
-
tickMinStep: PropTypes.number,
|
|
1168
|
-
tickNumber: PropTypes.number,
|
|
1169
|
-
tickPlacement: PropTypes.oneOf(['end', 'extremities', 'middle', 'start']),
|
|
1170
|
-
tickSize: PropTypes.number,
|
|
1171
|
-
tickSpacing: PropTypes.number,
|
|
1172
|
-
valueFormatter: PropTypes.func,
|
|
1173
|
-
width: PropTypes.number
|
|
1174
|
-
}), PropTypes.shape({
|
|
1175
|
-
axis: PropTypes.oneOf(['y']),
|
|
1176
|
-
classes: PropTypes.object,
|
|
1177
|
-
colorMap: PropTypes.oneOfType([PropTypes.shape({
|
|
1178
|
-
color: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.string.isRequired), PropTypes.func]).isRequired,
|
|
1179
|
-
max: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
|
|
1180
|
-
min: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
|
|
1181
|
-
type: PropTypes.oneOf(['continuous']).isRequired
|
|
1182
|
-
}), PropTypes.shape({
|
|
1183
|
-
colors: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
1184
|
-
thresholds: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]).isRequired).isRequired,
|
|
1185
|
-
type: PropTypes.oneOf(['piecewise']).isRequired
|
|
1186
|
-
})]),
|
|
1187
|
-
data: PropTypes.array,
|
|
1188
|
-
dataKey: PropTypes.string,
|
|
1189
|
-
disableLine: PropTypes.bool,
|
|
1190
|
-
disableTicks: PropTypes.bool,
|
|
1191
|
-
domainLimit: PropTypes.oneOfType([PropTypes.oneOf(['nice', 'strict']), PropTypes.func]),
|
|
1192
|
-
hideTooltip: PropTypes.bool,
|
|
1193
|
-
id: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
|
|
1194
|
-
ignoreTooltip: PropTypes.bool,
|
|
1195
|
-
label: PropTypes.string,
|
|
1196
|
-
labelStyle: PropTypes.object,
|
|
1197
|
-
max: PropTypes.number,
|
|
1198
|
-
min: PropTypes.number,
|
|
1199
|
-
offset: PropTypes.number,
|
|
1200
|
-
position: PropTypes.oneOf(['left', 'none', 'right']),
|
|
1201
|
-
reverse: PropTypes.bool,
|
|
1202
|
-
scaleType: PropTypes.oneOf(['linear']),
|
|
1203
|
-
slotProps: PropTypes.object,
|
|
1204
|
-
slots: PropTypes.object,
|
|
1205
|
-
sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object]),
|
|
1206
|
-
tickInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.array, PropTypes.func]),
|
|
1207
|
-
tickLabelInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.func]),
|
|
1208
|
-
tickLabelPlacement: PropTypes.oneOf(['middle', 'tick']),
|
|
1209
|
-
tickLabelStyle: PropTypes.object,
|
|
1210
|
-
tickMaxStep: PropTypes.number,
|
|
1211
|
-
tickMinStep: PropTypes.number,
|
|
1212
|
-
tickNumber: PropTypes.number,
|
|
1213
|
-
tickPlacement: PropTypes.oneOf(['end', 'extremities', 'middle', 'start']),
|
|
1214
|
-
tickSize: PropTypes.number,
|
|
1215
|
-
tickSpacing: PropTypes.number,
|
|
1216
|
-
valueFormatter: PropTypes.func,
|
|
1217
|
-
width: PropTypes.number
|
|
1218
|
-
})]).isRequired)
|
|
1219
|
-
} : void 0;
|
|
1220
|
-
export { BarChart };
|