Skip to content

Commit d9213a7

Browse files
authoredSep 1, 2021
feat(radar): fix radar radial grid lines style theme property (#1754)
* 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
1 parent 6fdd483 commit d9213a7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎packages/radar/src/RadarGrid.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ const RadarGrid = memo(({ indices, levels, shape, radius, angleStep, label, labe
3434
y1={0}
3535
x2={position.x}
3636
y2={position.y}
37-
{...theme.grid}
37+
{...theme.grid.line}
3838
/>
3939
)
4040
})}

0 commit comments

Comments
 (0)
Please sign in to comment.