removed axis line from chart

This commit is contained in:
CyferShepard
2025-03-30 17:51:58 +02:00
parent a8e4c9f00b
commit 25b8627088

View File

@@ -70,7 +70,7 @@ function GenreStatCard(props) {
<RadarChart cx="50%" cy="50%" outerRadius="80%" data={props.data}>
<PolarGrid gridType="circle" />
<PolarAngleAxis dataKey="genre" />
<PolarRadiusAxis domain={[0, maxRange]} tick={false} />
<PolarRadiusAxis domain={[0, maxRange]} tick={false} axisLine={false} />
<Radar
name="Duration"
dataKey={props.dataKey}