@mui/x-charts 8.0.0-alpha.1 → 8.0.0-alpha.11
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.js +1 -0
- package/BarChart/BarChart.d.ts +1 -2
- package/BarChart/BarChart.js +30 -17
- package/BarChart/BarChart.plugins.d.ts +12 -0
- package/BarChart/BarChart.plugins.js +5 -0
- package/BarChart/BarElement.js +1 -1
- package/BarChart/BarLabel/BarLabel.d.ts +2 -480
- package/BarChart/BarLabel/BarLabelItem.js +1 -1
- package/BarChart/BarLabel/BarLabelPlot.js +1 -1
- package/BarChart/BarLabel/barLabelClasses.d.ts +1 -1
- package/BarChart/BarPlot.js +8 -9
- package/BarChart/extremums.d.ts +3 -3
- package/BarChart/formatter.d.ts +2 -2
- package/BarChart/formatter.js +2 -1
- package/BarChart/getColor.d.ts +1 -1
- package/BarChart/legend.d.ts +1 -1
- package/BarChart/legend.js +1 -0
- package/BarChart/plugin.d.ts +2 -2
- package/BarChart/plugin.js +5 -2
- package/BarChart/tooltip.d.ts +3 -0
- package/BarChart/tooltip.js +25 -0
- package/BarChart/useBarChartProps.d.ts +6 -5
- package/BarChart/useBarChartProps.js +21 -11
- package/CHANGELOG.md +2007 -230
- package/ChartContainer/ChartContainer.d.ts +32 -4
- package/ChartContainer/ChartContainer.js +51 -21
- package/ChartContainer/useChartContainerProps.d.ts +7 -5
- package/ChartContainer/useChartContainerProps.js +18 -13
- package/ChartDataProvider/ChartDataProvider.d.ts +41 -0
- package/ChartDataProvider/ChartDataProvider.js +97 -0
- package/{ChartsOnAxisClickHandler → ChartDataProvider}/package.json +1 -1
- package/ChartDataProvider/useChartDataProviderProps.d.ts +11 -0
- package/ChartDataProvider/useChartDataProviderProps.js +45 -0
- package/ChartsAxis/ChartsAxis.js +5 -7
- package/ChartsAxis/axisClasses.js +2 -1
- package/ChartsAxisHighlight/ChartsXAxisHighlight.js +3 -3
- package/ChartsAxisHighlight/ChartsYAxisHighlight.js +3 -3
- package/ChartsGrid/ChartsGrid.js +9 -5
- package/ChartsGrid/ChartsHorizontalGrid.d.ts +2 -2
- package/ChartsGrid/ChartsHorizontalGrid.js +4 -3
- package/ChartsGrid/ChartsVerticalGrid.d.ts +2 -2
- package/ChartsGrid/ChartsVerticalGrid.js +4 -3
- package/ChartsLabel/ChartsLabel.d.ts +18 -0
- package/ChartsLabel/ChartsLabel.js +43 -0
- package/ChartsLabel/ChartsLabelGradient.d.ts +41 -0
- package/ChartsLabel/ChartsLabelGradient.js +135 -0
- package/ChartsLabel/ChartsLabelMark.d.ts +26 -0
- package/ChartsLabel/ChartsLabelMark.js +111 -0
- package/ChartsLabel/index.d.ts +7 -0
- package/ChartsLabel/index.js +6 -0
- package/ChartsLabel/labelClasses.d.ts +8 -0
- package/ChartsLabel/labelClasses.js +13 -0
- package/ChartsLabel/labelGradientClasses.d.ts +16 -0
- package/ChartsLabel/labelGradientClasses.js +18 -0
- package/ChartsLabel/labelMarkClasses.d.ts +18 -0
- package/ChartsLabel/labelMarkClasses.js +18 -0
- package/ChartsLabel/package.json +6 -0
- package/ChartsLegend/ChartsLegend.d.ts +18 -22
- package/ChartsLegend/ChartsLegend.js +100 -109
- package/ChartsLegend/ContinuousColorLegend.d.ts +29 -38
- package/ChartsLegend/ContinuousColorLegend.js +198 -321
- package/ChartsLegend/PiecewiseColorLegend.d.ts +27 -19
- package/ChartsLegend/PiecewiseColorLegend.js +201 -111
- package/ChartsLegend/chartsLegend.types.d.ts +17 -60
- package/ChartsLegend/chartsLegendClasses.d.ts +7 -8
- package/ChartsLegend/chartsLegendClasses.js +18 -3
- package/ChartsLegend/colorLegend.types.d.ts +13 -0
- package/ChartsLegend/continuousColorLegendClasses.d.ts +26 -0
- package/ChartsLegend/continuousColorLegendClasses.js +23 -0
- package/ChartsLegend/direction.d.ts +1 -0
- package/ChartsLegend/index.d.ts +13 -3
- package/ChartsLegend/index.js +9 -3
- package/ChartsLegend/legend.types.d.ts +6 -59
- package/ChartsLegend/legendContext.types.d.ts +55 -0
- package/ChartsLegend/onClickContextBuilder.d.ts +2 -0
- package/ChartsLegend/onClickContextBuilder.js +7 -0
- package/ChartsLegend/piecewiseColorDefaultLabelFormatter.d.ts +2 -0
- package/ChartsLegend/piecewiseColorDefaultLabelFormatter.js +9 -0
- package/ChartsLegend/piecewiseColorLegend.types.d.ts +26 -0
- package/ChartsLegend/piecewiseColorLegendClasses.d.ts +28 -0
- package/ChartsLegend/piecewiseColorLegendClasses.js +23 -0
- package/ChartsLegend/useAxis.d.ts +1 -1
- package/ChartsLegend/useAxis.js +7 -6
- package/ChartsReferenceLine/ChartsXReferenceLine.d.ts +1 -1
- package/ChartsReferenceLine/ChartsYReferenceLine.d.ts +1 -1
- package/ChartsSurface/ChartsSurface.d.ts +14 -6
- package/ChartsSurface/ChartsSurface.js +46 -34
- package/ChartsTooltip/ChartsAxisTooltipContent.js +11 -6
- package/ChartsTooltip/ChartsItemTooltipContent.js +6 -3
- package/ChartsTooltip/ChartsTooltip.js +2 -20
- package/ChartsTooltip/ChartsTooltipContainer.js +7 -25
- package/ChartsTooltip/ChartsTooltipTable.d.ts +0 -6
- package/ChartsTooltip/ChartsTooltipTable.js +15 -33
- package/ChartsTooltip/chartsTooltipClasses.d.ts +3 -1
- package/ChartsTooltip/chartsTooltipClasses.js +3 -2
- package/ChartsTooltip/index.d.ts +1 -0
- package/ChartsTooltip/index.js +2 -1
- package/ChartsTooltip/useAxisTooltip.d.ts +3 -1
- package/ChartsTooltip/useAxisTooltip.js +16 -13
- package/ChartsTooltip/useItemTooltip.d.ts +8 -6
- package/ChartsTooltip/useItemTooltip.js +20 -45
- package/ChartsTooltip/utils.js +2 -0
- package/ChartsVoronoiHandler/ChartsVoronoiHandler.js +22 -20
- package/ChartsXAxis/ChartsXAxis.js +14 -25
- package/ChartsYAxis/ChartsYAxis.js +10 -22
- package/Gauge/Gauge.d.ts +1 -1
- package/Gauge/Gauge.js +5 -7
- package/Gauge/GaugeContainer.d.ts +4 -11
- package/Gauge/GaugeContainer.js +44 -83
- package/Gauge/GaugeProvider.js +2 -0
- package/LineChart/AnimatedArea.js +2 -1
- package/LineChart/AnimatedLine.js +2 -1
- package/LineChart/AppearingMask.js +2 -1
- package/LineChart/AreaElement.js +1 -1
- package/LineChart/AreaPlot.js +60 -26
- package/LineChart/CircleMarkElement.d.ts +0 -4
- package/LineChart/CircleMarkElement.js +7 -11
- package/LineChart/LineChart.d.ts +1 -6
- package/LineChart/LineChart.js +33 -24
- package/LineChart/LineChart.plugins.d.ts +12 -0
- package/LineChart/LineChart.plugins.js +5 -0
- package/LineChart/LineElement.js +1 -1
- package/LineChart/LineHighlightElement.d.ts +5 -1
- package/LineChart/LineHighlightElement.js +29 -9
- package/LineChart/LineHighlightPlot.js +21 -16
- package/LineChart/LinePlot.js +60 -25
- package/LineChart/MarkElement.js +7 -5
- package/LineChart/MarkPlot.d.ts +0 -6
- package/LineChart/MarkPlot.js +20 -23
- package/LineChart/extremums.d.ts +3 -3
- package/LineChart/formatter.d.ts +2 -2
- package/LineChart/formatter.js +3 -1
- package/LineChart/getColor.d.ts +1 -1
- package/LineChart/legend.d.ts +1 -1
- package/LineChart/legend.js +1 -0
- package/LineChart/plugin.d.ts +2 -2
- package/LineChart/plugin.js +5 -2
- package/LineChart/tooltip.d.ts +3 -0
- package/LineChart/tooltip.js +25 -0
- package/LineChart/useLineChartProps.d.ts +6 -5
- package/LineChart/useLineChartProps.js +22 -14
- package/PieChart/PieArc.js +14 -6
- package/PieChart/PieArcLabel.js +13 -9
- package/PieChart/PieArcLabelPlot.js +4 -3
- package/PieChart/PieArcPlot.js +13 -16
- package/PieChart/PieChart.d.ts +3 -1
- package/PieChart/PieChart.js +61 -162
- package/PieChart/PieChart.plugins.d.ts +5 -0
- package/PieChart/PieChart.plugins.js +3 -0
- package/PieChart/PiePlot.js +2 -2
- package/PieChart/dataTransform/transition.d.ts +2 -2
- package/PieChart/dataTransform/transition.js +8 -8
- package/PieChart/dataTransform/useTransformData.d.ts +1 -0
- package/PieChart/dataTransform/useTransformData.js +3 -2
- package/PieChart/formatter.d.ts +2 -2
- package/PieChart/formatter.js +4 -1
- package/PieChart/getColor.d.ts +1 -1
- package/PieChart/getPieCoordinates.d.ts +2 -2
- package/PieChart/legend.d.ts +1 -1
- package/PieChart/legend.js +4 -3
- package/PieChart/plugin.d.ts +2 -2
- package/PieChart/plugin.js +5 -2
- package/PieChart/tooltip.d.ts +3 -0
- package/PieChart/tooltip.js +29 -0
- package/README.md +1 -1
- package/ScatterChart/Scatter.js +12 -10
- package/ScatterChart/ScatterChart.d.ts +1 -2
- package/ScatterChart/ScatterChart.js +39 -21
- package/ScatterChart/ScatterChart.plugins.d.ts +12 -0
- package/ScatterChart/ScatterChart.plugins.js +5 -0
- package/ScatterChart/ScatterPlot.js +11 -10
- package/ScatterChart/extremums.d.ts +3 -3
- package/ScatterChart/extremums.js +1 -1
- package/ScatterChart/formatter.d.ts +2 -2
- package/ScatterChart/formatter.js +7 -5
- package/ScatterChart/getColor.d.ts +1 -1
- package/ScatterChart/legend.d.ts +1 -1
- package/ScatterChart/legend.js +1 -0
- package/ScatterChart/plugin.d.ts +2 -2
- package/ScatterChart/plugin.js +5 -2
- package/ScatterChart/tooltip.d.ts +3 -0
- package/ScatterChart/tooltip.js +25 -0
- package/ScatterChart/useScatterChartProps.d.ts +6 -5
- package/ScatterChart/useScatterChartProps.js +19 -7
- package/SparkLineChart/SparkLineChart.d.ts +14 -2
- package/SparkLineChart/SparkLineChart.js +40 -17
- package/colorPalettes/colorPalettes.d.ts +5 -0
- package/colorPalettes/colorPalettes.js +3 -0
- package/constants/index.d.ts +1 -0
- package/constants/index.js +2 -1
- package/context/AnimationProvider/AnimationProvider.js +1 -1
- package/context/ChartProvider/ChartContext.d.ts +6 -0
- package/context/ChartProvider/ChartContext.js +8 -0
- package/context/ChartProvider/ChartProvider.d.ts +8 -0
- package/context/ChartProvider/ChartProvider.js +40 -0
- package/context/ChartProvider/ChartProvider.types.d.ts +40 -0
- package/context/ChartProvider/index.d.ts +3 -0
- package/context/ChartProvider/index.js +3 -0
- package/context/ChartProvider/useChartContext.d.ts +3 -0
- package/context/ChartProvider/useChartContext.js +11 -0
- package/context/PolarProvider/PolarProvider.d.ts +0 -4
- package/context/PolarProvider/PolarProvider.js +59 -47
- package/context/PolarProvider/getAxisExtremum.d.ts +0 -4
- package/context/PolarProvider/getAxisExtremum.js +48 -20
- package/context/PolarProvider/usePolarContext.d.ts +0 -2
- package/context/PolarProvider/usePolarContext.js +9 -8
- package/context/index.d.ts +1 -5
- package/context/index.js +1 -3
- package/hooks/index.d.ts +5 -0
- package/hooks/index.js +6 -1
- package/hooks/useAxis.d.ts +9 -1
- package/hooks/useAxis.js +32 -6
- package/hooks/useAxisEvents.d.ts +0 -1
- package/hooks/useAxisEvents.js +0 -161
- package/hooks/useChartGradientId.d.ts +31 -0
- package/hooks/useChartGradientId.js +47 -0
- package/hooks/useChartId.d.ts +1 -1
- package/hooks/useChartId.js +5 -6
- package/hooks/useColorScale.js +5 -6
- package/hooks/useDrawingArea.d.ts +16 -2
- package/hooks/useDrawingArea.js +5 -20
- package/hooks/useInteractionItemProps.js +10 -27
- package/hooks/useItemHighlighted.d.ts +23 -0
- package/hooks/useItemHighlighted.js +23 -0
- package/hooks/useItemHighlightedGetter.d.ts +12 -0
- package/hooks/useItemHighlightedGetter.js +23 -0
- package/hooks/useLegend.d.ts +13 -0
- package/hooks/useLegend.js +30 -0
- package/hooks/useSeries.d.ts +11 -6
- package/hooks/useSeries.js +5 -10
- package/hooks/useSvgRef.d.ts +1 -1
- package/hooks/useSvgRef.js +4 -8
- package/hooks/useZAxis.d.ts +7 -0
- package/hooks/useZAxis.js +27 -0
- package/index.d.ts +2 -1
- package/index.js +4 -3
- package/internals/calculateMargins.d.ts +7 -0
- package/internals/calculateMargins.js +25 -0
- package/internals/components/ChartsAxesGradients/ChartsAxesGradients.d.ts +0 -2
- package/internals/components/ChartsAxesGradients/ChartsAxesGradients.js +65 -32
- package/internals/components/ChartsAxesGradients/ChartsContinuousGradient.js +6 -6
- package/internals/components/ChartsAxesGradients/ChartsContinuousGradientObjectBound.d.ts +13 -0
- package/internals/components/ChartsAxesGradients/ChartsContinuousGradientObjectBound.js +61 -0
- package/internals/components/ChartsAxesGradients/ChartsPiecewiseGradient.d.ts +1 -1
- package/internals/components/ChartsAxesGradients/ChartsPiecewiseGradient.js +6 -0
- package/internals/components/ChartsWrapper/ChartsWrapper.d.ts +18 -0
- package/internals/components/ChartsWrapper/ChartsWrapper.js +66 -0
- package/internals/components/ChartsWrapper/index.d.ts +1 -0
- package/internals/components/ChartsWrapper/index.js +1 -0
- package/internals/consumeSlots.d.ts +48 -0
- package/internals/consumeSlots.js +101 -0
- package/internals/consumeThemeProps.d.ts +50 -0
- package/internals/consumeThemeProps.js +70 -0
- package/internals/defaultizeColor.d.ts +29 -22
- package/internals/defaultizeColor.js +1 -2
- package/internals/getCurve.d.ts +2 -2
- package/internals/getCurve.js +14 -26
- package/internals/index.d.ts +18 -13
- package/internals/index.js +21 -14
- package/internals/plugins/allPlugins.d.ts +14 -0
- package/internals/plugins/allPlugins.js +7 -0
- package/internals/plugins/corePlugins/corePlugins.d.ts +10 -0
- package/internals/plugins/corePlugins/corePlugins.js +9 -0
- package/internals/plugins/corePlugins/index.d.ts +2 -0
- package/internals/plugins/corePlugins/index.js +1 -0
- package/internals/plugins/corePlugins/useChartDimensions/index.d.ts +3 -0
- package/internals/plugins/corePlugins/useChartDimensions/index.js +2 -0
- package/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.d.ts +3 -0
- package/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.js +175 -0
- package/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.selectors.d.ts +264 -0
- package/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.selectors.js +25 -0
- package/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.types.d.ts +99 -0
- package/internals/plugins/corePlugins/useChartId/index.d.ts +3 -0
- package/internals/plugins/corePlugins/useChartId/index.js +2 -0
- package/internals/plugins/corePlugins/useChartId/useChartId.d.ts +3 -0
- package/internals/plugins/corePlugins/useChartId/useChartId.js +32 -0
- package/internals/plugins/corePlugins/useChartId/useChartId.selectors.d.ts +36 -0
- package/internals/plugins/corePlugins/useChartId/useChartId.selectors.js +9 -0
- package/internals/plugins/corePlugins/useChartId/useChartId.types.d.ts +20 -0
- package/internals/plugins/corePlugins/useChartId/useChartId.utils.d.ts +1 -0
- package/internals/plugins/corePlugins/useChartId/useChartId.utils.js +5 -0
- package/internals/plugins/corePlugins/useChartSeries/index.d.ts +3 -0
- package/internals/plugins/corePlugins/useChartSeries/index.js +2 -0
- package/internals/plugins/corePlugins/useChartSeries/processSeries.d.ts +18 -0
- package/{modern/context/SeriesProvider → internals/plugins/corePlugins/useChartSeries}/processSeries.js +9 -6
- package/internals/plugins/corePlugins/useChartSeries/useChartSeries.d.ts +3 -0
- package/internals/plugins/corePlugins/useChartSeries/useChartSeries.js +72 -0
- package/internals/plugins/corePlugins/useChartSeries/useChartSeries.selectors.d.ts +61 -0
- package/internals/plugins/corePlugins/useChartSeries/useChartSeries.selectors.js +4 -0
- package/internals/plugins/corePlugins/useChartSeries/useChartSeries.types.d.ts +54 -0
- package/internals/plugins/corePlugins/useChartSeries/useColorProcessor.d.ts +10 -0
- package/internals/plugins/corePlugins/useChartSeries/useColorProcessor.js +21 -0
- package/internals/plugins/featurePlugins/useChartCartesianAxis/computeAxisValue.d.ts +29 -0
- package/internals/{computeAxisValue.js → plugins/featurePlugins/useChartCartesianAxis/computeAxisValue.js} +19 -27
- package/internals/plugins/featurePlugins/useChartCartesianAxis/createAxisFilterMapper.d.ts +18 -0
- package/internals/plugins/featurePlugins/useChartCartesianAxis/createAxisFilterMapper.js +61 -0
- package/internals/plugins/featurePlugins/useChartCartesianAxis/defaultizeAxis.d.ts +39 -0
- package/{modern/context/ChartDataProvider/useDefaultizeAxis.js → internals/plugins/featurePlugins/useChartCartesianAxis/defaultizeAxis.js} +3 -11
- package/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisExtremum.d.ts +6 -0
- package/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisExtremum.js +22 -0
- package/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisValue.d.ts +9 -0
- package/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisValue.js +59 -0
- package/internals/plugins/featurePlugins/useChartCartesianAxis/index.d.ts +6 -0
- package/internals/plugins/featurePlugins/useChartCartesianAxis/index.js +5 -0
- package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxis.d.ts +3 -0
- package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxis.js +205 -0
- package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxis.selectors.d.ts +1336 -0
- package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxis.selectors.js +89 -0
- package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxis.types.d.ts +92 -0
- package/internals/plugins/featurePlugins/useChartCartesianAxis/zoom.types.d.ts +18 -0
- package/internals/plugins/featurePlugins/useChartHighlight/createIsFaded.d.ts +3 -0
- package/internals/plugins/featurePlugins/useChartHighlight/createIsFaded.js +12 -0
- package/internals/plugins/featurePlugins/useChartHighlight/createIsHighlighted.d.ts +3 -0
- package/internals/plugins/featurePlugins/useChartHighlight/createIsHighlighted.js +12 -0
- package/internals/plugins/featurePlugins/useChartHighlight/highlightConfig.types.d.ts +20 -0
- package/internals/plugins/featurePlugins/useChartHighlight/index.d.ts +4 -0
- package/internals/plugins/featurePlugins/useChartHighlight/index.js +2 -0
- package/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.d.ts +3 -0
- package/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.js +44 -0
- package/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.selectors.d.ts +678 -0
- package/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.selectors.js +31 -0
- package/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.types.d.ts +71 -0
- package/internals/plugins/featurePlugins/useChartInteraction/index.d.ts +3 -0
- package/internals/plugins/featurePlugins/useChartInteraction/index.js +2 -0
- package/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.d.ts +3 -0
- package/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.js +90 -0
- package/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.selectors.d.ts +376 -0
- package/{context/InteractionSelectors.js → internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.selectors.js} +2 -4
- package/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.types.d.ts +62 -0
- package/internals/plugins/featurePlugins/useChartZAxis/index.d.ts +3 -0
- package/internals/plugins/featurePlugins/useChartZAxis/index.js +2 -0
- package/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.d.ts +3 -0
- package/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.js +86 -0
- package/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.selectors.d.ts +45 -0
- package/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.selectors.js +3 -0
- package/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.types.d.ts +39 -0
- package/internals/plugins/featurePlugins/useChartZAxis/utils.d.ts +0 -0
- package/internals/plugins/featurePlugins/useChartZAxis/utils.js +0 -0
- package/internals/plugins/models/chart.d.ts +14 -0
- package/internals/plugins/models/helpers.d.ts +7 -0
- package/internals/plugins/models/index.d.ts +4 -35
- package/internals/plugins/models/index.js +4 -1
- package/internals/plugins/models/plugin.d.ts +105 -0
- package/internals/plugins/models/seriesConfig/colorProcessor.types.d.ts +5 -0
- package/internals/plugins/models/seriesConfig/extremumGetter.types.d.ts +22 -0
- package/internals/plugins/models/seriesConfig/extremumGetter.types.js +1 -0
- package/internals/plugins/models/seriesConfig/index.d.ts +6 -0
- package/internals/plugins/models/seriesConfig/index.js +6 -0
- package/internals/plugins/models/seriesConfig/legendGetter.types.d.ts +4 -0
- package/internals/plugins/models/seriesConfig/legendGetter.types.js +1 -0
- package/internals/plugins/models/seriesConfig/seriesConfig.types.d.ts +18 -0
- package/internals/plugins/models/seriesConfig/seriesConfig.types.js +1 -0
- package/internals/plugins/models/seriesConfig/seriesProcessor.types.d.ts +16 -0
- package/internals/plugins/models/seriesConfig/seriesProcessor.types.js +1 -0
- package/internals/plugins/models/seriesConfig/tooltipGetter.types.d.ts +7 -0
- package/internals/plugins/models/seriesConfig/tooltipGetter.types.js +1 -0
- package/internals/plugins/utils/ChartStore.d.ts +9 -8
- package/internals/plugins/utils/ChartStore.js +0 -2
- package/internals/plugins/utils/selectors.d.ts +2 -2
- package/internals/store/extractPluginParamsFromProps.d.ts +7 -0
- package/internals/store/extractPluginParamsFromProps.js +28 -0
- package/internals/store/useChartModels.d.ts +7 -0
- package/internals/store/useChartModels.js +64 -0
- package/internals/store/useCharts.d.ts +16 -0
- package/internals/store/useCharts.js +83 -0
- package/internals/store/useCharts.types.d.ts +5 -0
- package/internals/store/useCharts.types.js +1 -0
- package/internals/store/useSelector.d.ts +4 -0
- package/internals/store/useStore.d.ts +9 -0
- package/internals/store/useStore.js +9 -0
- package/models/axis.d.ts +18 -13
- package/models/axis.js +5 -1
- package/models/curve.d.ts +6 -0
- package/models/curve.js +1 -0
- package/models/index.d.ts +3 -1
- package/models/layout.d.ts +2 -1
- package/models/position.d.ts +10 -0
- package/models/position.js +1 -0
- package/models/seriesType/common.d.ts +8 -1
- package/models/seriesType/line.d.ts +12 -1
- package/models/seriesType/pie.d.ts +7 -1
- package/models/seriesType/scatter.d.ts +3 -3
- package/modern/BarChart/AnimatedBarElement.js +1 -0
- package/modern/BarChart/BarChart.js +30 -17
- package/modern/BarChart/BarChart.plugins.js +5 -0
- package/modern/BarChart/BarElement.js +1 -1
- package/modern/BarChart/BarLabel/BarLabelItem.js +1 -1
- package/modern/BarChart/BarLabel/BarLabelPlot.js +1 -1
- package/modern/BarChart/BarPlot.js +8 -9
- package/modern/BarChart/formatter.js +2 -1
- package/modern/BarChart/legend.js +1 -0
- package/modern/BarChart/plugin.js +5 -2
- package/modern/BarChart/tooltip.js +25 -0
- package/modern/BarChart/useBarChartProps.js +21 -11
- package/modern/ChartContainer/ChartContainer.js +51 -21
- package/modern/ChartContainer/useChartContainerProps.js +18 -13
- package/modern/ChartDataProvider/ChartDataProvider.js +97 -0
- package/modern/ChartDataProvider/useChartDataProviderProps.js +45 -0
- package/modern/ChartsAxis/ChartsAxis.js +5 -7
- package/modern/ChartsAxis/axisClasses.js +2 -1
- package/modern/ChartsAxisHighlight/ChartsXAxisHighlight.js +3 -3
- package/modern/ChartsAxisHighlight/ChartsYAxisHighlight.js +3 -3
- package/modern/ChartsGrid/ChartsGrid.js +9 -5
- package/modern/ChartsGrid/ChartsHorizontalGrid.js +4 -3
- package/modern/ChartsGrid/ChartsVerticalGrid.js +4 -3
- package/modern/ChartsLabel/ChartsLabel.js +43 -0
- package/modern/ChartsLabel/ChartsLabelGradient.js +135 -0
- package/modern/ChartsLabel/ChartsLabelMark.js +111 -0
- package/modern/ChartsLabel/index.js +6 -0
- package/modern/ChartsLabel/labelClasses.js +13 -0
- package/modern/ChartsLabel/labelGradientClasses.js +18 -0
- package/modern/ChartsLabel/labelMarkClasses.js +18 -0
- package/modern/ChartsLegend/ChartsLegend.js +100 -109
- package/modern/ChartsLegend/ContinuousColorLegend.js +198 -321
- package/modern/ChartsLegend/PiecewiseColorLegend.js +201 -111
- package/modern/ChartsLegend/chartsLegendClasses.js +18 -3
- package/modern/ChartsLegend/colorLegend.types.js +1 -0
- package/modern/ChartsLegend/continuousColorLegendClasses.js +23 -0
- package/modern/ChartsLegend/direction.js +1 -0
- package/modern/ChartsLegend/index.js +9 -3
- package/modern/ChartsLegend/legendContext.types.js +1 -0
- package/modern/ChartsLegend/onClickContextBuilder.js +7 -0
- package/modern/ChartsLegend/piecewiseColorDefaultLabelFormatter.js +9 -0
- package/modern/ChartsLegend/piecewiseColorLegend.types.js +1 -0
- package/modern/ChartsLegend/piecewiseColorLegendClasses.js +23 -0
- package/modern/ChartsLegend/useAxis.js +7 -6
- package/modern/ChartsSurface/ChartsSurface.js +46 -34
- package/modern/ChartsTooltip/ChartsAxisTooltipContent.js +11 -6
- package/modern/ChartsTooltip/ChartsItemTooltipContent.js +6 -3
- package/modern/ChartsTooltip/ChartsTooltip.js +2 -20
- package/modern/ChartsTooltip/ChartsTooltipContainer.js +7 -25
- package/modern/ChartsTooltip/ChartsTooltipTable.js +15 -33
- package/modern/ChartsTooltip/chartsTooltipClasses.js +3 -2
- package/modern/ChartsTooltip/index.js +2 -1
- package/modern/ChartsTooltip/useAxisTooltip.js +16 -13
- package/modern/ChartsTooltip/useItemTooltip.js +20 -45
- package/modern/ChartsTooltip/utils.js +2 -0
- package/modern/ChartsVoronoiHandler/ChartsVoronoiHandler.js +22 -20
- package/modern/ChartsXAxis/ChartsXAxis.js +14 -25
- package/modern/ChartsYAxis/ChartsYAxis.js +10 -22
- package/modern/Gauge/Gauge.js +5 -7
- package/modern/Gauge/GaugeContainer.js +44 -83
- package/modern/Gauge/GaugeProvider.js +2 -0
- package/modern/LineChart/AnimatedArea.js +2 -1
- package/modern/LineChart/AnimatedLine.js +2 -1
- package/modern/LineChart/AppearingMask.js +2 -1
- package/modern/LineChart/AreaElement.js +1 -1
- package/modern/LineChart/AreaPlot.js +60 -26
- package/modern/LineChart/CircleMarkElement.js +7 -11
- package/modern/LineChart/LineChart.js +33 -24
- package/modern/LineChart/LineChart.plugins.js +5 -0
- package/modern/LineChart/LineElement.js +1 -1
- package/modern/LineChart/LineHighlightElement.js +29 -9
- package/modern/LineChart/LineHighlightPlot.js +21 -16
- package/modern/LineChart/LinePlot.js +60 -25
- package/modern/LineChart/MarkElement.js +7 -5
- package/modern/LineChart/MarkPlot.js +20 -23
- package/modern/LineChart/formatter.js +3 -1
- package/modern/LineChart/legend.js +1 -0
- package/modern/LineChart/plugin.js +5 -2
- package/modern/LineChart/tooltip.js +25 -0
- package/modern/LineChart/useLineChartProps.js +22 -14
- package/modern/PieChart/PieArc.js +14 -6
- package/modern/PieChart/PieArcLabel.js +13 -9
- package/modern/PieChart/PieArcLabelPlot.js +4 -3
- package/modern/PieChart/PieArcPlot.js +13 -16
- package/modern/PieChart/PieChart.js +61 -162
- package/modern/PieChart/PieChart.plugins.js +3 -0
- package/modern/PieChart/PiePlot.js +2 -2
- package/modern/PieChart/dataTransform/transition.js +8 -8
- package/modern/PieChart/dataTransform/useTransformData.js +3 -2
- package/modern/PieChart/formatter.js +4 -1
- package/modern/PieChart/legend.js +4 -3
- package/modern/PieChart/plugin.js +5 -2
- package/modern/PieChart/tooltip.js +29 -0
- package/modern/ScatterChart/Scatter.js +12 -10
- package/modern/ScatterChart/ScatterChart.js +39 -21
- package/modern/ScatterChart/ScatterChart.plugins.js +5 -0
- package/modern/ScatterChart/ScatterPlot.js +11 -10
- package/modern/ScatterChart/extremums.js +1 -1
- package/modern/ScatterChart/formatter.js +7 -5
- package/modern/ScatterChart/legend.js +1 -0
- package/modern/ScatterChart/plugin.js +5 -2
- package/modern/ScatterChart/tooltip.js +25 -0
- package/modern/ScatterChart/useScatterChartProps.js +19 -7
- package/modern/SparkLineChart/SparkLineChart.js +40 -17
- package/modern/colorPalettes/colorPalettes.js +3 -0
- package/modern/constants/index.js +2 -1
- package/modern/context/AnimationProvider/AnimationProvider.js +1 -1
- package/modern/context/ChartProvider/ChartContext.js +8 -0
- package/modern/context/ChartProvider/ChartProvider.js +40 -0
- package/modern/context/ChartProvider/ChartProvider.types.js +1 -0
- package/modern/context/ChartProvider/index.js +3 -0
- package/modern/context/ChartProvider/useChartContext.js +11 -0
- package/modern/context/PolarProvider/PolarProvider.js +59 -47
- package/modern/context/PolarProvider/getAxisExtremum.js +48 -20
- package/modern/context/PolarProvider/usePolarContext.js +9 -8
- package/modern/context/index.js +1 -3
- package/modern/hooks/index.js +6 -1
- package/modern/hooks/useAxis.js +32 -6
- package/modern/hooks/useAxisEvents.js +0 -161
- package/modern/hooks/useChartGradientId.js +47 -0
- package/modern/hooks/useChartId.js +5 -6
- package/modern/hooks/useColorScale.js +5 -6
- package/modern/hooks/useDrawingArea.js +5 -20
- package/modern/hooks/useInteractionItemProps.js +10 -27
- package/modern/hooks/useItemHighlighted.js +23 -0
- package/modern/hooks/useItemHighlightedGetter.js +23 -0
- package/modern/hooks/useLegend.js +30 -0
- package/modern/hooks/useSeries.js +5 -10
- package/modern/hooks/useSvgRef.js +4 -8
- package/modern/hooks/useZAxis.js +27 -0
- package/modern/index.js +4 -3
- package/modern/internals/calculateMargins.js +25 -0
- package/modern/internals/components/ChartsAxesGradients/ChartsAxesGradients.js +65 -32
- package/modern/internals/components/ChartsAxesGradients/ChartsContinuousGradient.js +6 -6
- package/modern/internals/components/ChartsAxesGradients/ChartsContinuousGradientObjectBound.js +61 -0
- package/modern/internals/components/ChartsAxesGradients/ChartsPiecewiseGradient.js +6 -0
- package/modern/internals/components/ChartsWrapper/ChartsWrapper.js +66 -0
- package/modern/internals/components/ChartsWrapper/index.js +1 -0
- package/modern/internals/consumeSlots.js +101 -0
- package/modern/internals/consumeThemeProps.js +70 -0
- package/modern/internals/defaultizeColor.js +1 -2
- package/modern/internals/getCurve.js +14 -26
- package/modern/internals/index.js +21 -14
- package/modern/internals/plugins/allPlugins.js +7 -0
- package/modern/internals/plugins/corePlugins/corePlugins.js +9 -0
- package/modern/internals/plugins/corePlugins/index.js +1 -0
- package/modern/internals/plugins/corePlugins/useChartDimensions/index.js +2 -0
- package/modern/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.js +175 -0
- package/modern/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.selectors.js +25 -0
- package/modern/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.types.js +1 -0
- package/modern/internals/plugins/corePlugins/useChartId/index.js +2 -0
- package/modern/internals/plugins/corePlugins/useChartId/useChartId.js +32 -0
- package/modern/internals/plugins/corePlugins/useChartId/useChartId.selectors.js +9 -0
- package/modern/internals/plugins/corePlugins/useChartId/useChartId.types.js +1 -0
- package/modern/internals/plugins/corePlugins/useChartId/useChartId.utils.js +5 -0
- package/modern/internals/plugins/corePlugins/useChartSeries/index.js +2 -0
- package/{context/SeriesProvider → modern/internals/plugins/corePlugins/useChartSeries}/processSeries.js +9 -6
- package/modern/internals/plugins/corePlugins/useChartSeries/useChartSeries.js +72 -0
- package/modern/internals/plugins/corePlugins/useChartSeries/useChartSeries.selectors.js +4 -0
- package/modern/internals/plugins/corePlugins/useChartSeries/useChartSeries.types.js +1 -0
- package/modern/internals/plugins/corePlugins/useChartSeries/useColorProcessor.js +21 -0
- package/modern/internals/{computeAxisValue.js → plugins/featurePlugins/useChartCartesianAxis/computeAxisValue.js} +19 -27
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/createAxisFilterMapper.js +61 -0
- package/{context/ChartDataProvider/useDefaultizeAxis.js → modern/internals/plugins/featurePlugins/useChartCartesianAxis/defaultizeAxis.js} +3 -11
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisExtremum.js +22 -0
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisValue.js +59 -0
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/index.js +5 -0
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxis.js +205 -0
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxis.selectors.js +89 -0
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxis.types.js +1 -0
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/zoom.types.js +1 -0
- package/modern/internals/plugins/featurePlugins/useChartHighlight/createIsFaded.js +12 -0
- package/modern/internals/plugins/featurePlugins/useChartHighlight/createIsHighlighted.js +12 -0
- package/modern/internals/plugins/featurePlugins/useChartHighlight/highlightConfig.types.js +1 -0
- package/modern/internals/plugins/featurePlugins/useChartHighlight/index.js +2 -0
- package/modern/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.js +44 -0
- package/modern/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.selectors.js +31 -0
- package/modern/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.types.js +1 -0
- package/modern/internals/plugins/featurePlugins/useChartInteraction/index.js +2 -0
- package/modern/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.js +90 -0
- package/modern/{context/InteractionSelectors.js → internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.selectors.js} +2 -4
- package/modern/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.types.js +1 -0
- package/modern/internals/plugins/featurePlugins/useChartZAxis/index.js +2 -0
- package/modern/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.js +86 -0
- package/modern/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.selectors.js +3 -0
- package/modern/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.types.js +1 -0
- package/modern/internals/plugins/featurePlugins/useChartZAxis/utils.js +0 -0
- package/modern/internals/plugins/models/chart.js +1 -0
- package/modern/internals/plugins/models/helpers.js +1 -0
- package/modern/internals/plugins/models/index.js +4 -1
- package/modern/internals/plugins/models/plugin.js +1 -0
- package/modern/internals/plugins/models/seriesConfig/colorProcessor.types.js +1 -0
- package/modern/internals/plugins/models/seriesConfig/extremumGetter.types.js +1 -0
- package/modern/internals/plugins/models/seriesConfig/index.js +6 -0
- package/modern/internals/plugins/models/seriesConfig/legendGetter.types.js +1 -0
- package/modern/internals/plugins/models/seriesConfig/seriesConfig.types.js +1 -0
- package/modern/internals/plugins/models/seriesConfig/seriesProcessor.types.js +1 -0
- package/modern/internals/plugins/models/seriesConfig/tooltipGetter.types.js +1 -0
- package/modern/internals/plugins/utils/ChartStore.js +0 -2
- package/modern/internals/store/extractPluginParamsFromProps.js +28 -0
- package/modern/internals/store/useChartModels.js +64 -0
- package/modern/internals/store/useCharts.js +83 -0
- package/modern/internals/store/useCharts.types.js +1 -0
- package/modern/internals/store/useStore.js +9 -0
- package/modern/models/axis.js +5 -1
- package/modern/models/curve.js +1 -0
- package/modern/models/position.js +1 -0
- package/node/BarChart/AnimatedBarElement.js +1 -0
- package/node/BarChart/BarChart.js +30 -17
- package/node/BarChart/BarChart.plugins.js +11 -0
- package/node/BarChart/BarElement.js +2 -2
- package/node/BarChart/BarLabel/BarLabelItem.js +2 -2
- package/node/BarChart/BarLabel/BarLabelPlot.js +1 -1
- package/node/BarChart/BarPlot.js +6 -6
- package/node/BarChart/formatter.js +2 -1
- package/node/BarChart/legend.js +1 -0
- package/node/BarChart/plugin.js +5 -2
- package/node/BarChart/tooltip.js +31 -0
- package/node/BarChart/useBarChartProps.js +20 -11
- package/node/ChartContainer/ChartContainer.js +51 -21
- package/node/ChartContainer/useChartContainerProps.js +18 -13
- package/node/ChartDataProvider/ChartDataProvider.js +103 -0
- package/node/ChartDataProvider/useChartDataProviderProps.js +52 -0
- package/node/ChartsAxis/ChartsAxis.js +5 -7
- package/node/ChartsAxis/axisClasses.js +5 -3
- package/node/ChartsAxisHighlight/ChartsXAxisHighlight.js +4 -4
- package/node/ChartsAxisHighlight/ChartsYAxisHighlight.js +4 -4
- package/node/ChartsGrid/ChartsGrid.js +9 -5
- package/node/ChartsGrid/ChartsHorizontalGrid.js +4 -3
- package/node/ChartsGrid/ChartsVerticalGrid.js +4 -3
- package/node/ChartsLabel/ChartsLabel.js +49 -0
- package/node/ChartsLabel/ChartsLabelGradient.js +141 -0
- package/node/ChartsLabel/ChartsLabelMark.js +117 -0
- package/node/ChartsLabel/index.js +26 -0
- package/node/ChartsLabel/labelClasses.js +22 -0
- package/node/ChartsLabel/labelGradientClasses.js +27 -0
- package/node/ChartsLabel/labelMarkClasses.js +27 -0
- package/node/ChartsLegend/ChartsLegend.js +99 -108
- package/node/ChartsLegend/ContinuousColorLegend.js +199 -322
- package/node/ChartsLegend/PiecewiseColorLegend.js +201 -111
- package/node/ChartsLegend/chartsLegendClasses.js +21 -5
- package/node/ChartsLegend/continuousColorLegendClasses.js +31 -0
- package/node/ChartsLegend/index.js +80 -16
- package/node/ChartsLegend/onClickContextBuilder.js +14 -0
- package/node/ChartsLegend/piecewiseColorDefaultLabelFormatter.js +15 -0
- package/node/ChartsLegend/piecewiseColorLegendClasses.js +31 -0
- package/node/ChartsLegend/useAxis.js +7 -7
- package/node/ChartsSurface/ChartsSurface.js +46 -34
- package/node/ChartsTooltip/ChartsAxisTooltipContent.js +10 -5
- package/node/ChartsTooltip/ChartsItemTooltipContent.js +5 -2
- package/node/ChartsTooltip/ChartsTooltip.js +2 -20
- package/node/ChartsTooltip/ChartsTooltipContainer.js +7 -25
- package/node/ChartsTooltip/ChartsTooltipTable.js +16 -34
- package/node/ChartsTooltip/chartsTooltipClasses.js +3 -2
- package/node/ChartsTooltip/index.js +13 -1
- package/node/ChartsTooltip/useAxisTooltip.js +16 -14
- package/node/ChartsTooltip/useItemTooltip.js +20 -47
- package/node/ChartsTooltip/utils.js +1 -0
- package/node/ChartsVoronoiHandler/ChartsVoronoiHandler.js +24 -22
- package/node/ChartsXAxis/ChartsXAxis.js +14 -25
- package/node/ChartsYAxis/ChartsYAxis.js +10 -22
- package/node/Gauge/Gauge.js +5 -7
- package/node/Gauge/GaugeContainer.js +44 -83
- package/node/Gauge/GaugeProvider.js +2 -2
- package/node/LineChart/AnimatedArea.js +2 -1
- package/node/LineChart/AnimatedLine.js +2 -1
- package/node/LineChart/AppearingMask.js +2 -1
- package/node/LineChart/AreaElement.js +2 -2
- package/node/LineChart/AreaPlot.js +60 -26
- package/node/LineChart/CircleMarkElement.js +9 -13
- package/node/LineChart/LineChart.js +33 -24
- package/node/LineChart/LineChart.plugins.js +11 -0
- package/node/LineChart/LineElement.js +2 -2
- package/node/LineChart/LineHighlightElement.js +29 -9
- package/node/LineChart/LineHighlightPlot.js +22 -17
- package/node/LineChart/LinePlot.js +60 -25
- package/node/LineChart/MarkElement.js +9 -7
- package/node/LineChart/MarkPlot.js +20 -23
- package/node/LineChart/formatter.js +3 -1
- package/node/LineChart/legend.js +1 -0
- package/node/LineChart/plugin.js +5 -2
- package/node/LineChart/tooltip.js +31 -0
- package/node/LineChart/useLineChartProps.js +21 -14
- package/node/PieChart/PieArc.js +14 -6
- package/node/PieChart/PieArcLabel.js +13 -9
- package/node/PieChart/PieArcLabelPlot.js +3 -2
- package/node/PieChart/PieArcPlot.js +12 -15
- package/node/PieChart/PieChart.js +61 -162
- package/node/PieChart/PieChart.plugins.js +9 -0
- package/node/PieChart/PiePlot.js +2 -2
- package/node/PieChart/dataTransform/transition.js +11 -9
- package/node/PieChart/dataTransform/useTransformData.js +3 -2
- package/node/PieChart/formatter.js +4 -1
- package/node/PieChart/legend.js +4 -3
- package/node/PieChart/plugin.js +5 -2
- package/node/PieChart/tooltip.js +36 -0
- package/node/ScatterChart/Scatter.js +13 -11
- package/node/ScatterChart/ScatterChart.js +39 -21
- package/node/ScatterChart/ScatterChart.plugins.js +11 -0
- package/node/ScatterChart/ScatterPlot.js +11 -10
- package/node/ScatterChart/extremums.js +1 -1
- package/node/ScatterChart/formatter.js +7 -5
- package/node/ScatterChart/legend.js +1 -0
- package/node/ScatterChart/plugin.js +5 -2
- package/node/ScatterChart/tooltip.js +31 -0
- package/node/ScatterChart/useScatterChartProps.js +18 -7
- package/node/SparkLineChart/SparkLineChart.js +39 -16
- package/node/colorPalettes/colorPalettes.js +5 -1
- package/node/constants/index.js +3 -2
- package/node/context/AnimationProvider/AnimationProvider.js +1 -1
- package/node/context/{SeriesProvider/SeriesContext.js → ChartProvider/ChartContext.js} +6 -6
- package/node/context/ChartProvider/ChartProvider.js +46 -0
- package/node/context/ChartProvider/index.js +38 -0
- package/node/context/ChartProvider/useChartContext.js +18 -0
- package/node/context/PolarProvider/PolarProvider.js +59 -51
- package/node/context/PolarProvider/getAxisExtremum.js +49 -27
- package/node/context/PolarProvider/usePolarContext.js +9 -14
- package/node/context/index.js +1 -31
- package/node/hooks/index.js +65 -2
- package/node/hooks/useAxis.js +34 -6
- package/node/hooks/useAxisEvents.js +1 -169
- package/node/hooks/useChartGradientId.js +56 -0
- package/node/hooks/useChartId.js +5 -7
- package/node/hooks/useColorScale.js +5 -7
- package/node/hooks/useDrawingArea.js +5 -21
- package/node/hooks/useInteractionItemProps.js +10 -28
- package/node/hooks/useItemHighlighted.js +28 -0
- package/node/hooks/useItemHighlightedGetter.js +27 -0
- package/node/hooks/useLegend.js +35 -0
- package/node/hooks/useSeries.js +5 -9
- package/node/hooks/useSvgRef.js +4 -9
- package/node/hooks/useZAxis.js +33 -0
- package/node/index.js +23 -12
- package/node/internals/calculateMargins.js +33 -0
- package/node/internals/components/ChartsAxesGradients/ChartsAxesGradients.js +64 -32
- package/node/internals/components/ChartsAxesGradients/ChartsContinuousGradient.js +6 -6
- package/node/internals/components/ChartsAxesGradients/ChartsContinuousGradientObjectBound.js +69 -0
- package/node/internals/components/ChartsAxesGradients/ChartsPiecewiseGradient.js +6 -0
- package/node/internals/components/ChartsWrapper/ChartsWrapper.js +72 -0
- package/node/internals/components/ChartsWrapper/index.js +16 -0
- package/node/internals/consumeSlots.js +109 -0
- package/node/internals/consumeThemeProps.js +78 -0
- package/node/internals/defaultizeColor.js +1 -2
- package/node/internals/getCurve.js +13 -25
- package/node/internals/index.js +135 -75
- package/node/internals/plugins/allPlugins.js +13 -0
- package/node/internals/plugins/corePlugins/corePlugins.js +14 -0
- package/node/internals/plugins/corePlugins/index.js +12 -0
- package/node/internals/plugins/corePlugins/useChartDimensions/index.js +27 -0
- package/node/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.js +183 -0
- package/node/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.selectors.js +32 -0
- package/node/internals/plugins/corePlugins/useChartId/index.js +27 -0
- package/node/internals/plugins/corePlugins/useChartId/useChartId.js +41 -0
- package/node/internals/plugins/corePlugins/useChartId/useChartId.selectors.js +15 -0
- package/node/internals/plugins/corePlugins/useChartId/useChartId.utils.js +12 -0
- package/node/internals/plugins/corePlugins/useChartSeries/index.js +27 -0
- package/node/{context/SeriesProvider → internals/plugins/corePlugins/useChartSeries}/processSeries.js +9 -6
- package/node/internals/plugins/corePlugins/useChartSeries/useChartSeries.js +80 -0
- package/node/internals/plugins/corePlugins/useChartSeries/useChartSeries.selectors.js +11 -0
- package/node/internals/plugins/corePlugins/useChartSeries/useColorProcessor.js +27 -0
- package/node/internals/{computeAxisValue.js → plugins/featurePlugins/useChartCartesianAxis/computeAxisValue.js} +19 -27
- package/node/internals/plugins/featurePlugins/useChartCartesianAxis/createAxisFilterMapper.js +69 -0
- package/node/{context/ChartDataProvider/useDefaultizeAxis.js → internals/plugins/featurePlugins/useChartCartesianAxis/defaultizeAxis.js} +4 -13
- package/node/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisExtremum.js +29 -0
- package/node/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisValue.js +65 -0
- package/node/internals/plugins/featurePlugins/useChartCartesianAxis/index.js +59 -0
- package/node/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxis.js +213 -0
- package/node/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxis.selectors.js +98 -0
- package/node/internals/plugins/featurePlugins/useChartCartesianAxis/zoom.types.js +5 -0
- package/node/internals/plugins/featurePlugins/useChartHighlight/createIsFaded.js +19 -0
- package/node/{context/HighlightedProvider → internals/plugins/featurePlugins/useChartHighlight}/createIsHighlighted.js +4 -4
- package/node/internals/plugins/featurePlugins/useChartHighlight/highlightConfig.types.js +5 -0
- package/node/internals/plugins/featurePlugins/useChartHighlight/index.js +27 -0
- package/node/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.js +52 -0
- package/node/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.selectors.js +37 -0
- package/node/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.types.js +5 -0
- package/node/internals/plugins/featurePlugins/useChartInteraction/index.js +27 -0
- package/node/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.js +98 -0
- package/node/{context/InteractionSelectors.js → internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.selectors.js} +2 -4
- package/node/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.types.js +5 -0
- package/node/internals/plugins/featurePlugins/useChartZAxis/index.js +27 -0
- package/node/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.js +94 -0
- package/node/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.selectors.js +9 -0
- package/node/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.types.js +5 -0
- package/node/internals/plugins/featurePlugins/useChartZAxis/utils.js +1 -0
- package/node/internals/plugins/models/chart.js +5 -0
- package/node/internals/plugins/models/helpers.js +5 -0
- package/node/internals/plugins/models/index.js +44 -0
- package/node/internals/plugins/models/plugin.js +5 -0
- package/node/internals/plugins/models/seriesConfig/colorProcessor.types.js +5 -0
- package/node/internals/plugins/models/seriesConfig/extremumGetter.types.js +5 -0
- package/node/internals/plugins/models/seriesConfig/index.js +71 -0
- package/node/internals/plugins/models/seriesConfig/legendGetter.types.js +5 -0
- package/node/internals/plugins/models/seriesConfig/seriesConfig.types.js +5 -0
- package/node/internals/plugins/models/seriesConfig/seriesProcessor.types.js +5 -0
- package/node/internals/plugins/models/seriesConfig/tooltipGetter.types.js +5 -0
- package/node/internals/plugins/utils/ChartStore.js +0 -2
- package/node/internals/store/extractPluginParamsFromProps.js +36 -0
- package/node/internals/store/useChartModels.js +73 -0
- package/node/internals/store/useCharts.js +92 -0
- package/node/internals/store/useCharts.types.js +5 -0
- package/node/internals/store/useStore.js +15 -0
- package/node/models/axis.js +5 -1
- package/node/models/curve.js +5 -0
- package/node/models/position.js +5 -0
- package/package.json +6 -5
- package/ChartContainer/ResizableContainer.d.ts +0 -22
- package/ChartContainer/ResizableContainer.js +0 -60
- package/ChartsLegend/ChartsLegendItem.d.ts +0 -26
- package/ChartsLegend/ChartsLegendItem.js +0 -65
- package/ChartsLegend/DefaultChartsLegend.d.ts +0 -25
- package/ChartsLegend/DefaultChartsLegend.js +0 -112
- package/ChartsLegend/LegendPerItem.d.ts +0 -65
- package/ChartsLegend/LegendPerItem.js +0 -129
- package/ChartsLegend/legendItemsPlacement.d.ts +0 -3
- package/ChartsLegend/legendItemsPlacement.js +0 -72
- package/ChartsLegend/utils.d.ts +0 -2
- package/ChartsLegend/utils.js +0 -16
- package/ChartsOnAxisClickHandler/ChartsOnAxisClickHandler.d.ts +0 -20
- package/ChartsOnAxisClickHandler/ChartsOnAxisClickHandler.js +0 -81
- package/ChartsOnAxisClickHandler/index.d.ts +0 -1
- package/ChartsOnAxisClickHandler/index.js +0 -1
- package/context/CartesianProvider/Cartesian.types.d.ts +0 -59
- package/context/CartesianProvider/CartesianContext.d.ts +0 -4
- package/context/CartesianProvider/CartesianContext.js +0 -13
- package/context/CartesianProvider/CartesianProvider.d.ts +0 -4
- package/context/CartesianProvider/CartesianProvider.js +0 -49
- package/context/CartesianProvider/defaultizeAxis.d.ts +0 -40
- package/context/CartesianProvider/defaultizeAxis.js +0 -13
- package/context/CartesianProvider/getAxisExtremum.d.ts +0 -5
- package/context/CartesianProvider/getAxisExtremum.js +0 -21
- package/context/CartesianProvider/index.d.ts +0 -4
- package/context/CartesianProvider/index.js +0 -4
- package/context/CartesianProvider/useCartesianContext.d.ts +0 -2
- package/context/CartesianProvider/useCartesianContext.js +0 -10
- package/context/ChartDataProvider/ChartDataProvider.d.ts +0 -31
- package/context/ChartDataProvider/ChartDataProvider.js +0 -250
- package/context/ChartDataProvider/useChartDataProviderProps.d.ts +0 -94
- package/context/ChartDataProvider/useChartDataProviderProps.js +0 -66
- package/context/ChartDataProvider/useDefaultizeAxis.d.ts +0 -41
- package/context/DrawingAreaProvider/DrawingArea.types.d.ts +0 -51
- package/context/DrawingAreaProvider/DrawingAreaContext.d.ts +0 -8
- package/context/DrawingAreaProvider/DrawingAreaContext.js +0 -16
- package/context/DrawingAreaProvider/DrawingAreaProvider.d.ts +0 -3
- package/context/DrawingAreaProvider/DrawingAreaProvider.js +0 -48
- package/context/DrawingAreaProvider/index.d.ts +0 -3
- package/context/DrawingAreaProvider/index.js +0 -3
- package/context/HighlightedProvider/HighlightedContext.d.ts +0 -58
- package/context/HighlightedProvider/HighlightedContext.js +0 -32
- package/context/HighlightedProvider/HighlightedProvider.d.ts +0 -20
- package/context/HighlightedProvider/HighlightedProvider.js +0 -79
- package/context/HighlightedProvider/createIsFaded.d.ts +0 -2
- package/context/HighlightedProvider/createIsFaded.js +0 -12
- package/context/HighlightedProvider/createIsHighlighted.d.ts +0 -2
- package/context/HighlightedProvider/createIsHighlighted.js +0 -12
- package/context/HighlightedProvider/index.d.ts +0 -4
- package/context/HighlightedProvider/index.js +0 -4
- package/context/HighlightedProvider/useHighlighted.d.ts +0 -9
- package/context/HighlightedProvider/useHighlighted.js +0 -22
- package/context/HighlightedProvider/useItemHighlighted.d.ts +0 -21
- package/context/HighlightedProvider/useItemHighlighted.js +0 -27
- package/context/InteractionProvider.d.ts +0 -7
- package/context/InteractionProvider.js +0 -22
- package/context/InteractionSelectors.d.ts +0 -359
- package/context/PluginProvider/ColorProcessor.types.d.ts +0 -8
- package/context/PluginProvider/ExtremumGetter.types.d.ts +0 -25
- package/context/PluginProvider/Plugin.types.d.ts +0 -29
- package/context/PluginProvider/PluginContext.d.ts +0 -4
- package/context/PluginProvider/PluginContext.js +0 -15
- package/context/PluginProvider/PluginProvider.d.ts +0 -4
- package/context/PluginProvider/PluginProvider.js +0 -21
- package/context/PluginProvider/SeriesFormatter.types.d.ts +0 -21
- package/context/PluginProvider/index.d.ts +0 -12
- package/context/PluginProvider/index.js +0 -12
- package/context/PluginProvider/mergePlugins.d.ts +0 -46
- package/context/PluginProvider/mergePlugins.js +0 -40
- package/context/PluginProvider/useColorProcessor.d.ts +0 -4
- package/context/PluginProvider/useColorProcessor.js +0 -17
- package/context/PluginProvider/useRadiusExtremumGetter.d.ts +0 -4
- package/context/PluginProvider/useRadiusExtremumGetter.js +0 -17
- package/context/PluginProvider/useRotationExtremumGetter.d.ts +0 -4
- package/context/PluginProvider/useRotationExtremumGetter.js +0 -17
- package/context/PluginProvider/useSeriesFormatter.d.ts +0 -4
- package/context/PluginProvider/useSeriesFormatter.js +0 -17
- package/context/PluginProvider/useXExtremumGetter.d.ts +0 -4
- package/context/PluginProvider/useXExtremumGetter.js +0 -15
- package/context/PluginProvider/useYExtremumGetter.d.ts +0 -4
- package/context/PluginProvider/useYExtremumGetter.js +0 -15
- package/context/SeriesProvider/Series.types.d.ts +0 -26
- package/context/SeriesProvider/SeriesContext.d.ts +0 -4
- package/context/SeriesProvider/SeriesContext.js +0 -8
- package/context/SeriesProvider/SeriesProvider.d.ts +0 -5
- package/context/SeriesProvider/SeriesProvider.js +0 -33
- package/context/SeriesProvider/index.d.ts +0 -12
- package/context/SeriesProvider/index.js +0 -8
- package/context/SeriesProvider/processSeries.d.ts +0 -18
- package/context/SizeProvider/Size.types.d.ts +0 -30
- package/context/SizeProvider/SizeContext.d.ts +0 -4
- package/context/SizeProvider/SizeContext.js +0 -13
- package/context/SizeProvider/SizeProvider.d.ts +0 -11
- package/context/SizeProvider/SizeProvider.js +0 -26
- package/context/SizeProvider/index.d.ts +0 -4
- package/context/SizeProvider/index.js +0 -4
- package/context/SizeProvider/useChartContainerDimensions.d.ts +0 -9
- package/context/SizeProvider/useChartContainerDimensions.js +0 -104
- package/context/SizeProvider/useSize.d.ts +0 -5
- package/context/SizeProvider/useSize.js +0 -13
- package/context/SvgRefProvider/SvgRef.types.d.ts +0 -8
- package/context/SvgRefProvider/SvgRefContext.d.ts +0 -4
- package/context/SvgRefProvider/SvgRefContext.js +0 -17
- package/context/SvgRefProvider/SvgRefProvider.d.ts +0 -3
- package/context/SvgRefProvider/SvgRefProvider.js +0 -24
- package/context/SvgRefProvider/index.d.ts +0 -4
- package/context/SvgRefProvider/index.js +0 -4
- package/context/SvgRefProvider/useSurfaceRef.d.ts +0 -2
- package/context/SvgRefProvider/useSurfaceRef.js +0 -14
- package/context/ZAxisContextProvider.d.ts +0 -33
- package/context/ZAxisContextProvider.js +0 -96
- package/internals/computeAxisValue.d.ts +0 -38
- package/internals/plugins/utils/ChartsStore.d.ts +0 -12
- package/internals/plugins/utils/ChartsStore.js +0 -26
- package/internals/useCharts.d.ts +0 -6
- package/internals/useCharts.js +0 -29
- package/internals/useSelector.d.ts +0 -4
- package/internals/useStore.d.ts +0 -2
- package/internals/useStore.js +0 -17
- package/modern/ChartContainer/ResizableContainer.js +0 -60
- package/modern/ChartsLegend/ChartsLegendItem.js +0 -65
- package/modern/ChartsLegend/DefaultChartsLegend.js +0 -112
- package/modern/ChartsLegend/LegendPerItem.js +0 -129
- package/modern/ChartsLegend/legendItemsPlacement.js +0 -72
- package/modern/ChartsLegend/utils.js +0 -16
- package/modern/ChartsOnAxisClickHandler/ChartsOnAxisClickHandler.js +0 -81
- package/modern/ChartsOnAxisClickHandler/index.js +0 -1
- package/modern/context/CartesianProvider/CartesianContext.js +0 -13
- package/modern/context/CartesianProvider/CartesianProvider.js +0 -49
- package/modern/context/CartesianProvider/defaultizeAxis.js +0 -13
- package/modern/context/CartesianProvider/getAxisExtremum.js +0 -21
- package/modern/context/CartesianProvider/index.js +0 -4
- package/modern/context/CartesianProvider/useCartesianContext.js +0 -10
- package/modern/context/ChartDataProvider/ChartDataProvider.js +0 -250
- package/modern/context/ChartDataProvider/useChartDataProviderProps.js +0 -66
- package/modern/context/DrawingAreaProvider/DrawingAreaContext.js +0 -16
- package/modern/context/DrawingAreaProvider/DrawingAreaProvider.js +0 -48
- package/modern/context/DrawingAreaProvider/index.js +0 -3
- package/modern/context/HighlightedProvider/HighlightedContext.js +0 -32
- package/modern/context/HighlightedProvider/HighlightedProvider.js +0 -79
- package/modern/context/HighlightedProvider/createIsFaded.js +0 -12
- package/modern/context/HighlightedProvider/createIsHighlighted.js +0 -12
- package/modern/context/HighlightedProvider/index.js +0 -4
- package/modern/context/HighlightedProvider/useHighlighted.js +0 -22
- package/modern/context/HighlightedProvider/useItemHighlighted.js +0 -27
- package/modern/context/InteractionProvider.js +0 -22
- package/modern/context/PluginProvider/PluginContext.js +0 -15
- package/modern/context/PluginProvider/PluginProvider.js +0 -21
- package/modern/context/PluginProvider/index.js +0 -12
- package/modern/context/PluginProvider/mergePlugins.js +0 -40
- package/modern/context/PluginProvider/useColorProcessor.js +0 -17
- package/modern/context/PluginProvider/useRadiusExtremumGetter.js +0 -17
- package/modern/context/PluginProvider/useRotationExtremumGetter.js +0 -17
- package/modern/context/PluginProvider/useSeriesFormatter.js +0 -17
- package/modern/context/PluginProvider/useXExtremumGetter.js +0 -15
- package/modern/context/PluginProvider/useYExtremumGetter.js +0 -15
- package/modern/context/SeriesProvider/SeriesContext.js +0 -8
- package/modern/context/SeriesProvider/SeriesProvider.js +0 -33
- package/modern/context/SeriesProvider/index.js +0 -8
- package/modern/context/SizeProvider/SizeContext.js +0 -13
- package/modern/context/SizeProvider/SizeProvider.js +0 -26
- package/modern/context/SizeProvider/index.js +0 -4
- package/modern/context/SizeProvider/useChartContainerDimensions.js +0 -104
- package/modern/context/SizeProvider/useSize.js +0 -13
- package/modern/context/SvgRefProvider/SvgRefContext.js +0 -17
- package/modern/context/SvgRefProvider/SvgRefProvider.js +0 -24
- package/modern/context/SvgRefProvider/index.js +0 -4
- package/modern/context/SvgRefProvider/useSurfaceRef.js +0 -14
- package/modern/context/ZAxisContextProvider.js +0 -96
- package/modern/internals/plugins/utils/ChartsStore.js +0 -26
- package/modern/internals/useCharts.js +0 -29
- package/modern/internals/useStore.js +0 -17
- package/node/ChartContainer/ResizableContainer.js +0 -68
- package/node/ChartsLegend/ChartsLegendItem.js +0 -72
- package/node/ChartsLegend/DefaultChartsLegend.js +0 -118
- package/node/ChartsLegend/LegendPerItem.js +0 -137
- package/node/ChartsLegend/legendItemsPlacement.js +0 -79
- package/node/ChartsLegend/utils.js +0 -23
- package/node/ChartsOnAxisClickHandler/ChartsOnAxisClickHandler.js +0 -87
- package/node/ChartsOnAxisClickHandler/index.js +0 -16
- package/node/context/CartesianProvider/CartesianContext.js +0 -20
- package/node/context/CartesianProvider/CartesianProvider.js +0 -54
- package/node/context/CartesianProvider/defaultizeAxis.js +0 -21
- package/node/context/CartesianProvider/getAxisExtremum.js +0 -28
- package/node/context/CartesianProvider/index.js +0 -49
- package/node/context/CartesianProvider/useCartesianContext.js +0 -17
- package/node/context/ChartDataProvider/ChartDataProvider.js +0 -256
- package/node/context/ChartDataProvider/useChartDataProviderProps.js +0 -72
- package/node/context/DrawingAreaProvider/DrawingAreaContext.js +0 -22
- package/node/context/DrawingAreaProvider/DrawingAreaProvider.js +0 -55
- package/node/context/DrawingAreaProvider/index.js +0 -38
- package/node/context/HighlightedProvider/HighlightedContext.js +0 -38
- package/node/context/HighlightedProvider/HighlightedProvider.js +0 -85
- package/node/context/HighlightedProvider/createIsFaded.js +0 -19
- package/node/context/HighlightedProvider/index.js +0 -49
- package/node/context/HighlightedProvider/useHighlighted.js +0 -27
- package/node/context/HighlightedProvider/useItemHighlighted.js +0 -32
- package/node/context/InteractionProvider.js +0 -28
- package/node/context/PluginProvider/PluginContext.js +0 -22
- package/node/context/PluginProvider/PluginProvider.js +0 -26
- package/node/context/PluginProvider/index.js +0 -137
- package/node/context/PluginProvider/mergePlugins.js +0 -47
- package/node/context/PluginProvider/useColorProcessor.js +0 -23
- package/node/context/PluginProvider/useRadiusExtremumGetter.js +0 -23
- package/node/context/PluginProvider/useRotationExtremumGetter.js +0 -23
- package/node/context/PluginProvider/useSeriesFormatter.js +0 -23
- package/node/context/PluginProvider/useXExtremumGetter.js +0 -22
- package/node/context/PluginProvider/useYExtremumGetter.js +0 -22
- package/node/context/SeriesProvider/SeriesProvider.js +0 -38
- package/node/context/SeriesProvider/index.js +0 -49
- package/node/context/SizeProvider/SizeContext.js +0 -20
- package/node/context/SizeProvider/SizeProvider.js +0 -29
- package/node/context/SizeProvider/index.js +0 -49
- package/node/context/SizeProvider/useChartContainerDimensions.js +0 -112
- package/node/context/SizeProvider/useSize.js +0 -20
- package/node/context/SvgRefProvider/SvgRefContext.js +0 -23
- package/node/context/SvgRefProvider/SvgRefProvider.js +0 -31
- package/node/context/SvgRefProvider/index.js +0 -49
- package/node/context/SvgRefProvider/useSurfaceRef.js +0 -20
- package/node/context/ZAxisContextProvider.js +0 -103
- package/node/internals/plugins/utils/ChartsStore.js +0 -33
- package/node/internals/useCharts.js +0 -36
- package/node/internals/useStore.js +0 -24
- /package/{context/ChartDataProvider → ChartDataProvider}/index.d.ts +0 -0
- /package/{context/ChartDataProvider → ChartDataProvider}/index.js +0 -0
- /package/{context/CartesianProvider/Cartesian.types.js → ChartsLegend/colorLegend.types.js} +0 -0
- /package/{context/DrawingAreaProvider/DrawingArea.types.js → ChartsLegend/direction.js} +0 -0
- /package/{context/PluginProvider/ColorProcessor.types.js → ChartsLegend/legendContext.types.js} +0 -0
- /package/{context/PluginProvider/ExtremumGetter.types.js → ChartsLegend/piecewiseColorLegend.types.js} +0 -0
- /package/context/{PluginProvider/Plugin.types.js → ChartProvider/ChartProvider.types.js} +0 -0
- /package/{context/PluginProvider/SeriesFormatter.types.js → internals/plugins/corePlugins/useChartDimensions/useChartDimensions.types.js} +0 -0
- /package/{context/SeriesProvider/Series.types.js → internals/plugins/corePlugins/useChartId/useChartId.types.js} +0 -0
- /package/{context/SizeProvider/Size.types.js → internals/plugins/corePlugins/useChartSeries/useChartSeries.types.js} +0 -0
- /package/{context/SvgRefProvider/SvgRef.types.js → internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxis.types.js} +0 -0
- /package/{context/CartesianProvider → internals/plugins/featurePlugins/useChartCartesianAxis}/zoom.d.ts +0 -0
- /package/{context/CartesianProvider → internals/plugins/featurePlugins/useChartCartesianAxis}/zoom.js +0 -0
- /package/{modern/context/CartesianProvider/Cartesian.types.js → internals/plugins/featurePlugins/useChartCartesianAxis/zoom.types.js} +0 -0
- /package/{modern/context/DrawingAreaProvider/DrawingArea.types.js → internals/plugins/featurePlugins/useChartHighlight/highlightConfig.types.js} +0 -0
- /package/{modern/context/PluginProvider/ColorProcessor.types.js → internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.types.js} +0 -0
- /package/{modern/context/PluginProvider/ExtremumGetter.types.js → internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.types.js} +0 -0
- /package/{modern/context/PluginProvider/Plugin.types.js → internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.types.js} +0 -0
- /package/{modern/context/PluginProvider/SeriesFormatter.types.js → internals/plugins/models/chart.js} +0 -0
- /package/{modern/context/SeriesProvider/Series.types.js → internals/plugins/models/helpers.js} +0 -0
- /package/{modern/context/SizeProvider/Size.types.js → internals/plugins/models/plugin.js} +0 -0
- /package/{modern/context/SvgRefProvider/SvgRef.types.js → internals/plugins/models/seriesConfig/colorProcessor.types.js} +0 -0
- /package/internals/{useSelector.js → store/useSelector.js} +0 -0
- /package/modern/{context/ChartDataProvider → ChartDataProvider}/index.js +0 -0
- /package/modern/{context/CartesianProvider → internals/plugins/featurePlugins/useChartCartesianAxis}/zoom.js +0 -0
- /package/modern/internals/{useSelector.js → store/useSelector.js} +0 -0
- /package/node/{context/ChartDataProvider → ChartDataProvider}/index.js +0 -0
- /package/node/{context/CartesianProvider/Cartesian.types.js → ChartsLegend/colorLegend.types.js} +0 -0
- /package/node/{context/DrawingAreaProvider/DrawingArea.types.js → ChartsLegend/direction.js} +0 -0
- /package/node/{context/PluginProvider/ColorProcessor.types.js → ChartsLegend/legendContext.types.js} +0 -0
- /package/node/{context/PluginProvider/ExtremumGetter.types.js → ChartsLegend/piecewiseColorLegend.types.js} +0 -0
- /package/node/context/{PluginProvider/Plugin.types.js → ChartProvider/ChartProvider.types.js} +0 -0
- /package/node/{context/PluginProvider/SeriesFormatter.types.js → internals/plugins/corePlugins/useChartDimensions/useChartDimensions.types.js} +0 -0
- /package/node/{context/SeriesProvider/Series.types.js → internals/plugins/corePlugins/useChartId/useChartId.types.js} +0 -0
- /package/node/{context/SizeProvider/Size.types.js → internals/plugins/corePlugins/useChartSeries/useChartSeries.types.js} +0 -0
- /package/node/{context/SvgRefProvider/SvgRef.types.js → internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxis.types.js} +0 -0
- /package/node/{context/CartesianProvider → internals/plugins/featurePlugins/useChartCartesianAxis}/zoom.js +0 -0
- /package/node/internals/{useSelector.js → store/useSelector.js} +0 -0
|
@@ -1,7 +1,35 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
|
-
import {
|
|
2
|
+
import { ChartSeriesType } from '../models/seriesType/config';
|
|
3
|
+
import { ChartDataProviderProps } from '../ChartDataProvider';
|
|
3
4
|
import { ChartsSurfaceProps } from '../ChartsSurface';
|
|
4
|
-
|
|
5
|
-
}
|
|
6
|
-
|
|
5
|
+
import { AllPluginSignatures } from '../internals/plugins/allPlugins';
|
|
6
|
+
import { ChartAnyPluginSignature } from '../internals/plugins/models';
|
|
7
|
+
export type ChartContainerProps<SeriesType extends ChartSeriesType = ChartSeriesType, TSignatures extends readonly ChartAnyPluginSignature[] = AllPluginSignatures<SeriesType>> = Omit<ChartDataProviderProps<SeriesType, TSignatures>, 'children'> & ChartsSurfaceProps;
|
|
8
|
+
/**
|
|
9
|
+
* It sets up the data providers as well as the `<svg>` for the chart.
|
|
10
|
+
*
|
|
11
|
+
* This is a combination of both the `ChartDataProvider` and `ChartsSurface` components.
|
|
12
|
+
*
|
|
13
|
+
* Demos:
|
|
14
|
+
*
|
|
15
|
+
* - [Composition](https://mui.com/x/api/charts/composition/)
|
|
16
|
+
*
|
|
17
|
+
* API:
|
|
18
|
+
*
|
|
19
|
+
* - [ChartContainer API](https://mui.com/x/api/charts/chart-container/)
|
|
20
|
+
*
|
|
21
|
+
* @example
|
|
22
|
+
* ```jsx
|
|
23
|
+
* <ChartContainer
|
|
24
|
+
* series={[{ label: "Label", type: "bar", data: [10, 20] }]}
|
|
25
|
+
* xAxis={[{ data: ["A", "B"], scaleType: "band", id: "x-axis" }]}
|
|
26
|
+
* >
|
|
27
|
+
* <BarPlot />
|
|
28
|
+
* <ChartsXAxis position="bottom" axisId="x-axis" />
|
|
29
|
+
* </ChartContainer>
|
|
30
|
+
* ```
|
|
31
|
+
*/
|
|
32
|
+
declare const ChartContainer: <TSeries extends ChartSeriesType>(props: ChartContainerProps<TSeries> & {
|
|
33
|
+
ref?: React.ForwardedRef<SVGSVGElement>;
|
|
34
|
+
}) => React.JSX.Element;
|
|
7
35
|
export { ChartContainer };
|
|
@@ -3,36 +3,62 @@
|
|
|
3
3
|
import _extends from "@babel/runtime/helpers/esm/extends";
|
|
4
4
|
import * as React from 'react';
|
|
5
5
|
import PropTypes from 'prop-types';
|
|
6
|
-
import { ChartDataProvider } from "../
|
|
7
|
-
import { ResizableContainer } from "./ResizableContainer.js";
|
|
6
|
+
import { ChartDataProvider } from "../ChartDataProvider/index.js";
|
|
8
7
|
import { useChartContainerProps } from "./useChartContainerProps.js";
|
|
9
8
|
import { ChartsSurface } from "../ChartsSurface/index.js";
|
|
10
9
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
10
|
+
/**
|
|
11
|
+
* It sets up the data providers as well as the `<svg>` for the chart.
|
|
12
|
+
*
|
|
13
|
+
* This is a combination of both the `ChartDataProvider` and `ChartsSurface` components.
|
|
14
|
+
*
|
|
15
|
+
* Demos:
|
|
16
|
+
*
|
|
17
|
+
* - [Composition](https://mui.com/x/api/charts/composition/)
|
|
18
|
+
*
|
|
19
|
+
* API:
|
|
20
|
+
*
|
|
21
|
+
* - [ChartContainer API](https://mui.com/x/api/charts/chart-container/)
|
|
22
|
+
*
|
|
23
|
+
* @example
|
|
24
|
+
* ```jsx
|
|
25
|
+
* <ChartContainer
|
|
26
|
+
* series={[{ label: "Label", type: "bar", data: [10, 20] }]}
|
|
27
|
+
* xAxis={[{ data: ["A", "B"], scaleType: "band", id: "x-axis" }]}
|
|
28
|
+
* >
|
|
29
|
+
* <BarPlot />
|
|
30
|
+
* <ChartsXAxis position="bottom" axisId="x-axis" />
|
|
31
|
+
* </ChartContainer>
|
|
32
|
+
* ```
|
|
33
|
+
*/
|
|
11
34
|
const ChartContainer = /*#__PURE__*/React.forwardRef(function ChartContainer(props, ref) {
|
|
12
35
|
const {
|
|
13
36
|
chartDataProviderProps,
|
|
14
37
|
children,
|
|
15
|
-
resizableContainerProps,
|
|
16
38
|
chartsSurfaceProps
|
|
17
39
|
} = useChartContainerProps(props, ref);
|
|
18
40
|
return /*#__PURE__*/_jsx(ChartDataProvider, _extends({}, chartDataProviderProps, {
|
|
19
|
-
children: /*#__PURE__*/_jsx(
|
|
20
|
-
children:
|
|
21
|
-
children: children
|
|
22
|
-
}))
|
|
41
|
+
children: /*#__PURE__*/_jsx(ChartsSurface, _extends({}, chartsSurfaceProps, {
|
|
42
|
+
children: children
|
|
23
43
|
}))
|
|
24
44
|
}));
|
|
25
45
|
});
|
|
46
|
+
|
|
47
|
+
// @ts-ignore
|
|
48
|
+
|
|
26
49
|
process.env.NODE_ENV !== "production" ? ChartContainer.propTypes = {
|
|
27
50
|
// ----------------------------- Warning --------------------------------
|
|
28
51
|
// | These PropTypes are generated from the TypeScript type definitions |
|
|
29
52
|
// | To update them edit the TypeScript types and run "pnpm proptypes" |
|
|
30
53
|
// ----------------------------------------------------------------------
|
|
54
|
+
apiRef: PropTypes.shape({
|
|
55
|
+
current: PropTypes.object
|
|
56
|
+
}),
|
|
31
57
|
children: PropTypes.node,
|
|
32
58
|
className: PropTypes.string,
|
|
33
59
|
/**
|
|
34
60
|
* Color palette used to colorize multiple series.
|
|
35
|
-
* @default
|
|
61
|
+
* @default rainbowSurgePalette
|
|
36
62
|
*/
|
|
37
63
|
colors: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.string), PropTypes.func]),
|
|
38
64
|
/**
|
|
@@ -51,17 +77,22 @@ process.env.NODE_ENV !== "production" ? ChartContainer.propTypes = {
|
|
|
51
77
|
*/
|
|
52
78
|
height: PropTypes.number,
|
|
53
79
|
/**
|
|
54
|
-
* The
|
|
80
|
+
* The highlighted item.
|
|
81
|
+
* Used when the highlight is controlled.
|
|
55
82
|
*/
|
|
56
83
|
highlightedItem: PropTypes.shape({
|
|
57
84
|
dataIndex: PropTypes.number,
|
|
58
|
-
seriesId: PropTypes.oneOfType([PropTypes.number, PropTypes.string])
|
|
85
|
+
seriesId: PropTypes.oneOfType([PropTypes.number, PropTypes.string]).isRequired
|
|
59
86
|
}),
|
|
87
|
+
/**
|
|
88
|
+
* This prop is used to help implement the accessibility logic.
|
|
89
|
+
* If you don't provide this prop. It falls back to a randomly generated id.
|
|
90
|
+
*/
|
|
91
|
+
id: PropTypes.string,
|
|
60
92
|
/**
|
|
61
93
|
* The margin between the SVG and the drawing area.
|
|
62
94
|
* It's used for leaving some space for extra information such as the x- and y-axis or legend.
|
|
63
95
|
* Accepts an object with the optional properties: `top`, `bottom`, `left`, and `right`.
|
|
64
|
-
* @default object Depends on the charts type.
|
|
65
96
|
*/
|
|
66
97
|
margin: PropTypes.shape({
|
|
67
98
|
bottom: PropTypes.number,
|
|
@@ -69,29 +100,32 @@ process.env.NODE_ENV !== "production" ? ChartContainer.propTypes = {
|
|
|
69
100
|
right: PropTypes.number,
|
|
70
101
|
top: PropTypes.number
|
|
71
102
|
}),
|
|
103
|
+
/**
|
|
104
|
+
* The function called for onClick events.
|
|
105
|
+
* The second argument contains information about all line/bar elements at the current mouse position.
|
|
106
|
+
* @param {MouseEvent} event The mouse event recorded on the `<svg/>` element.
|
|
107
|
+
* @param {null | AxisData} data The data about the clicked axis and items associated with it.
|
|
108
|
+
*/
|
|
109
|
+
onAxisClick: PropTypes.func,
|
|
72
110
|
/**
|
|
73
111
|
* The callback fired when the highlighted item changes.
|
|
74
112
|
*
|
|
75
113
|
* @param {HighlightItemData | null} highlightedItem The newly highlighted item.
|
|
76
114
|
*/
|
|
77
115
|
onHighlightChange: PropTypes.func,
|
|
78
|
-
/**
|
|
79
|
-
* An array of plugins defining how to preprocess data.
|
|
80
|
-
* If not provided, the container supports line, bar, scatter and pie charts.
|
|
81
|
-
*/
|
|
82
|
-
plugins: PropTypes.arrayOf(PropTypes.object),
|
|
83
116
|
/**
|
|
84
117
|
* The array of series to display.
|
|
85
118
|
* Each type of series has its own specificity.
|
|
86
119
|
* Please refer to the appropriate docs page to learn more about it.
|
|
87
120
|
*/
|
|
88
|
-
series: PropTypes.arrayOf(PropTypes.object)
|
|
121
|
+
series: PropTypes.arrayOf(PropTypes.object),
|
|
89
122
|
/**
|
|
90
123
|
* If `true`, animations are skipped.
|
|
91
124
|
* If unset or `false`, the animations respects the user's `prefers-reduced-motion` setting.
|
|
92
125
|
*/
|
|
93
126
|
skipAnimation: PropTypes.bool,
|
|
94
127
|
sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object]),
|
|
128
|
+
theme: PropTypes.oneOf(['dark', 'light']),
|
|
95
129
|
title: PropTypes.string,
|
|
96
130
|
/**
|
|
97
131
|
* The width of the chart in px. If not defined, it takes the width of the parent element.
|
|
@@ -128,7 +162,6 @@ process.env.NODE_ENV !== "production" ? ChartContainer.propTypes = {
|
|
|
128
162
|
hideTooltip: PropTypes.bool,
|
|
129
163
|
id: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
|
|
130
164
|
label: PropTypes.string,
|
|
131
|
-
labelFontSize: PropTypes.number,
|
|
132
165
|
labelStyle: PropTypes.object,
|
|
133
166
|
max: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
|
|
134
167
|
min: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
|
|
@@ -139,7 +172,6 @@ process.env.NODE_ENV !== "production" ? ChartContainer.propTypes = {
|
|
|
139
172
|
slots: PropTypes.object,
|
|
140
173
|
stroke: PropTypes.string,
|
|
141
174
|
sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object]),
|
|
142
|
-
tickFontSize: PropTypes.number,
|
|
143
175
|
tickInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.array, PropTypes.func]),
|
|
144
176
|
tickLabelInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.func]),
|
|
145
177
|
tickLabelPlacement: PropTypes.oneOf(['middle', 'tick']),
|
|
@@ -182,7 +214,6 @@ process.env.NODE_ENV !== "production" ? ChartContainer.propTypes = {
|
|
|
182
214
|
hideTooltip: PropTypes.bool,
|
|
183
215
|
id: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
|
|
184
216
|
label: PropTypes.string,
|
|
185
|
-
labelFontSize: PropTypes.number,
|
|
186
217
|
labelStyle: PropTypes.object,
|
|
187
218
|
max: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
|
|
188
219
|
min: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
|
|
@@ -193,7 +224,6 @@ process.env.NODE_ENV !== "production" ? ChartContainer.propTypes = {
|
|
|
193
224
|
slots: PropTypes.object,
|
|
194
225
|
stroke: PropTypes.string,
|
|
195
226
|
sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object]),
|
|
196
|
-
tickFontSize: PropTypes.number,
|
|
197
227
|
tickInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.array, PropTypes.func]),
|
|
198
228
|
tickLabelInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.func]),
|
|
199
229
|
tickLabelPlacement: PropTypes.oneOf(['middle', 'tick']),
|
|
@@ -1,13 +1,15 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
import { ChartsSurfaceProps } from '../ChartsSurface';
|
|
3
|
-
import { ChartDataProviderProps } from '../
|
|
3
|
+
import { ChartDataProviderProps } from '../ChartDataProvider';
|
|
4
4
|
import type { ChartContainerProps } from './ChartContainer';
|
|
5
|
-
|
|
6
|
-
|
|
5
|
+
import { ChartSeriesType } from '../models/seriesType/config';
|
|
6
|
+
import { AllPluginSignatures } from '../internals/plugins/allPlugins';
|
|
7
|
+
import { ChartAnyPluginSignature } from '../internals/plugins/models/plugin';
|
|
8
|
+
export type UseChartContainerPropsReturnValue<TSeries extends ChartSeriesType, TSignatures extends readonly ChartAnyPluginSignature[]> = {
|
|
9
|
+
chartDataProviderProps: Omit<ChartDataProviderProps<TSeries, TSignatures>, 'children'>;
|
|
7
10
|
chartsSurfaceProps: ChartsSurfaceProps & {
|
|
8
11
|
ref: React.Ref<SVGSVGElement>;
|
|
9
12
|
};
|
|
10
|
-
resizableContainerProps: any;
|
|
11
13
|
children: React.ReactNode;
|
|
12
14
|
};
|
|
13
|
-
export declare const useChartContainerProps: (props: ChartContainerProps, ref: React.Ref<SVGSVGElement>) => UseChartContainerPropsReturnValue
|
|
15
|
+
export declare const useChartContainerProps: <TSeries extends ChartSeriesType = keyof import("../internals").ChartsSeriesConfig, TSignatures extends readonly ChartAnyPluginSignature[] = AllPluginSignatures<TSeries>>(props: ChartContainerProps<TSeries, TSignatures>, ref: React.Ref<SVGSVGElement>) => UseChartContainerPropsReturnValue<TSeries, TSignatures>;
|
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
'use client';
|
|
2
2
|
|
|
3
|
+
import _extends from "@babel/runtime/helpers/esm/extends";
|
|
3
4
|
import _objectWithoutPropertiesLoose from "@babel/runtime/helpers/esm/objectWithoutPropertiesLoose";
|
|
4
|
-
const _excluded = ["width", "height", "margin", "children", "series", "colors", "dataset", "desc", "
|
|
5
|
+
const _excluded = ["width", "height", "margin", "children", "series", "colors", "dataset", "desc", "onAxisClick", "disableAxisListener", "highlightedItem", "onHighlightChange", "sx", "title", "xAxis", "yAxis", "zAxis", "skipAnimation", "seriesConfig", "plugins"];
|
|
6
|
+
import { ALL_PLUGINS } from "../internals/plugins/allPlugins.js";
|
|
5
7
|
export const useChartContainerProps = (props, ref) => {
|
|
6
|
-
const
|
|
8
|
+
const _ref = props,
|
|
9
|
+
{
|
|
7
10
|
width,
|
|
8
11
|
height,
|
|
9
12
|
margin,
|
|
@@ -12,26 +15,26 @@ export const useChartContainerProps = (props, ref) => {
|
|
|
12
15
|
colors,
|
|
13
16
|
dataset,
|
|
14
17
|
desc,
|
|
18
|
+
onAxisClick,
|
|
15
19
|
disableAxisListener,
|
|
16
20
|
highlightedItem,
|
|
17
21
|
onHighlightChange,
|
|
18
|
-
plugins,
|
|
19
22
|
sx,
|
|
20
23
|
title,
|
|
21
24
|
xAxis,
|
|
22
25
|
yAxis,
|
|
23
26
|
zAxis,
|
|
24
|
-
skipAnimation
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
27
|
+
skipAnimation,
|
|
28
|
+
seriesConfig,
|
|
29
|
+
plugins
|
|
30
|
+
} = _ref,
|
|
31
|
+
other = _objectWithoutPropertiesLoose(_ref, _excluded);
|
|
32
|
+
const chartsSurfaceProps = _extends({
|
|
29
33
|
title,
|
|
30
34
|
desc,
|
|
31
35
|
sx,
|
|
32
|
-
disableAxisListener,
|
|
33
36
|
ref
|
|
34
|
-
};
|
|
37
|
+
}, other);
|
|
35
38
|
const chartDataProviderProps = {
|
|
36
39
|
margin,
|
|
37
40
|
series,
|
|
@@ -39,17 +42,19 @@ export const useChartContainerProps = (props, ref) => {
|
|
|
39
42
|
dataset,
|
|
40
43
|
highlightedItem,
|
|
41
44
|
onHighlightChange,
|
|
42
|
-
|
|
45
|
+
onAxisClick,
|
|
43
46
|
xAxis,
|
|
44
47
|
yAxis,
|
|
45
48
|
zAxis,
|
|
46
49
|
skipAnimation,
|
|
47
50
|
width,
|
|
48
|
-
height
|
|
51
|
+
height,
|
|
52
|
+
disableAxisListener,
|
|
53
|
+
seriesConfig,
|
|
54
|
+
plugins: plugins ?? ALL_PLUGINS
|
|
49
55
|
};
|
|
50
56
|
return {
|
|
51
57
|
chartDataProviderProps,
|
|
52
|
-
resizableContainerProps,
|
|
53
58
|
chartsSurfaceProps,
|
|
54
59
|
children
|
|
55
60
|
};
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { AnimationProviderProps } from '../context/AnimationProvider';
|
|
3
|
+
import { ChartProviderProps } from '../context/ChartProvider';
|
|
4
|
+
import { ChartSeriesType } from '../models/seriesType/config';
|
|
5
|
+
import { ChartAnyPluginSignature } from '../internals/plugins/models/plugin';
|
|
6
|
+
import { AllPluginSignatures } from '../internals/plugins/allPlugins';
|
|
7
|
+
export type ChartDataProviderProps<TSeries extends ChartSeriesType = ChartSeriesType, TSignatures extends readonly ChartAnyPluginSignature[] = AllPluginSignatures<TSeries>> = Omit<AnimationProviderProps & ChartProviderProps<TSeries, TSignatures>['pluginParams'], 'children'> & Pick<ChartProviderProps<TSeries, TSignatures>, 'seriesConfig' | 'plugins'> & {
|
|
8
|
+
children?: React.ReactNode;
|
|
9
|
+
};
|
|
10
|
+
/**
|
|
11
|
+
* Orchestrates the data providers for the chart components and hooks.
|
|
12
|
+
*
|
|
13
|
+
* Use this component if you have custom HTML components that need to access the chart data.
|
|
14
|
+
*
|
|
15
|
+
* Demos:
|
|
16
|
+
*
|
|
17
|
+
* - [Composition](https://mui.com/x/api/charts/composition/)
|
|
18
|
+
*
|
|
19
|
+
* API:
|
|
20
|
+
*
|
|
21
|
+
* - [ChartDataProvider API](https://mui.com/x/api/charts/chart-data-provider/)
|
|
22
|
+
*
|
|
23
|
+
* @example
|
|
24
|
+
* ```jsx
|
|
25
|
+
* <ChartDataProvider
|
|
26
|
+
* series={[{ label: "Label", type: "bar", data: [10, 20] }]}
|
|
27
|
+
* xAxis={[{ data: ["A", "B"], scaleType: "band", id: "x-axis" }]}
|
|
28
|
+
* >
|
|
29
|
+
* <ChartsSurface>
|
|
30
|
+
* <BarPlot />
|
|
31
|
+
* <ChartsXAxis position="bottom" axisId="x-axis" />
|
|
32
|
+
* </ChartsSurface>
|
|
33
|
+
* {'Custom Legend Component'}
|
|
34
|
+
* </ChartDataProvider>
|
|
35
|
+
* ```
|
|
36
|
+
*/
|
|
37
|
+
declare function ChartDataProvider<TSeries extends ChartSeriesType = ChartSeriesType, TSignatures extends readonly ChartAnyPluginSignature[] = AllPluginSignatures<TSeries>>(props: ChartDataProviderProps<TSeries, TSignatures>): React.JSX.Element;
|
|
38
|
+
declare namespace ChartDataProvider {
|
|
39
|
+
var propTypes: any;
|
|
40
|
+
}
|
|
41
|
+
export { ChartDataProvider };
|
|
@@ -0,0 +1,97 @@
|
|
|
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 { useChartDataProviderProps } from "./useChartDataProviderProps.js";
|
|
7
|
+
import { AnimationProvider } from "../context/AnimationProvider/index.js";
|
|
8
|
+
import { ChartProvider } from "../context/ChartProvider/index.js";
|
|
9
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
10
|
+
/**
|
|
11
|
+
* Orchestrates the data providers for the chart components and hooks.
|
|
12
|
+
*
|
|
13
|
+
* Use this component if you have custom HTML components that need to access the chart data.
|
|
14
|
+
*
|
|
15
|
+
* Demos:
|
|
16
|
+
*
|
|
17
|
+
* - [Composition](https://mui.com/x/api/charts/composition/)
|
|
18
|
+
*
|
|
19
|
+
* API:
|
|
20
|
+
*
|
|
21
|
+
* - [ChartDataProvider API](https://mui.com/x/api/charts/chart-data-provider/)
|
|
22
|
+
*
|
|
23
|
+
* @example
|
|
24
|
+
* ```jsx
|
|
25
|
+
* <ChartDataProvider
|
|
26
|
+
* series={[{ label: "Label", type: "bar", data: [10, 20] }]}
|
|
27
|
+
* xAxis={[{ data: ["A", "B"], scaleType: "band", id: "x-axis" }]}
|
|
28
|
+
* >
|
|
29
|
+
* <ChartsSurface>
|
|
30
|
+
* <BarPlot />
|
|
31
|
+
* <ChartsXAxis position="bottom" axisId="x-axis" />
|
|
32
|
+
* </ChartsSurface>
|
|
33
|
+
* {'Custom Legend Component'}
|
|
34
|
+
* </ChartDataProvider>
|
|
35
|
+
* ```
|
|
36
|
+
*/
|
|
37
|
+
function ChartDataProvider(props) {
|
|
38
|
+
const {
|
|
39
|
+
children,
|
|
40
|
+
animationProviderProps,
|
|
41
|
+
chartProviderProps
|
|
42
|
+
} = useChartDataProviderProps(props);
|
|
43
|
+
return /*#__PURE__*/_jsx(ChartProvider, _extends({}, chartProviderProps, {
|
|
44
|
+
children: /*#__PURE__*/_jsx(AnimationProvider, _extends({}, animationProviderProps, {
|
|
45
|
+
children: children
|
|
46
|
+
}))
|
|
47
|
+
}));
|
|
48
|
+
}
|
|
49
|
+
process.env.NODE_ENV !== "production" ? ChartDataProvider.propTypes = {
|
|
50
|
+
// ----------------------------- Warning --------------------------------
|
|
51
|
+
// | These PropTypes are generated from the TypeScript type definitions |
|
|
52
|
+
// | To update them edit the TypeScript types and run "pnpm proptypes" |
|
|
53
|
+
// ----------------------------------------------------------------------
|
|
54
|
+
apiRef: PropTypes.any,
|
|
55
|
+
children: PropTypes.node,
|
|
56
|
+
/**
|
|
57
|
+
* Color palette used to colorize multiple series.
|
|
58
|
+
* @default rainbowSurgePalette
|
|
59
|
+
*/
|
|
60
|
+
colors: PropTypes.any,
|
|
61
|
+
/**
|
|
62
|
+
* An array of objects that can be used to populate series and axes data using their `dataKey` property.
|
|
63
|
+
*/
|
|
64
|
+
dataset: PropTypes.any,
|
|
65
|
+
/**
|
|
66
|
+
* The height of the chart in px. If not defined, it takes the height of the parent element.
|
|
67
|
+
*/
|
|
68
|
+
height: PropTypes.any,
|
|
69
|
+
/**
|
|
70
|
+
* This prop is used to help implement the accessibility logic.
|
|
71
|
+
* If you don't provide this prop. It falls back to a randomly generated id.
|
|
72
|
+
*/
|
|
73
|
+
id: PropTypes.any,
|
|
74
|
+
/**
|
|
75
|
+
* The margin between the SVG and the drawing area.
|
|
76
|
+
* It's used for leaving some space for extra information such as the x- and y-axis or legend.
|
|
77
|
+
* Accepts an object with the optional properties: `top`, `bottom`, `left`, and `right`.
|
|
78
|
+
*/
|
|
79
|
+
margin: PropTypes.any,
|
|
80
|
+
/**
|
|
81
|
+
* The array of series to display.
|
|
82
|
+
* Each type of series has its own specificity.
|
|
83
|
+
* Please refer to the appropriate docs page to learn more about it.
|
|
84
|
+
*/
|
|
85
|
+
series: PropTypes.any,
|
|
86
|
+
/**
|
|
87
|
+
* If `true`, animations are skipped.
|
|
88
|
+
* If unset or `false`, the animations respects the user's `prefers-reduced-motion` setting.
|
|
89
|
+
*/
|
|
90
|
+
skipAnimation: PropTypes.any,
|
|
91
|
+
theme: PropTypes.any,
|
|
92
|
+
/**
|
|
93
|
+
* The width of the chart in px. If not defined, it takes the width of the parent element.
|
|
94
|
+
*/
|
|
95
|
+
width: PropTypes.any
|
|
96
|
+
} : void 0;
|
|
97
|
+
export { ChartDataProvider };
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import type { ChartDataProviderProps } from './ChartDataProvider';
|
|
2
|
+
import { AnimationProviderProps } from '../context/AnimationProvider';
|
|
3
|
+
import { ChartProviderProps } from '../context/ChartProvider';
|
|
4
|
+
import { ChartAnyPluginSignature } from '../internals/plugins/models';
|
|
5
|
+
import { ChartSeriesType } from '../models/seriesType/config';
|
|
6
|
+
import { AllPluginSignatures } from '../internals/plugins/allPlugins';
|
|
7
|
+
export declare const useChartDataProviderProps: <TSeries extends ChartSeriesType = keyof import("../internals").ChartsSeriesConfig, TSignatures extends readonly ChartAnyPluginSignature[] = AllPluginSignatures<TSeries>>(props: ChartDataProviderProps<TSeries, TSignatures>) => {
|
|
8
|
+
children: import("react").ReactNode;
|
|
9
|
+
animationProviderProps: Omit<AnimationProviderProps, "children">;
|
|
10
|
+
chartProviderProps: Omit<ChartProviderProps<TSeries, TSignatures>, "children">;
|
|
11
|
+
};
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
'use client';
|
|
2
|
+
|
|
3
|
+
import _extends from "@babel/runtime/helpers/esm/extends";
|
|
4
|
+
import _objectWithoutPropertiesLoose from "@babel/runtime/helpers/esm/objectWithoutPropertiesLoose";
|
|
5
|
+
const _excluded = ["apiRef", "width", "height", "series", "margin", "colors", "dataset", "children", "skipAnimation", "plugins", "seriesConfig"];
|
|
6
|
+
import { useTheme } from '@mui/material/styles';
|
|
7
|
+
export const useChartDataProviderProps = props => {
|
|
8
|
+
const {
|
|
9
|
+
apiRef,
|
|
10
|
+
width,
|
|
11
|
+
height,
|
|
12
|
+
series,
|
|
13
|
+
margin,
|
|
14
|
+
colors,
|
|
15
|
+
dataset,
|
|
16
|
+
children,
|
|
17
|
+
skipAnimation,
|
|
18
|
+
plugins,
|
|
19
|
+
seriesConfig
|
|
20
|
+
} = props,
|
|
21
|
+
other = _objectWithoutPropertiesLoose(props, _excluded);
|
|
22
|
+
const theme = useTheme();
|
|
23
|
+
const chartProviderProps = {
|
|
24
|
+
plugins,
|
|
25
|
+
seriesConfig,
|
|
26
|
+
pluginParams: _extends({
|
|
27
|
+
apiRef,
|
|
28
|
+
width,
|
|
29
|
+
height,
|
|
30
|
+
margin,
|
|
31
|
+
dataset,
|
|
32
|
+
series,
|
|
33
|
+
colors,
|
|
34
|
+
theme: theme.palette.mode
|
|
35
|
+
}, other)
|
|
36
|
+
};
|
|
37
|
+
const animationProviderProps = {
|
|
38
|
+
skipAnimation
|
|
39
|
+
};
|
|
40
|
+
return {
|
|
41
|
+
children,
|
|
42
|
+
animationProviderProps,
|
|
43
|
+
chartProviderProps
|
|
44
|
+
};
|
|
45
|
+
};
|
package/ChartsAxis/ChartsAxis.js
CHANGED
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
import _extends from "@babel/runtime/helpers/esm/extends";
|
|
4
4
|
import * as React from 'react';
|
|
5
5
|
import PropTypes from 'prop-types';
|
|
6
|
-
import { useCartesianContext } from "../context/CartesianProvider/index.js";
|
|
7
6
|
import { ChartsXAxis } from "../ChartsXAxis/index.js";
|
|
8
7
|
import { ChartsYAxis } from "../ChartsYAxis/index.js";
|
|
8
|
+
import { useXAxes, useYAxes } from "../hooks/index.js";
|
|
9
9
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
10
10
|
const getAxisId = (propsValue, defaultAxisId) => {
|
|
11
11
|
if (propsValue == null) {
|
|
@@ -46,14 +46,12 @@ function ChartsAxis(props) {
|
|
|
46
46
|
} = props;
|
|
47
47
|
const {
|
|
48
48
|
xAxis,
|
|
49
|
-
xAxisIds
|
|
49
|
+
xAxisIds
|
|
50
|
+
} = useXAxes();
|
|
51
|
+
const {
|
|
50
52
|
yAxis,
|
|
51
53
|
yAxisIds
|
|
52
|
-
} =
|
|
53
|
-
|
|
54
|
-
// TODO: use for plotting line without ticks or any thing
|
|
55
|
-
// const drawingArea = React.useContext(DrawingContext);
|
|
56
|
-
|
|
54
|
+
} = useYAxes();
|
|
57
55
|
const leftId = getAxisId(leftAxis === undefined ? yAxisIds[0] : leftAxis, yAxisIds[0]);
|
|
58
56
|
const bottomId = getAxisId(bottomAxis === undefined ? xAxisIds[0] : bottomAxis, xAxisIds[0]);
|
|
59
57
|
const topId = getAxisId(topAxis, xAxisIds[0]);
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import
|
|
1
|
+
import generateUtilityClass from '@mui/utils/generateUtilityClass';
|
|
2
|
+
import generateUtilityClasses from '@mui/utils/generateUtilityClasses';
|
|
2
3
|
export function getAxisUtilityClass(slot) {
|
|
3
4
|
return generateUtilityClass('MuiChartsAxis', slot);
|
|
4
5
|
}
|
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
import * as React from 'react';
|
|
4
4
|
import { getValueToPositionMapper, useXScale } from "../hooks/useScale.js";
|
|
5
5
|
import { isBandScale } from "../internals/isBandScale.js";
|
|
6
|
-
import { useSelector } from "../internals/useSelector.js";
|
|
7
|
-
import { useStore } from "../internals/useStore.js";
|
|
8
|
-
import { selectorChartsInteractionXAxis } from "../
|
|
6
|
+
import { useSelector } from "../internals/store/useSelector.js";
|
|
7
|
+
import { useStore } from "../internals/store/useStore.js";
|
|
8
|
+
import { selectorChartsInteractionXAxis } from "../internals/plugins/featurePlugins/useChartInteraction/index.js";
|
|
9
9
|
import { useDrawingArea } from "../hooks/index.js";
|
|
10
10
|
import { ChartsAxisHighlightPath } from "./ChartsAxisHighlightPath.js";
|
|
11
11
|
|
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
import * as React from 'react';
|
|
4
4
|
import { getValueToPositionMapper, useYScale } from "../hooks/useScale.js";
|
|
5
5
|
import { isBandScale } from "../internals/isBandScale.js";
|
|
6
|
-
import { useSelector } from "../internals/useSelector.js";
|
|
7
|
-
import { useStore } from "../internals/useStore.js";
|
|
8
|
-
import { selectorChartsInteractionYAxis } from "../
|
|
6
|
+
import { useSelector } from "../internals/store/useSelector.js";
|
|
7
|
+
import { useStore } from "../internals/store/useStore.js";
|
|
8
|
+
import { selectorChartsInteractionYAxis } from "../internals/plugins/featurePlugins/useChartInteraction/index.js";
|
|
9
9
|
import { useDrawingArea } from "../hooks/index.js";
|
|
10
10
|
import { ChartsAxisHighlightPath } from "./ChartsAxisHighlightPath.js";
|
|
11
11
|
|
package/ChartsGrid/ChartsGrid.js
CHANGED
|
@@ -7,12 +7,12 @@ import * as React from 'react';
|
|
|
7
7
|
import PropTypes from 'prop-types';
|
|
8
8
|
import composeClasses from '@mui/utils/composeClasses';
|
|
9
9
|
import { useThemeProps } from '@mui/material/styles';
|
|
10
|
-
import { useCartesianContext } from "../context/CartesianProvider/index.js";
|
|
11
10
|
import { getChartsGridUtilityClass } from "./chartsGridClasses.js";
|
|
12
11
|
import { useDrawingArea } from "../hooks/useDrawingArea.js";
|
|
13
12
|
import { GridRoot } from "./styledComponents.js";
|
|
14
13
|
import { ChartsGridVertical } from "./ChartsVerticalGrid.js";
|
|
15
14
|
import { ChartsGridHorizontal } from "./ChartsHorizontalGrid.js";
|
|
15
|
+
import { useXAxes, useYAxes } from "../hooks/useAxis.js";
|
|
16
16
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
17
17
|
const useUtilityClasses = ({
|
|
18
18
|
classes
|
|
@@ -46,10 +46,12 @@ function ChartsGrid(inProps) {
|
|
|
46
46
|
other = _objectWithoutPropertiesLoose(props, _excluded);
|
|
47
47
|
const {
|
|
48
48
|
xAxis,
|
|
49
|
-
xAxisIds
|
|
49
|
+
xAxisIds
|
|
50
|
+
} = useXAxes();
|
|
51
|
+
const {
|
|
50
52
|
yAxis,
|
|
51
53
|
yAxisIds
|
|
52
|
-
} =
|
|
54
|
+
} = useYAxes();
|
|
53
55
|
const classes = useUtilityClasses(props);
|
|
54
56
|
const horizontalAxis = yAxis[yAxisIds[0]];
|
|
55
57
|
const verticalAxis = xAxis[xAxisIds[0]];
|
|
@@ -57,11 +59,13 @@ function ChartsGrid(inProps) {
|
|
|
57
59
|
className: classes.root,
|
|
58
60
|
children: [vertical && /*#__PURE__*/_jsx(ChartsGridVertical, {
|
|
59
61
|
axis: verticalAxis,
|
|
60
|
-
|
|
62
|
+
start: drawingArea.top,
|
|
63
|
+
end: drawingArea.height + drawingArea.top,
|
|
61
64
|
classes: classes
|
|
62
65
|
}), horizontal && /*#__PURE__*/_jsx(ChartsGridHorizontal, {
|
|
63
66
|
axis: horizontalAxis,
|
|
64
|
-
|
|
67
|
+
start: drawingArea.left,
|
|
68
|
+
end: drawingArea.width + drawingArea.left,
|
|
65
69
|
classes: classes
|
|
66
70
|
})]
|
|
67
71
|
}));
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
|
-
import { DrawingAreaState } from '../context/DrawingAreaProvider';
|
|
3
2
|
import { AxisDefaultized, ChartsYAxisProps, ScaleName } from '../models/axis';
|
|
4
3
|
import { ChartsGridClasses } from './chartsGridClasses';
|
|
5
4
|
interface ChartsGridHorizontalProps {
|
|
6
5
|
axis: AxisDefaultized<ScaleName, any, ChartsYAxisProps>;
|
|
7
|
-
|
|
6
|
+
start: number;
|
|
7
|
+
end: number;
|
|
8
8
|
classes: Partial<ChartsGridClasses>;
|
|
9
9
|
}
|
|
10
10
|
/**
|
|
@@ -8,7 +8,8 @@ import { jsx as _jsx } from "react/jsx-runtime";
|
|
|
8
8
|
export function ChartsGridHorizontal(props) {
|
|
9
9
|
const {
|
|
10
10
|
axis,
|
|
11
|
-
|
|
11
|
+
start,
|
|
12
|
+
end,
|
|
12
13
|
classes
|
|
13
14
|
} = props;
|
|
14
15
|
const {
|
|
@@ -28,8 +29,8 @@ export function ChartsGridHorizontal(props) {
|
|
|
28
29
|
}) => /*#__PURE__*/_jsx(GridLine, {
|
|
29
30
|
y1: offset,
|
|
30
31
|
y2: offset,
|
|
31
|
-
x1:
|
|
32
|
-
x2:
|
|
32
|
+
x1: start,
|
|
33
|
+
x2: end,
|
|
33
34
|
className: classes.horizontalLine
|
|
34
35
|
}, `horizontal-${value}`))
|
|
35
36
|
});
|