Skip to content

Commit

Permalink
Add shapeRendering prop to Axis (#1739)
Browse files Browse the repository at this point in the history
  • Loading branch information
Lonami authored Mar 4, 2024
1 parent 6edbde4 commit 3e1a3ef
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/visx-axis/src/axis/AxisRenderer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ export default function AxisRenderer<Scale extends AxisScale>({
labelProps,
orientation = Orientation.bottom,
scale,
shapeRendering,
stroke = '#222',
strokeDasharray,
strokeWidth = 1,
Expand Down Expand Up @@ -82,6 +83,7 @@ export default function AxisRenderer<Scale extends AxisScale>({
className={cx('visx-axis-line', axisLineClassName)}
from={axisFromPoint}
to={axisToPoint}
shapeRendering={shapeRendering}
stroke={stroke}
strokeWidth={strokeWidth}
strokeDasharray={strokeDasharray}
Expand Down
2 changes: 2 additions & 0 deletions packages/visx-axis/src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,8 @@ export type CommonProps<Scale extends AxisScale> = {
orientation?: ValueOf<typeof Orientation>;
/** Pixel padding to apply to axis sides. */
rangePadding?: number | { start?: number; end?: number };
/** Shape rendering for the lines. */
shapeRendering?: SVGProps<SVGLineElement>['shapeRendering'];
/** The color for the stroke of the lines. */
stroke?: string;
/** The pixel value for the width of the lines. */
Expand Down

0 comments on commit 3e1a3ef

Please sign in to comment.