From 29ed1be834d48827dc4276e08af7dd8cccc55d2e Mon Sep 17 00:00:00 2001 From: "Remo H. Jansen" Date: Tue, 1 Aug 2017 20:34:00 +0100 Subject: [PATCH] Added missing option tickCount (#18535) As you can see the tickCount property is available in JS https://github.com/recharts/recharts/blob/709b1da5d870de1dc52f6225acf5f6a207593be1/src/cartesian/YAxis.js#L33 --- types/recharts/index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/types/recharts/index.d.ts b/types/recharts/index.d.ts index 8f0e772cd8..a98708952a 100644 --- a/types/recharts/index.d.ts +++ b/types/recharts/index.d.ts @@ -733,6 +733,7 @@ export interface YAxisProps { allowDecimals?: boolean; allowDataOverflow?: boolean; axisLine?: boolean | any; + tickCount?: number; tickLine?: boolean | any; tickSize?: number; tickFormatter?: RechartsFunction;