We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f3b5092 commit 965fd17Copy full SHA for 965fd17
packages/x-charts-pro/src/internals/plugins/useChartProZoom/useChartProZoom.types.ts
@@ -53,6 +53,9 @@ export interface UseChartProZoomPublicApi {
53
* @returns {void}
54
*/
55
setZoomData: (value: ZoomData[] | ((prev: ZoomData[]) => ZoomData[])) => void;
56
+}
57
+
58
+export interface UseChartProZoomInstance extends UseChartProZoomPublicApi {
59
/**
60
* Zoom in the chart.
61
@@ -61,9 +64,6 @@ export interface UseChartProZoomPublicApi {
64
* Zoom out the chart.
62
65
63
66
zoomOut: () => void;
-}
-
-export interface UseChartProZoomInstance extends UseChartProZoomPublicApi {
67
68
* Translate the zoom range (i.e., both start and end) for a specific axis.
69
* @param {AxisId} axisId The id of the axis to move the zoom range for.
0 commit comments