Skip to content

Commit

Permalink
Revert "Add shapeRendering prop to Axis (#1739)" (#1808)
Browse files Browse the repository at this point in the history
This reverts commit 3e1a3ef.
  • Loading branch information
williaster authored Mar 8, 2024
1 parent 0cf5118 commit a82acb1
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
2 changes: 0 additions & 2 deletions packages/visx-axis/src/axis/AxisRenderer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ export default function AxisRenderer<Scale extends AxisScale>({
labelProps,
orientation = Orientation.bottom,
scale,
shapeRendering,
stroke = '#222',
strokeDasharray,
strokeWidth = 1,
Expand Down Expand Up @@ -83,7 +82,6 @@ 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: 0 additions & 2 deletions packages/visx-axis/src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,6 @@ 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 a82acb1

Please sign in to comment.