Skip to content

Commit

Permalink
fix(types): Missing tick.text.inner type added for xAxis
Browse files Browse the repository at this point in the history
Add missing type definition

Close #3802
  • Loading branch information
sergiu-statache authored and netil committed Jun 11, 2024
1 parent 7437bdc commit 5c1a6a4
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions AUTHORS.txt
Original file line number Diff line number Diff line change
Expand Up @@ -66,3 +66,4 @@ RobinDeeCee <robindecock@gmail.com>
nekoya <ryo.studiom@gmail.com>
Ubin Park <https://github.com/Ubinquitous>
William Nolden <william.nolden@able-group.de>
Sergiu Statache <sergiu.statache@trisoft.ro>
8 changes: 8 additions & 0 deletions types/axis.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
};
};

/**
Expand Down

0 comments on commit 5c1a6a4

Please sign in to comment.