Skip to content

Commit

Permalink
feat(radar): fix radar radial grid lines style theme property (#1754)
Browse files Browse the repository at this point in the history
* Modifying Radar's Axis to be drawn by Axis.domain.line of the Theme

* Modify to use grid.line instead of axis.domain.line to draw axis of radar
  • Loading branch information
GoodGoodJM authored Sep 1, 2021
1 parent 6fdd483 commit d9213a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/radar/src/RadarGrid.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ const RadarGrid = memo(({ indices, levels, shape, radius, angleStep, label, labe
y1={0}
x2={position.x}
y2={position.y}
{...theme.grid}
{...theme.grid.line}
/>
)
})}
Expand Down

0 comments on commit d9213a7

Please sign in to comment.