From 5c1a6a43d2f281528f5d2c43d33d6bcae38f0e6d Mon Sep 17 00:00:00 2001 From: Sergiu Statache Date: Mon, 10 Jun 2024 13:41:37 +0300 Subject: [PATCH] fix(types): Missing tick.text.inner type added for xAxis Add missing type definition Close #3802 --- AUTHORS.txt | 1 + types/axis.d.ts | 8 ++++++++ 2 files changed, 9 insertions(+) diff --git a/AUTHORS.txt b/AUTHORS.txt index 9aa9e2d0b..41eb5d99f 100644 --- a/AUTHORS.txt +++ b/AUTHORS.txt @@ -66,3 +66,4 @@ RobinDeeCee nekoya Ubin Park William Nolden +Sergiu Statache diff --git a/types/axis.d.ts b/types/axis.d.ts index ee8c7e838..db5e55d8f 100644 --- a/types/axis.d.ts +++ b/types/axis.d.ts @@ -326,6 +326,14 @@ export interface XTickConfiguration { * Show or hide tick text */ show?: boolean; + + /** + * Set the first/last axis tick text to be positioned inside the chart on non-rotated axis. + */ + inner?: boolean | { + first? : boolean; + last?: boolean; + }; }; /**