usePlotArea
Plot area is the area where the actual chart data is rendered. This means: bars, lines, scatter points, etc. The plot area is calculated based on the chart dimensions and the offset. Plot area They are also independent of the scale and zoom, meaning that as the user zooms in and out, the plot area dimensions will not change as the chart gets visually larger or smaller. This hook must be used within a chart context (inside a Available since Recharts 3.1width and height are the dimensions in pixels;x and y are the coordinates of the top-left corner of the plot area relative to the chart container.<LineChart>, <BarChart>, etc.). This hook returns undefined if used outside a chart context.
Related Links
Return value
PlotArea | undefined
Plot area of the chart in pixels, or undefined if used outside a chart context.