Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/cartesian/CartesianAxis.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export interface CartesianAxisProps {
viewBox?: CartesianViewBox;
tick?: SVGProps<SVGTextElement> | ReactElement<SVGElement> | ((props: any) => ReactElement<SVGElement>) | boolean;
axisLine?: boolean | SVGProps<SVGLineElement>;
tickLine?: boolean | SVGProps<SVGElement>;
tickLine?: boolean | SVGProps<SVGLineElement>;
mirror?: boolean;
tickMargin?: number;
hide?: boolean;
Expand Down
2 changes: 1 addition & 1 deletion src/util/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1129,7 +1129,7 @@ export interface BaseAxisProps {
/** The option for axisLine */
axisLine?: boolean | SVGProps<SVGLineElement>;
/** The option for tickLine */
tickLine?: boolean | SVGProps<SVGElement>;
tickLine?: boolean | SVGProps<SVGLineElement>;
/** The size of tick line */
tickSize?: number;
/** The formatter function of tick */
Expand Down