@mui/x-charts 8.11.3 → 8.13.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (304) hide show
  1. package/BarChart/BarChart.d.ts +2 -2
  2. package/BarChart/BarChart.js +1 -0
  3. package/BarChart/BarChart.plugins.d.ts +3 -2
  4. package/BarChart/BarChart.plugins.js +2 -1
  5. package/BarChart/BarElement.js +10 -2
  6. package/BarChart/index.d.ts +1 -0
  7. package/BarChart/index.js +12 -0
  8. package/BarChart/useBarChartProps.d.ts +2 -2
  9. package/CHANGELOG.md +296 -6
  10. package/ChartContainer/ChartContainer.js +4 -2
  11. package/ChartContainer/useChartContainerProps.js +4 -2
  12. package/ChartsLegend/ContinuousColorLegend.js +1 -0
  13. package/ChartsLegend/PiecewiseColorLegend.js +1 -0
  14. package/ChartsSurface/ChartsSurface.js +23 -3
  15. package/ChartsWrapper/ChartsWrapper.d.ts +2 -1
  16. package/ChartsWrapper/ChartsWrapper.js +49 -46
  17. package/ChartsXAxis/useAxisTicksProps.d.ts +3 -3
  18. package/ChartsYAxis/useAxisTicksProps.d.ts +3 -3
  19. package/LineChart/FocusedMark.d.ts +2 -0
  20. package/LineChart/FocusedMark.js +44 -0
  21. package/LineChart/LineChart.d.ts +2 -2
  22. package/LineChart/LineChart.js +3 -1
  23. package/LineChart/LineChart.plugins.d.ts +3 -2
  24. package/LineChart/LineChart.plugins.js +2 -1
  25. package/LineChart/index.d.ts +1 -0
  26. package/LineChart/index.js +12 -0
  27. package/LineChart/useLineChartProps.d.ts +2 -2
  28. package/PieChart/PieArc.d.ts +4 -0
  29. package/PieChart/PieArc.js +16 -11
  30. package/PieChart/PieArcPlot.js +28 -3
  31. package/PieChart/PieChart.js +1 -0
  32. package/PieChart/PieChart.plugins.d.ts +2 -1
  33. package/PieChart/PieChart.plugins.js +2 -1
  34. package/PieChart/dataTransform/useTransformData.d.ts +1 -0
  35. package/PieChart/dataTransform/useTransformData.js +9 -1
  36. package/PieChart/index.d.ts +1 -0
  37. package/PieChart/index.js +12 -0
  38. package/RadarChart/RadarChart.plugins.d.ts +1 -1
  39. package/RadarChart/RadarDataProvider/RadarDataProvider.d.ts +3 -3
  40. package/RadarChart/index.d.ts +2 -1
  41. package/RadarChart/index.js +12 -0
  42. package/RadarChart/useRadarChartProps.d.ts +2 -2
  43. package/ScatterChart/BatchScatter.d.ts +32 -0
  44. package/ScatterChart/BatchScatter.js +171 -0
  45. package/ScatterChart/Scatter.js +13 -5
  46. package/ScatterChart/ScatterChart.d.ts +4 -4
  47. package/ScatterChart/ScatterChart.js +13 -2
  48. package/ScatterChart/ScatterChart.plugins.d.ts +4 -3
  49. package/ScatterChart/ScatterChart.plugins.js +3 -2
  50. package/ScatterChart/ScatterPlot.d.ts +10 -0
  51. package/ScatterChart/ScatterPlot.js +14 -2
  52. package/ScatterChart/index.d.ts +1 -0
  53. package/ScatterChart/index.js +12 -0
  54. package/ScatterChart/useScatterChartProps.d.ts +2 -2
  55. package/ScatterChart/useScatterChartProps.js +8 -5
  56. package/SparkLineChart/SparkLineChart.js +10 -5
  57. package/Toolbar/Toolbar.js +1 -2
  58. package/colorPalettes/types.d.ts +1 -1
  59. package/context/ChartApi.d.ts +6 -6
  60. package/esm/BarChart/BarChart.d.ts +2 -2
  61. package/esm/BarChart/BarChart.js +1 -0
  62. package/esm/BarChart/BarChart.plugins.d.ts +3 -2
  63. package/esm/BarChart/BarChart.plugins.js +2 -1
  64. package/esm/BarChart/BarElement.js +10 -2
  65. package/esm/BarChart/index.d.ts +1 -0
  66. package/esm/BarChart/index.js +1 -0
  67. package/esm/BarChart/useBarChartProps.d.ts +2 -2
  68. package/esm/ChartContainer/ChartContainer.js +4 -2
  69. package/esm/ChartContainer/useChartContainerProps.js +4 -2
  70. package/esm/ChartsLegend/ContinuousColorLegend.js +1 -0
  71. package/esm/ChartsLegend/PiecewiseColorLegend.js +1 -0
  72. package/esm/ChartsSurface/ChartsSurface.js +23 -3
  73. package/esm/ChartsWrapper/ChartsWrapper.d.ts +2 -1
  74. package/esm/ChartsWrapper/ChartsWrapper.js +49 -46
  75. package/esm/ChartsXAxis/useAxisTicksProps.d.ts +3 -3
  76. package/esm/ChartsYAxis/useAxisTicksProps.d.ts +3 -3
  77. package/esm/LineChart/FocusedMark.d.ts +2 -0
  78. package/esm/LineChart/FocusedMark.js +38 -0
  79. package/esm/LineChart/LineChart.d.ts +2 -2
  80. package/esm/LineChart/LineChart.js +3 -1
  81. package/esm/LineChart/LineChart.plugins.d.ts +3 -2
  82. package/esm/LineChart/LineChart.plugins.js +2 -1
  83. package/esm/LineChart/index.d.ts +1 -0
  84. package/esm/LineChart/index.js +1 -0
  85. package/esm/LineChart/useLineChartProps.d.ts +2 -2
  86. package/esm/PieChart/PieArc.d.ts +4 -0
  87. package/esm/PieChart/PieArc.js +17 -12
  88. package/esm/PieChart/PieArcPlot.js +30 -5
  89. package/esm/PieChart/PieChart.js +1 -0
  90. package/esm/PieChart/PieChart.plugins.d.ts +2 -1
  91. package/esm/PieChart/PieChart.plugins.js +2 -1
  92. package/esm/PieChart/dataTransform/useTransformData.d.ts +1 -0
  93. package/esm/PieChart/dataTransform/useTransformData.js +9 -1
  94. package/esm/PieChart/index.d.ts +1 -0
  95. package/esm/PieChart/index.js +1 -0
  96. package/esm/RadarChart/RadarChart.plugins.d.ts +1 -1
  97. package/esm/RadarChart/RadarDataProvider/RadarDataProvider.d.ts +3 -3
  98. package/esm/RadarChart/index.d.ts +2 -1
  99. package/esm/RadarChart/index.js +2 -1
  100. package/esm/RadarChart/useRadarChartProps.d.ts +2 -2
  101. package/esm/ScatterChart/BatchScatter.d.ts +32 -0
  102. package/esm/ScatterChart/BatchScatter.js +165 -0
  103. package/esm/ScatterChart/Scatter.js +13 -5
  104. package/esm/ScatterChart/ScatterChart.d.ts +4 -4
  105. package/esm/ScatterChart/ScatterChart.js +13 -2
  106. package/esm/ScatterChart/ScatterChart.plugins.d.ts +4 -3
  107. package/esm/ScatterChart/ScatterChart.plugins.js +3 -2
  108. package/esm/ScatterChart/ScatterPlot.d.ts +10 -0
  109. package/esm/ScatterChart/ScatterPlot.js +14 -2
  110. package/esm/ScatterChart/index.d.ts +1 -0
  111. package/esm/ScatterChart/index.js +1 -0
  112. package/esm/ScatterChart/useScatterChartProps.d.ts +2 -2
  113. package/esm/ScatterChart/useScatterChartProps.js +8 -5
  114. package/esm/SparkLineChart/SparkLineChart.js +10 -5
  115. package/esm/Toolbar/Toolbar.js +1 -2
  116. package/esm/colorPalettes/types.d.ts +1 -1
  117. package/esm/context/ChartApi.d.ts +6 -6
  118. package/esm/hooks/useAxis.d.ts +5 -5
  119. package/esm/hooks/useDrawingArea.d.ts +20 -2
  120. package/esm/hooks/useFocusedItem.d.ts +15 -0
  121. package/esm/hooks/useFocusedItem.js +20 -0
  122. package/esm/hooks/useIsItemFocused.d.ts +12 -0
  123. package/esm/hooks/useIsItemFocused.js +15 -0
  124. package/esm/hooks/useIsItemFocusedGetter.d.ts +8 -0
  125. package/esm/hooks/useIsItemFocusedGetter.js +14 -0
  126. package/esm/hooks/useScale.js +6 -0
  127. package/esm/index.d.ts +1 -0
  128. package/esm/index.js +2 -1
  129. package/esm/internals/animation/Transition.js +1 -3
  130. package/esm/internals/index.d.ts +3 -2
  131. package/esm/internals/index.js +3 -2
  132. package/esm/internals/plugins/allPlugins.d.ts +5 -4
  133. package/esm/internals/plugins/allPlugins.js +3 -2
  134. package/esm/internals/plugins/corePlugins/useChartInteractionListener/useChartInteractionListener.js +60 -32
  135. package/esm/internals/plugins/corePlugins/useChartInteractionListener/useChartInteractionListener.types.d.ts +19 -5
  136. package/esm/internals/plugins/corePlugins/useChartSeries/processSeries.d.ts +1 -1
  137. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/computeAxisValue.d.ts +2 -0
  138. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/computeAxisValue.js +66 -72
  139. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/createAxisFilterMapper.d.ts +3 -19
  140. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/createAxisFilterMapper.js +10 -18
  141. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisDomainLimit.d.ts +1 -1
  142. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/{getAxisExtremum.d.ts → getAxisExtrema.d.ts} +1 -1
  143. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisExtrema.js +24 -0
  144. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisScale.d.ts +66 -0
  145. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisScale.js +121 -0
  146. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxis.js +8 -6
  147. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisPreview.selectors.d.ts +2 -0
  148. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisPreview.selectors.js +49 -5
  149. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisRendering.selectors.d.ts +20 -0
  150. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisRendering.selectors.js +41 -21
  151. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianHighlight.selectors.d.ts +2 -2
  152. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianHighlight.selectors.js +30 -7
  153. package/esm/internals/plugins/featurePlugins/useChartClosestPoint/index.d.ts +3 -0
  154. package/esm/internals/plugins/featurePlugins/useChartClosestPoint/index.js +2 -0
  155. package/esm/internals/plugins/featurePlugins/useChartClosestPoint/useChartClosestPoint.d.ts +3 -0
  156. package/esm/internals/plugins/featurePlugins/{useChartVoronoi/useChartVoronoi.js → useChartClosestPoint/useChartClosestPoint.js} +9 -7
  157. package/esm/internals/plugins/featurePlugins/useChartClosestPoint/useChartClosestPoint.selectors.d.ts +5 -0
  158. package/esm/internals/plugins/featurePlugins/useChartClosestPoint/useChartClosestPoint.selectors.js +3 -0
  159. package/esm/internals/plugins/featurePlugins/{useChartVoronoi/useChartVoronoi.types.d.ts → useChartClosestPoint/useChartClosestPoint.types.d.ts} +8 -4
  160. package/esm/internals/plugins/featurePlugins/useChartHighlight/highlightStates.d.ts +16 -0
  161. package/esm/internals/plugins/featurePlugins/useChartHighlight/highlightStates.js +32 -0
  162. package/esm/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.selectors.d.ts +4 -0
  163. package/esm/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.selectors.js +5 -0
  164. package/esm/internals/plugins/featurePlugins/useChartInteraction/checkHasInteractionPlugin.d.ts +3 -0
  165. package/esm/internals/plugins/featurePlugins/useChartInteraction/checkHasInteractionPlugin.js +3 -0
  166. package/esm/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.js +6 -4
  167. package/esm/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.selectors.d.ts +6 -1
  168. package/esm/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.selectors.js +2 -1
  169. package/esm/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.types.d.ts +6 -0
  170. package/esm/internals/plugins/featurePlugins/useChartKeyboardNavigation/index.d.ts +3 -0
  171. package/esm/internals/plugins/featurePlugins/useChartKeyboardNavigation/index.js +2 -0
  172. package/esm/internals/plugins/featurePlugins/useChartKeyboardNavigation/useChartKeyboardNavigation.d.ts +3 -0
  173. package/esm/internals/plugins/featurePlugins/useChartKeyboardNavigation/useChartKeyboardNavigation.helpers.d.ts +20 -0
  174. package/esm/internals/plugins/featurePlugins/useChartKeyboardNavigation/useChartKeyboardNavigation.helpers.js +88 -0
  175. package/esm/internals/plugins/featurePlugins/useChartKeyboardNavigation/useChartKeyboardNavigation.js +170 -0
  176. package/esm/internals/plugins/featurePlugins/useChartKeyboardNavigation/useChartKeyboardNavigation.selectors.d.ts +37 -0
  177. package/esm/internals/plugins/featurePlugins/useChartKeyboardNavigation/useChartKeyboardNavigation.selectors.js +33 -0
  178. package/esm/internals/plugins/featurePlugins/useChartKeyboardNavigation/useChartKeyboardNavigation.types.d.ts +36 -0
  179. package/esm/internals/plugins/featurePlugins/useChartKeyboardNavigation/useChartKeyboardNavigation.types.js +1 -0
  180. package/esm/internals/plugins/featurePlugins/useChartPolarAxis/computeAxisValue.js +2 -5
  181. package/esm/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarAxis.js +10 -8
  182. package/esm/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarAxis.types.d.ts +2 -1
  183. package/esm/internals/plugins/models/seriesConfig/getSeriesWithDefaultValues.types.d.ts +1 -1
  184. package/esm/internals/scaleGuards.d.ts +7 -0
  185. package/esm/internals/scaleGuards.js +6 -0
  186. package/esm/internals/ticks.d.ts +3 -5
  187. package/esm/internals/ticks.js +6 -5
  188. package/esm/locales/elGR.d.ts +96 -0
  189. package/esm/locales/elGR.js +100 -0
  190. package/esm/locales/enUS.d.ts +96 -0
  191. package/esm/locales/enUS.js +99 -1
  192. package/esm/locales/frFR.d.ts +96 -0
  193. package/esm/locales/frFR.js +100 -2
  194. package/esm/locales/ptBR.d.ts +96 -0
  195. package/esm/locales/ptBR.js +100 -0
  196. package/esm/locales/ptPT.d.ts +96 -0
  197. package/esm/locales/ptPT.js +100 -0
  198. package/esm/locales/svSE.d.ts +97 -1
  199. package/esm/locales/svSE.js +100 -0
  200. package/esm/locales/utils/chartsLocaleTextApi.d.ts +384 -0
  201. package/esm/locales/utils/getChartsLocalization.d.ts +96 -0
  202. package/esm/plugins/index.d.ts +6 -0
  203. package/esm/plugins/index.js +12 -0
  204. package/hooks/useAxis.d.ts +5 -5
  205. package/hooks/useDrawingArea.d.ts +20 -2
  206. package/hooks/useFocusedItem.d.ts +15 -0
  207. package/hooks/useFocusedItem.js +26 -0
  208. package/hooks/useIsItemFocused.d.ts +12 -0
  209. package/hooks/useIsItemFocused.js +20 -0
  210. package/hooks/useIsItemFocusedGetter.d.ts +8 -0
  211. package/hooks/useIsItemFocusedGetter.js +18 -0
  212. package/hooks/useScale.js +6 -0
  213. package/index.d.ts +1 -0
  214. package/index.js +13 -1
  215. package/internals/animation/Transition.js +0 -2
  216. package/internals/index.d.ts +3 -2
  217. package/internals/index.js +20 -8
  218. package/internals/plugins/allPlugins.d.ts +5 -4
  219. package/internals/plugins/allPlugins.js +3 -2
  220. package/internals/plugins/corePlugins/useChartInteractionListener/useChartInteractionListener.js +59 -31
  221. package/internals/plugins/corePlugins/useChartInteractionListener/useChartInteractionListener.types.d.ts +19 -5
  222. package/internals/plugins/corePlugins/useChartSeries/processSeries.d.ts +1 -1
  223. package/internals/plugins/featurePlugins/useChartCartesianAxis/computeAxisValue.d.ts +2 -0
  224. package/internals/plugins/featurePlugins/useChartCartesianAxis/computeAxisValue.js +63 -69
  225. package/internals/plugins/featurePlugins/useChartCartesianAxis/createAxisFilterMapper.d.ts +3 -19
  226. package/internals/plugins/featurePlugins/useChartCartesianAxis/createAxisFilterMapper.js +10 -18
  227. package/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisDomainLimit.d.ts +1 -1
  228. package/internals/plugins/featurePlugins/useChartCartesianAxis/{getAxisExtremum.d.ts → getAxisExtrema.d.ts} +1 -1
  229. package/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisExtrema.js +30 -0
  230. package/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisScale.d.ts +66 -0
  231. package/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisScale.js +131 -0
  232. package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxis.js +8 -6
  233. package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisPreview.selectors.d.ts +2 -0
  234. package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisPreview.selectors.js +49 -5
  235. package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisRendering.selectors.d.ts +20 -0
  236. package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisRendering.selectors.js +42 -22
  237. package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianHighlight.selectors.d.ts +2 -2
  238. package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianHighlight.selectors.js +30 -7
  239. package/internals/plugins/featurePlugins/useChartClosestPoint/index.d.ts +3 -0
  240. package/internals/plugins/featurePlugins/useChartClosestPoint/index.js +27 -0
  241. package/internals/plugins/featurePlugins/useChartClosestPoint/useChartClosestPoint.d.ts +3 -0
  242. package/internals/plugins/featurePlugins/{useChartVoronoi/useChartVoronoi.js → useChartClosestPoint/useChartClosestPoint.js} +11 -9
  243. package/internals/plugins/featurePlugins/useChartClosestPoint/useChartClosestPoint.selectors.d.ts +5 -0
  244. package/internals/plugins/featurePlugins/useChartClosestPoint/useChartClosestPoint.selectors.js +9 -0
  245. package/internals/plugins/featurePlugins/{useChartVoronoi/useChartVoronoi.types.d.ts → useChartClosestPoint/useChartClosestPoint.types.d.ts} +8 -4
  246. package/internals/plugins/featurePlugins/useChartHighlight/highlightStates.d.ts +16 -0
  247. package/internals/plugins/featurePlugins/useChartHighlight/highlightStates.js +41 -0
  248. package/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.selectors.d.ts +4 -0
  249. package/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.selectors.js +6 -1
  250. package/internals/plugins/featurePlugins/useChartInteraction/checkHasInteractionPlugin.d.ts +3 -0
  251. package/internals/plugins/featurePlugins/useChartInteraction/checkHasInteractionPlugin.js +9 -0
  252. package/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.js +6 -4
  253. package/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.selectors.d.ts +6 -1
  254. package/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.selectors.js +3 -2
  255. package/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.types.d.ts +6 -0
  256. package/internals/plugins/featurePlugins/useChartKeyboardNavigation/index.d.ts +3 -0
  257. package/internals/plugins/featurePlugins/useChartKeyboardNavigation/index.js +27 -0
  258. package/internals/plugins/featurePlugins/useChartKeyboardNavigation/useChartKeyboardNavigation.d.ts +3 -0
  259. package/internals/plugins/featurePlugins/useChartKeyboardNavigation/useChartKeyboardNavigation.helpers.d.ts +20 -0
  260. package/internals/plugins/featurePlugins/useChartKeyboardNavigation/useChartKeyboardNavigation.helpers.js +96 -0
  261. package/internals/plugins/featurePlugins/useChartKeyboardNavigation/useChartKeyboardNavigation.js +178 -0
  262. package/internals/plugins/featurePlugins/useChartKeyboardNavigation/useChartKeyboardNavigation.selectors.d.ts +37 -0
  263. package/internals/plugins/featurePlugins/useChartKeyboardNavigation/useChartKeyboardNavigation.selectors.js +39 -0
  264. package/internals/plugins/featurePlugins/useChartKeyboardNavigation/useChartKeyboardNavigation.types.d.ts +36 -0
  265. package/internals/plugins/featurePlugins/useChartKeyboardNavigation/useChartKeyboardNavigation.types.js +5 -0
  266. package/internals/plugins/featurePlugins/useChartPolarAxis/computeAxisValue.js +1 -4
  267. package/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarAxis.js +10 -8
  268. package/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarAxis.types.d.ts +2 -1
  269. package/internals/plugins/models/seriesConfig/getSeriesWithDefaultValues.types.d.ts +1 -1
  270. package/internals/scaleGuards.d.ts +7 -0
  271. package/internals/scaleGuards.js +8 -0
  272. package/internals/ticks.d.ts +3 -5
  273. package/internals/ticks.js +7 -5
  274. package/locales/elGR.d.ts +96 -0
  275. package/locales/elGR.js +100 -0
  276. package/locales/enUS.d.ts +96 -0
  277. package/locales/enUS.js +99 -1
  278. package/locales/frFR.d.ts +96 -0
  279. package/locales/frFR.js +100 -2
  280. package/locales/ptBR.d.ts +96 -0
  281. package/locales/ptBR.js +100 -0
  282. package/locales/ptPT.d.ts +96 -0
  283. package/locales/ptPT.js +100 -0
  284. package/locales/svSE.d.ts +97 -1
  285. package/locales/svSE.js +100 -0
  286. package/locales/utils/chartsLocaleTextApi.d.ts +384 -0
  287. package/locales/utils/getChartsLocalization.d.ts +96 -0
  288. package/package.json +5 -5
  289. package/plugins/index.d.ts +6 -0
  290. package/plugins/index.js +47 -0
  291. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisExtremum.js +0 -22
  292. package/esm/internals/plugins/featurePlugins/useChartVoronoi/index.d.ts +0 -3
  293. package/esm/internals/plugins/featurePlugins/useChartVoronoi/index.js +0 -2
  294. package/esm/internals/plugins/featurePlugins/useChartVoronoi/useChartVoronoi.d.ts +0 -3
  295. package/esm/internals/plugins/featurePlugins/useChartVoronoi/useChartVoronoi.selectors.d.ts +0 -5
  296. package/esm/internals/plugins/featurePlugins/useChartVoronoi/useChartVoronoi.selectors.js +0 -3
  297. package/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisExtremum.js +0 -29
  298. package/internals/plugins/featurePlugins/useChartVoronoi/index.d.ts +0 -3
  299. package/internals/plugins/featurePlugins/useChartVoronoi/index.js +0 -27
  300. package/internals/plugins/featurePlugins/useChartVoronoi/useChartVoronoi.d.ts +0 -3
  301. package/internals/plugins/featurePlugins/useChartVoronoi/useChartVoronoi.selectors.d.ts +0 -5
  302. package/internals/plugins/featurePlugins/useChartVoronoi/useChartVoronoi.selectors.js +0 -9
  303. /package/esm/internals/plugins/featurePlugins/{useChartVoronoi/useChartVoronoi.types.js → useChartClosestPoint/useChartClosestPoint.types.js} +0 -0
  304. /package/internals/plugins/featurePlugins/{useChartVoronoi/useChartVoronoi.types.js → useChartClosestPoint/useChartClosestPoint.types.js} +0 -0
@@ -3,6 +3,7 @@ import { UseChartCartesianAxisSignature } from "../internals/plugins/featurePlug
3
3
  import { UseChartInteractionSignature } from "../internals/plugins/featurePlugins/useChartInteraction/index.js";
4
4
  import { UseChartHighlightSignature } from "../internals/plugins/featurePlugins/useChartHighlight/index.js";
5
5
  import { ConvertSignaturesIntoPlugins } from "../internals/plugins/models/helpers.js";
6
- import { UseChartVoronoiSignature } from "../internals/plugins/featurePlugins/useChartVoronoi/index.js";
7
- export type ScatterChartPluginsSignatures = [UseChartZAxisSignature, UseChartCartesianAxisSignature<'scatter'>, UseChartInteractionSignature, UseChartHighlightSignature, UseChartVoronoiSignature];
8
- export declare const SCATTER_CHART_PLUGINS: ConvertSignaturesIntoPlugins<ScatterChartPluginsSignatures>;
6
+ import { UseChartClosestPointSignature } from "../internals/plugins/featurePlugins/useChartClosestPoint/index.js";
7
+ import { UseChartKeyboardNavigationSignature } from "../internals/plugins/featurePlugins/useChartKeyboardNavigation/index.js";
8
+ export type ScatterChartPluginSignatures = [UseChartZAxisSignature, UseChartCartesianAxisSignature<'scatter'>, UseChartInteractionSignature, UseChartHighlightSignature, UseChartClosestPointSignature, UseChartKeyboardNavigationSignature];
9
+ export declare const SCATTER_CHART_PLUGINS: ConvertSignaturesIntoPlugins<ScatterChartPluginSignatures>;
@@ -2,5 +2,6 @@ import { useChartZAxis } from "../internals/plugins/featurePlugins/useChartZAxis
2
2
  import { useChartCartesianAxis } from "../internals/plugins/featurePlugins/useChartCartesianAxis/index.js";
3
3
  import { useChartInteraction } from "../internals/plugins/featurePlugins/useChartInteraction/index.js";
4
4
  import { useChartHighlight } from "../internals/plugins/featurePlugins/useChartHighlight/index.js";
5
- import { useChartVoronoi } from "../internals/plugins/featurePlugins/useChartVoronoi/index.js";
6
- export const SCATTER_CHART_PLUGINS = [useChartZAxis, useChartCartesianAxis, useChartInteraction, useChartHighlight, useChartVoronoi];
5
+ import { useChartClosestPoint } from "../internals/plugins/featurePlugins/useChartClosestPoint/index.js";
6
+ import { useChartKeyboardNavigation } from "../internals/plugins/featurePlugins/useChartKeyboardNavigation/index.js";
7
+ export const SCATTER_CHART_PLUGINS = [useChartZAxis, useChartCartesianAxis, useChartInteraction, useChartHighlight, useChartClosestPoint, useChartKeyboardNavigation];
@@ -6,6 +6,7 @@ export interface ScatterPlotSlots extends ScatterSlots {
6
6
  export interface ScatterPlotSlotProps extends ScatterSlotProps {
7
7
  scatter?: Partial<ScatterProps>;
8
8
  }
9
+ export type RendererType = 'svg-single' | 'svg-batch';
9
10
  export interface ScatterPlotProps extends Pick<ScatterProps, 'onItemClick'> {
10
11
  /**
11
12
  * Overridable component slots.
@@ -17,6 +18,15 @@ export interface ScatterPlotProps extends Pick<ScatterProps, 'onItemClick'> {
17
18
  * @default {}
18
19
  */
19
20
  slotProps?: ScatterPlotSlotProps;
21
+ /**
22
+ * The type of renderer to use for the scatter plot.
23
+ * - `svg-single`: Renders every scatter item in a `<circle />` element.
24
+ * - `svg-batch`: Batch renders scatter items in `<path />` elements for better performance with large datasets, at the cost of some limitations.
25
+ * Read more: https://mui.com/x/react-charts/scatter/#performance
26
+ *
27
+ * @default 'svg-single'
28
+ */
29
+ renderer?: RendererType;
20
30
  }
21
31
  /**
22
32
  * Demos:
@@ -8,6 +8,7 @@ import { useScatterSeriesContext } from "../hooks/useScatterSeries.js";
8
8
  import { useXAxes, useYAxes } from "../hooks/index.js";
9
9
  import { useZAxes } from "../hooks/useZAxis.js";
10
10
  import { seriesConfig as scatterSeriesConfig } from "./seriesConfig/index.js";
11
+ import { BatchScatter } from "./BatchScatter.js";
11
12
  import { jsx as _jsx } from "react/jsx-runtime";
12
13
  /**
13
14
  * Demos:
@@ -23,7 +24,8 @@ function ScatterPlot(props) {
23
24
  const {
24
25
  slots,
25
26
  slotProps,
26
- onItemClick
27
+ onItemClick,
28
+ renderer
27
29
  } = props;
28
30
  const seriesData = useScatterSeriesContext();
29
31
  const {
@@ -48,7 +50,8 @@ function ScatterPlot(props) {
48
50
  const defaultXAxisId = xAxisIds[0];
49
51
  const defaultYAxisId = yAxisIds[0];
50
52
  const defaultZAxisId = zAxisIds[0];
51
- const ScatterItems = slots?.scatter ?? Scatter;
53
+ const DefaultScatterItems = renderer === 'svg-batch' ? BatchScatter : Scatter;
54
+ const ScatterItems = slots?.scatter ?? DefaultScatterItems;
52
55
  return /*#__PURE__*/_jsx(React.Fragment, {
53
56
  children: seriesOrder.map(seriesId => {
54
57
  const {
@@ -85,6 +88,15 @@ process.env.NODE_ENV !== "production" ? ScatterPlot.propTypes = {
85
88
  * @param {ScatterItemIdentifier} scatterItemIdentifier The scatter item identifier.
86
89
  */
87
90
  onItemClick: PropTypes.func,
91
+ /**
92
+ * The type of renderer to use for the scatter plot.
93
+ * - `svg-single`: Renders every scatter item in a `<circle />` element.
94
+ * - `svg-batch`: Batch renders scatter items in `<path />` elements for better performance with large datasets, at the cost of some limitations.
95
+ * Read more: https://mui.com/x/react-charts/scatter/#performance
96
+ *
97
+ * @default 'svg-single'
98
+ */
99
+ renderer: PropTypes.oneOf(['svg-batch', 'svg-single']),
88
100
  /**
89
101
  * The props used for each component slot.
90
102
  * @default {}
@@ -3,5 +3,6 @@ export * from "./ScatterPlot.js";
3
3
  export * from "./Scatter.js";
4
4
  export * from "./ScatterMarker.types.js";
5
5
  export * from "./ScatterMarker.js";
6
+ export * from "./ScatterChart.plugins.js";
6
7
  export type { ScatterClasses } from "./scatterClasses.js";
7
8
  export { scatterClasses } from "./scatterClasses.js";
@@ -3,4 +3,5 @@ export * from "./ScatterPlot.js";
3
3
  export * from "./Scatter.js";
4
4
  export * from "./ScatterMarker.types.js";
5
5
  export * from "./ScatterMarker.js";
6
+ export * from "./ScatterChart.plugins.js";
6
7
  export { scatterClasses } from "./scatterClasses.js";
@@ -8,7 +8,7 @@ import { ChartContainerProps } from "../ChartContainer/index.js";
8
8
  import type { ScatterChartProps } from "./ScatterChart.js";
9
9
  import type { ScatterPlotProps } from "./ScatterPlot.js";
10
10
  import type { ChartsWrapperProps } from "../ChartsWrapper/index.js";
11
- import { ScatterChartPluginsSignatures } from "./ScatterChart.plugins.js";
11
+ import { ScatterChartPluginSignatures } from "./ScatterChart.plugins.js";
12
12
  /**
13
13
  * A helper function that extracts ScatterChartProps from the input props
14
14
  * and returns an object with props for the children components of ScatterChart.
@@ -18,7 +18,7 @@ import { ScatterChartPluginsSignatures } from "./ScatterChart.plugins.js";
18
18
  */
19
19
  export declare const useScatterChartProps: (props: ScatterChartProps) => {
20
20
  chartsWrapperProps: Omit<ChartsWrapperProps, "children">;
21
- chartContainerProps: ChartContainerProps<"scatter", ScatterChartPluginsSignatures>;
21
+ chartContainerProps: ChartContainerProps<"scatter", ScatterChartPluginSignatures>;
22
22
  chartsAxisProps: ChartsAxisProps;
23
23
  gridProps: ChartsGridProps;
24
24
  scatterPlotProps: ScatterPlotProps;
@@ -2,7 +2,7 @@
2
2
 
3
3
  import _extends from "@babel/runtime/helpers/esm/extends";
4
4
  import _objectWithoutPropertiesLoose from "@babel/runtime/helpers/esm/objectWithoutPropertiesLoose";
5
- const _excluded = ["xAxis", "yAxis", "zAxis", "series", "axisHighlight", "voronoiMaxRadius", "disableVoronoi", "hideLegend", "width", "height", "margin", "colors", "sx", "grid", "onItemClick", "children", "slots", "slotProps", "loading", "highlightedItem", "onHighlightChange", "className", "showToolbar"];
5
+ const _excluded = ["xAxis", "yAxis", "zAxis", "series", "axisHighlight", "voronoiMaxRadius", "disableVoronoi", "hideLegend", "width", "height", "margin", "colors", "sx", "grid", "onItemClick", "children", "slots", "slotProps", "loading", "highlightedItem", "onHighlightChange", "className", "showToolbar", "renderer"];
6
6
  import * as React from 'react';
7
7
  import { SCATTER_CHART_PLUGINS } from "./ScatterChart.plugins.js";
8
8
  /**
@@ -34,12 +34,14 @@ export const useScatterChartProps = props => {
34
34
  loading,
35
35
  highlightedItem,
36
36
  onHighlightChange,
37
- className
37
+ className,
38
+ renderer
38
39
  } = props,
39
40
  other = _objectWithoutPropertiesLoose(props, _excluded);
40
41
  const seriesWithDefault = React.useMemo(() => series.map(s => _extends({
41
42
  type: 'scatter'
42
43
  }, s)), [series]);
44
+ const useVoronoiOnItemClick = disableVoronoi !== true || renderer === 'svg-batch';
43
45
  const chartContainerProps = _extends({}, other, {
44
46
  series: seriesWithDefault,
45
47
  width,
@@ -53,7 +55,7 @@ export const useScatterChartProps = props => {
53
55
  onHighlightChange,
54
56
  disableVoronoi,
55
57
  voronoiMaxRadius,
56
- onItemClick: disableVoronoi ? undefined : onItemClick,
58
+ onItemClick: useVoronoiOnItemClick ? onItemClick : undefined,
57
59
  className,
58
60
  plugins: SCATTER_CHART_PLUGINS,
59
61
  slots,
@@ -68,9 +70,10 @@ export const useScatterChartProps = props => {
68
70
  horizontal: grid?.horizontal
69
71
  };
70
72
  const scatterPlotProps = {
71
- onItemClick: disableVoronoi ? onItemClick : undefined,
73
+ onItemClick: useVoronoiOnItemClick ? undefined : onItemClick,
72
74
  slots,
73
- slotProps
75
+ slotProps,
76
+ renderer
74
77
  };
75
78
  const overlayProps = {
76
79
  loading,
@@ -14,6 +14,7 @@ import { ChartsSurface } from "../ChartsSurface/index.js";
14
14
  import { DEFAULT_X_AXIS_KEY, DEFAULT_Y_AXIS_KEY } from "../constants/index.js";
15
15
  import { ChartsTooltip } from "../ChartsTooltip/index.js";
16
16
  import { ChartsAxisHighlight } from "../ChartsAxisHighlight/index.js";
17
+ import { FocusedMark } from "../LineChart/FocusedMark.js";
17
18
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
18
19
  const SPARK_LINE_DEFAULT_MARGIN = 5;
19
20
 
@@ -137,9 +138,11 @@ const SparkLineChart = /*#__PURE__*/React.forwardRef(function SparkLineChart(pro
137
138
  slotProps: slotProps
138
139
  })]
139
140
  })]
140
- }), plotType === 'line' && /*#__PURE__*/_jsx(LineHighlightPlot, {
141
- slots: slots,
142
- slotProps: slotProps
141
+ }), plotType === 'line' && /*#__PURE__*/_jsxs(React.Fragment, {
142
+ children: [/*#__PURE__*/_jsx(LineHighlightPlot, {
143
+ slots: slots,
144
+ slotProps: slotProps
145
+ }), /*#__PURE__*/_jsx(FocusedMark, {})]
143
146
  }), disableClipping ? null : /*#__PURE__*/_jsx(ChartsClipPath, {
144
147
  id: clipPathId,
145
148
  offset: clipPathOffset
@@ -225,6 +228,7 @@ process.env.NODE_ENV !== "production" ? SparkLineChart.propTypes = {
225
228
  * If true, the voronoi interaction are ignored.
226
229
  */
227
230
  disableVoronoi: PropTypes.bool,
231
+ enableKeyboardNavigation: PropTypes.bool,
228
232
  /**
229
233
  * The height of the chart in px. If not defined, it takes the height of the parent element.
230
234
  */
@@ -338,10 +342,11 @@ process.env.NODE_ENV !== "production" ? SparkLineChart.propTypes = {
338
342
  */
339
343
  valueFormatter: PropTypes.func,
340
344
  /**
341
- * Defines the maximal distance between a scatter point and the pointer that triggers the interaction.
345
+ * Defines the maximum distance between a scatter point and the pointer that triggers the interaction.
346
+ * If set to `'item'`, the radius is the `markerSize`.
342
347
  * If `undefined`, the radius is assumed to be infinite.
343
348
  */
344
- voronoiMaxRadius: PropTypes.number,
349
+ voronoiMaxRadius: PropTypes.oneOfType([PropTypes.oneOf(['item']), PropTypes.number]),
345
350
  /**
346
351
  * The width of the chart in px. If not defined, it takes the width of the parent element.
347
352
  */
@@ -25,8 +25,7 @@ const ToolbarRoot = styled('div', {
25
25
  minHeight: 44,
26
26
  boxSizing: 'border-box',
27
27
  border: `1px solid ${(theme.vars || theme).palette.divider}`,
28
- borderRadius: 4,
29
- gridArea: 'toolbar'
28
+ borderRadius: 4
30
29
  }));
31
30
  export const Toolbar = /*#__PURE__*/React.forwardRef(function Toolbar(_ref, ref) {
32
31
  let {
@@ -1,4 +1,4 @@
1
1
  export type ChartsColorPaletteCallback = (mode: 'light' | 'dark') => string[];
2
- export type ChartsColorPalette = string[] | ChartsColorPaletteCallback;
2
+ export type ChartsColorPalette = readonly string[] | ChartsColorPaletteCallback;
3
3
  export type ChartsColorCallback = (mode: 'light' | 'dark') => string;
4
4
  export type ChartsColor = string | ChartsColorCallback;
@@ -1,14 +1,14 @@
1
1
  import type { PieChartPluginSignatures } from "../PieChart/PieChart.plugins.js";
2
- import type { BarChartPluginsSignatures } from "../BarChart/BarChart.plugins.js";
3
- import type { ScatterChartPluginsSignatures } from "../ScatterChart/ScatterChart.plugins.js";
4
- import type { LineChartPluginsSignatures } from "../LineChart/LineChart.plugins.js";
2
+ import type { BarChartPluginSignatures } from "../BarChart/BarChart.plugins.js";
3
+ import type { ScatterChartPluginSignatures } from "../ScatterChart/ScatterChart.plugins.js";
4
+ import type { LineChartPluginSignatures } from "../LineChart/LineChart.plugins.js";
5
5
  import type { AllPluginSignatures, DefaultPluginSignatures } from "../internals/plugins/allPlugins.js";
6
6
  import type { ChartAnyPluginSignature } from "../internals/plugins/models/plugin.js";
7
7
  import type { ChartPublicAPI } from "../internals/plugins/models/index.js";
8
8
  export type PluginsPerSeriesType = {
9
- line: LineChartPluginsSignatures;
10
- scatter: ScatterChartPluginsSignatures;
11
- bar: BarChartPluginsSignatures;
9
+ line: LineChartPluginSignatures;
10
+ scatter: ScatterChartPluginSignatures;
11
+ bar: BarChartPluginSignatures;
12
12
  pie: PieChartPluginSignatures;
13
13
  composition: DefaultPluginSignatures;
14
14
  };
@@ -1,4 +1,4 @@
1
- import { AxisId, ChartsRadiusAxisProps, ChartsRotationAxisProps, PolarAxisDefaultized, ScaleName } from "../models/axis.js";
1
+ import { AxisId, ChartsRadiusAxisProps, ChartsRotationAxisProps, PolarAxisDefaultized, ScaleName, type AxisScaleConfig, type ChartsXAxisProps, type ChartsYAxisProps, type ComputedAxis } from "../models/axis.js";
2
2
  /**
3
3
  * Get all the x-axes.
4
4
  *
@@ -10,7 +10,7 @@ import { AxisId, ChartsRadiusAxisProps, ChartsRotationAxisProps, PolarAxisDefaul
10
10
  * @returns `{ xAxis, xAxisIds }` - The x-axes and their IDs.
11
11
  */
12
12
  export declare function useXAxes(): {
13
- xAxis: import("../internals/index.js").ComputedAxisConfig<import("../index.js").ChartsXAxisProps>;
13
+ xAxis: import("../internals/index.js").ComputedAxisConfig<ChartsXAxisProps>;
14
14
  xAxisIds: AxisId[];
15
15
  };
16
16
  /**
@@ -24,7 +24,7 @@ export declare function useXAxes(): {
24
24
  * @returns `{ yAxis, yAxisIds }` - The y-axes and their IDs.
25
25
  */
26
26
  export declare function useYAxes(): {
27
- yAxis: import("../internals/index.js").ComputedAxisConfig<import("../index.js").ChartsYAxisProps>;
27
+ yAxis: import("../internals/index.js").ComputedAxisConfig<ChartsYAxisProps>;
28
28
  yAxisIds: AxisId[];
29
29
  };
30
30
  /**
@@ -32,13 +32,13 @@ export declare function useYAxes(): {
32
32
  * @param {AxisId | undefined} axisId - If provided returns the x axis with axisId, else returns the values for the default x axis.
33
33
  * @returns The X axis.
34
34
  */
35
- export declare function useXAxis(axisId?: AxisId): import("../internals/index.js").ComputedAxis<keyof import("../internals/index.js").AxisScaleConfig, any, import("../index.js").ChartsXAxisProps>;
35
+ export declare function useXAxis<T extends keyof AxisScaleConfig>(axisId?: AxisId): ComputedAxis<T, any, ChartsXAxisProps>;
36
36
  /**
37
37
  * Get the Y axis.
38
38
  * @param {AxisId | undefined} axisId - If provided returns the y axis with axisId, else returns the values for the default y axis.
39
39
  * @returns The Y axis.
40
40
  */
41
- export declare function useYAxis(axisId?: AxisId): import("../internals/index.js").ComputedAxis<keyof import("../internals/index.js").AxisScaleConfig, any, import("../index.js").ChartsYAxisProps>;
41
+ export declare function useYAxis<T extends keyof AxisScaleConfig>(axisId?: AxisId): ComputedAxis<T, any, ChartsYAxisProps>;
42
42
  export declare function useRotationAxes(): {
43
43
  rotationAxis: import("../internals/plugins/featurePlugins/useChartPolarAxis/computeAxisValue.js").DefaultizedAxisConfig<ChartsRotationAxisProps>;
44
44
  rotationAxisIds: string[];
@@ -1,9 +1,27 @@
1
1
  export type ChartDrawingArea = {
2
- top: number;
2
+ /**
3
+ * The gap between the left border of the SVG and the drawing area.
4
+ */
3
5
  left: number;
4
- right: number;
6
+ /**
7
+ * The gap between the top border of the SVG and the drawing area.
8
+ */
9
+ top: number;
10
+ /**
11
+ * The gap between the bottom border of the SVG and the drawing area.
12
+ */
5
13
  bottom: number;
14
+ /**
15
+ * The gap between the right border of the SVG and the drawing area.
16
+ */
17
+ right: number;
18
+ /**
19
+ * The width of the drawing area.
20
+ */
6
21
  width: number;
22
+ /**
23
+ * The height of the drawing area.
24
+ */
7
25
  height: number;
8
26
  };
9
27
  /**
@@ -0,0 +1,15 @@
1
+ import { ChartSeriesType } from "../models/seriesType/config.js";
2
+ import { SeriesId } from "../models/seriesType/common.js";
3
+ export type FocusedItemData = {
4
+ seriesType: ChartSeriesType;
5
+ seriesId: SeriesId;
6
+ dataIndex: number;
7
+ };
8
+ /**
9
+ * Get the focused item from keyboard navigation.
10
+ */
11
+ export declare function useFocusedItem(): {
12
+ seriesType: keyof import("../internals/index.js").ChartsSeriesConfig;
13
+ seriesId: SeriesId;
14
+ dataIndex: number;
15
+ } | null;
@@ -0,0 +1,20 @@
1
+ 'use client';
2
+
3
+ import * as React from 'react';
4
+ import { useStore } from "../internals/store/useStore.js";
5
+ import { useSelector } from "../internals/store/useSelector.js";
6
+ import { selectorChartsFocusedSeriesType, selectorChartsFocusedSeriesId, selectorChartsFocusedDataIndex } from "../internals/plugins/featurePlugins/useChartKeyboardNavigation/index.js";
7
+ /**
8
+ * Get the focused item from keyboard navigation.
9
+ */
10
+ export function useFocusedItem() {
11
+ const store = useStore();
12
+ const focusedSeriesType = useSelector(store, selectorChartsFocusedSeriesType);
13
+ const focusedSeriesId = useSelector(store, selectorChartsFocusedSeriesId);
14
+ const focusedDataIndex = useSelector(store, selectorChartsFocusedDataIndex);
15
+ return React.useMemo(() => focusedSeriesType === undefined || focusedSeriesId === undefined || focusedDataIndex === undefined ? null : {
16
+ seriesType: focusedSeriesType,
17
+ seriesId: focusedSeriesId,
18
+ dataIndex: focusedDataIndex
19
+ }, [focusedSeriesType, focusedSeriesId, focusedDataIndex]);
20
+ }
@@ -0,0 +1,12 @@
1
+ import { FocusedItemData } from "./useFocusedItem.js";
2
+ type UseItemFocusedParams = FocusedItemData;
3
+ /**
4
+ * A hook to check if an item has the focus.
5
+ *
6
+ * If you need to process multiple points, use the `useIsItemFocusedGetter` hook instead.
7
+ *
8
+ * @param {FocusedItemData} item is the item to check
9
+ * @returns {boolean} the focus state
10
+ */
11
+ export declare function useIsItemFocused(item: UseItemFocusedParams): boolean;
12
+ export {};
@@ -0,0 +1,15 @@
1
+ 'use client';
2
+
3
+ import { useFocusedItem } from "./useFocusedItem.js";
4
+ /**
5
+ * A hook to check if an item has the focus.
6
+ *
7
+ * If you need to process multiple points, use the `useIsItemFocusedGetter` hook instead.
8
+ *
9
+ * @param {FocusedItemData} item is the item to check
10
+ * @returns {boolean} the focus state
11
+ */
12
+ export function useIsItemFocused(item) {
13
+ const focusedItem = useFocusedItem();
14
+ return focusedItem !== null && focusedItem.seriesType === item.seriesType && focusedItem.seriesId === item.seriesId && focusedItem.dataIndex === item.dataIndex;
15
+ }
@@ -0,0 +1,8 @@
1
+ import { FocusedItemData } from "./useFocusedItem.js";
2
+ /**
3
+ * A hook to check focus state of multiple items.
4
+ * If you're interested by a single one, consider using `useIsItemFocused`.
5
+ *
6
+ * @returns {(item: FocusedItemData) => boolean} callback to get the state of the item.
7
+ */
8
+ export declare function useIsItemFocusedGetter(): (item: FocusedItemData) => boolean;
@@ -0,0 +1,14 @@
1
+ 'use client';
2
+
3
+ import { useFocusedItem } from "./useFocusedItem.js";
4
+
5
+ /**
6
+ * A hook to check focus state of multiple items.
7
+ * If you're interested by a single one, consider using `useIsItemFocused`.
8
+ *
9
+ * @returns {(item: FocusedItemData) => boolean} callback to get the state of the item.
10
+ */
11
+ export function useIsItemFocusedGetter() {
12
+ const focusedItem = useFocusedItem();
13
+ return item => focusedItem !== null && focusedItem.seriesType === item.seriesType && focusedItem.seriesId === item.seriesId && focusedItem.dataIndex === item.dataIndex;
14
+ }
@@ -13,6 +13,12 @@ export function getValueToPositionMapper(scale) {
13
13
  if (isOrdinalScale(scale)) {
14
14
  return value => (scale(value) ?? 0) + scale.bandwidth() / 2;
15
15
  }
16
+ const domain = scale.domain();
17
+
18
+ // Fixes https://github.com/mui/mui-x/issues/18999#issuecomment-3173787401
19
+ if (domain[0] === domain[1]) {
20
+ return value => value === domain[0] ? scale(value) : NaN;
21
+ }
16
22
  return value => scale(value);
17
23
  }
18
24
 
package/esm/index.d.ts CHANGED
@@ -1,6 +1,7 @@
1
1
  export * from "./constants/index.js";
2
2
  export * from "./context/index.js";
3
3
  export * from "./hooks/index.js";
4
+ export * from "./plugins/index.js";
4
5
  export * from "./colorPalettes/index.js";
5
6
  export * from "./models/index.js";
6
7
  export * from "./ChartsClipPath/index.js";
package/esm/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/x-charts v8.11.3
2
+ * @mui/x-charts v8.13.0
3
3
  *
4
4
  * @license MIT
5
5
  * This source code is licensed under the MIT license found in the
@@ -8,6 +8,7 @@
8
8
  export * from "./constants/index.js";
9
9
  export * from "./context/index.js";
10
10
  export * from "./hooks/index.js";
11
+ export * from "./plugins/index.js";
11
12
  export * from "./colorPalettes/index.js";
12
13
  export * from "./models/index.js";
13
14
  export * from "./ChartsClipPath/index.js";
@@ -1,4 +1,4 @@
1
- import { timer, now, timeout, timerFlush } from '@mui/x-charts-vendor/d3-timer';
1
+ import { timer, now, timeout } from '@mui/x-charts-vendor/d3-timer';
2
2
 
3
3
  /**
4
4
  * A resumable transition class inspired by d3-transition.
@@ -50,7 +50,6 @@ export class Transition {
50
50
  /* If we're resuming the transition, then subtract elapsed to continue the easing. */
51
51
  const time = now() - this.elapsed;
52
52
  this.timer = timer(elapsed => this.timerCallback(elapsed), 0, time);
53
- timerFlush();
54
53
  return this;
55
54
  }
56
55
 
@@ -74,7 +73,6 @@ export class Transition {
74
73
  finish() {
75
74
  this.stop();
76
75
  timeout(() => this.timerCallback(this.duration));
77
- timerFlush();
78
76
  return this;
79
77
  }
80
78
  }
@@ -25,7 +25,8 @@ export * from "./plugins/featurePlugins/useChartCartesianAxis/index.js";
25
25
  export * from "./plugins/featurePlugins/useChartPolarAxis/index.js";
26
26
  export * from "./plugins/featurePlugins/useChartInteraction/index.js";
27
27
  export * from "./plugins/featurePlugins/useChartHighlight/index.js";
28
- export * from "./plugins/featurePlugins/useChartVoronoi/index.js";
28
+ export * from "./plugins/featurePlugins/useChartKeyboardNavigation/index.js";
29
+ export * from "./plugins/featurePlugins/useChartClosestPoint/index.js";
29
30
  export * from "./plugins/utils/selectors.js";
30
31
  export { getAxisTriggerTooltip as getCartesianAxisTriggerTooltip } from "./plugins/featurePlugins/useChartCartesianAxis/getAxisTriggerTooltip.js";
31
32
  export { getAxisIndex as getCartesianAxisIndex } from "./plugins/featurePlugins/useChartCartesianAxis/getAxisValue.js";
@@ -54,7 +55,7 @@ export * from "./dateHelpers.js";
54
55
  export * from "./invertScale.js";
55
56
  export * from "./scaleGuards.js";
56
57
  export * from "./findMinMax.js";
57
- export { getAxisExtremum } from "./plugins/featurePlugins/useChartCartesianAxis/getAxisExtremum.js";
58
+ export { getAxisExtrema } from "./plugins/featurePlugins/useChartCartesianAxis/getAxisExtrema.js";
58
59
  export * from "../context/ChartProvider/index.js";
59
60
  export * from "../context/ChartsSlotsContext.js";
60
61
  export * from "../models/seriesType/config.js";
@@ -30,7 +30,8 @@ export * from "./plugins/featurePlugins/useChartCartesianAxis/index.js";
30
30
  export * from "./plugins/featurePlugins/useChartPolarAxis/index.js";
31
31
  export * from "./plugins/featurePlugins/useChartInteraction/index.js";
32
32
  export * from "./plugins/featurePlugins/useChartHighlight/index.js";
33
- export * from "./plugins/featurePlugins/useChartVoronoi/index.js";
33
+ export * from "./plugins/featurePlugins/useChartKeyboardNavigation/index.js";
34
+ export * from "./plugins/featurePlugins/useChartClosestPoint/index.js";
34
35
  export * from "./plugins/utils/selectors.js";
35
36
  export { getAxisTriggerTooltip as getCartesianAxisTriggerTooltip } from "./plugins/featurePlugins/useChartCartesianAxis/getAxisTriggerTooltip.js";
36
37
  export { getAxisIndex as getCartesianAxisIndex } from "./plugins/featurePlugins/useChartCartesianAxis/getAxisValue.js";
@@ -66,7 +67,7 @@ export * from "./scaleGuards.js";
66
67
  export * from "./findMinMax.js";
67
68
 
68
69
  // contexts
69
- export { getAxisExtremum } from "./plugins/featurePlugins/useChartCartesianAxis/getAxisExtremum.js";
70
+ export { getAxisExtrema } from "./plugins/featurePlugins/useChartCartesianAxis/getAxisExtrema.js";
70
71
  export * from "../context/ChartProvider/index.js";
71
72
  export * from "../context/ChartsSlotsContext.js";
72
73
 
@@ -2,9 +2,10 @@ import { ChartSeriesType } from "../../models/seriesType/config.js";
2
2
  import { UseChartCartesianAxisSignature } from "./featurePlugins/useChartCartesianAxis/index.js";
3
3
  import { UseChartHighlightSignature } from "./featurePlugins/useChartHighlight/index.js";
4
4
  import { UseChartInteractionSignature } from "./featurePlugins/useChartInteraction/index.js";
5
+ import { UseChartKeyboardNavigationSignature } from "./featurePlugins/useChartKeyboardNavigation/index.js";
5
6
  import { UseChartPolarAxisSignature } from "./featurePlugins/useChartPolarAxis/index.js";
6
- import { UseChartVoronoiSignature } from "./featurePlugins/useChartVoronoi/index.js";
7
+ import { UseChartClosestPointSignature } from "./featurePlugins/useChartClosestPoint/index.js";
7
8
  import { UseChartZAxisSignature } from "./featurePlugins/useChartZAxis/index.js";
8
- export type AllPluginSignatures<TSeries extends ChartSeriesType = ChartSeriesType> = [UseChartZAxisSignature, UseChartCartesianAxisSignature<TSeries>, UseChartPolarAxisSignature, UseChartInteractionSignature, UseChartHighlightSignature, UseChartVoronoiSignature];
9
- export type DefaultPluginSignatures<TSeries extends ChartSeriesType = ChartSeriesType> = [UseChartZAxisSignature, UseChartCartesianAxisSignature<TSeries>, UseChartInteractionSignature, UseChartHighlightSignature, UseChartVoronoiSignature];
10
- export declare const DEFAULT_PLUGINS: readonly [import("./models/index.js").ChartPlugin<UseChartZAxisSignature>, import("./models/index.js").ChartPlugin<UseChartCartesianAxisSignature<any>>, import("./models/index.js").ChartPlugin<UseChartInteractionSignature>, import("./models/index.js").ChartPlugin<UseChartHighlightSignature>, import("./models/index.js").ChartPlugin<UseChartVoronoiSignature>];
9
+ export type AllPluginSignatures<TSeries extends ChartSeriesType = ChartSeriesType> = [UseChartZAxisSignature, UseChartCartesianAxisSignature<TSeries>, UseChartPolarAxisSignature, UseChartInteractionSignature, UseChartHighlightSignature, UseChartClosestPointSignature, UseChartKeyboardNavigationSignature];
10
+ export type DefaultPluginSignatures<TSeries extends ChartSeriesType = ChartSeriesType> = [UseChartZAxisSignature, UseChartCartesianAxisSignature<TSeries>, UseChartInteractionSignature, UseChartHighlightSignature, UseChartClosestPointSignature, UseChartKeyboardNavigationSignature];
11
+ export declare const DEFAULT_PLUGINS: readonly [import("./models/index.js").ChartPlugin<UseChartZAxisSignature>, import("./models/index.js").ChartPlugin<UseChartCartesianAxisSignature<any>>, import("./models/index.js").ChartPlugin<UseChartInteractionSignature>, import("./models/index.js").ChartPlugin<UseChartHighlightSignature>, import("./models/index.js").ChartPlugin<UseChartClosestPointSignature>, import("./models/index.js").ChartPlugin<UseChartKeyboardNavigationSignature>];
@@ -3,6 +3,7 @@
3
3
  import { useChartCartesianAxis } from "./featurePlugins/useChartCartesianAxis/index.js";
4
4
  import { useChartHighlight } from "./featurePlugins/useChartHighlight/index.js";
5
5
  import { useChartInteraction } from "./featurePlugins/useChartInteraction/index.js";
6
- import { useChartVoronoi } from "./featurePlugins/useChartVoronoi/index.js";
6
+ import { useChartKeyboardNavigation } from "./featurePlugins/useChartKeyboardNavigation/index.js";
7
+ import { useChartClosestPoint } from "./featurePlugins/useChartClosestPoint/index.js";
7
8
  import { useChartZAxis } from "./featurePlugins/useChartZAxis/index.js";
8
- export const DEFAULT_PLUGINS = [useChartZAxis, useChartCartesianAxis, useChartInteraction, useChartHighlight, useChartVoronoi];
9
+ export const DEFAULT_PLUGINS = [useChartZAxis, useChartCartesianAxis, useChartInteraction, useChartHighlight, useChartClosestPoint, useChartKeyboardNavigation];