ChartRadarDots() — ui Function Reference
Architecture documentation for the ChartRadarDots() function in chart-radar-dots.tsx from the ui codebase.
Entity Profile
Dependency Diagram
graph TD dc4cf750_97ab_28b3_4e41_24438629415f["ChartRadarDots()"] ea3ba886_b2ef_5fb8_1d2a_902e6d5fa1c0["chart-radar-dots.tsx"] dc4cf750_97ab_28b3_4e41_24438629415f -->|defined in| ea3ba886_b2ef_5fb8_1d2a_902e6d5fa1c0 style dc4cf750_97ab_28b3_4e41_24438629415f fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
apps/v4/registry/new-york-v4/charts/chart-radar-dots.tsx lines 39–79
export function ChartRadarDots() {
return (
<Card>
<CardHeader className="items-center">
<CardTitle>Radar Chart - Dots</CardTitle>
<CardDescription>
Showing total visitors for the last 6 months
</CardDescription>
</CardHeader>
<CardContent className="pb-0">
<ChartContainer
config={chartConfig}
className="mx-auto aspect-square max-h-[250px]"
>
<RadarChart data={chartData}>
<ChartTooltip cursor={false} content={<ChartTooltipContent />} />
<PolarAngleAxis dataKey="month" />
<PolarGrid />
<Radar
dataKey="desktop"
fill="var(--color-desktop)"
fillOpacity={0.6}
dot={{
r: 4,
fillOpacity: 1,
}}
/>
</RadarChart>
</ChartContainer>
</CardContent>
<CardFooter className="flex-col gap-2 text-sm">
<div className="flex items-center gap-2 leading-none font-medium">
Trending up by 5.2% this month <TrendingUp className="h-4 w-4" />
</div>
<div className="text-muted-foreground flex items-center gap-2 leading-none">
January - June 2024
</div>
</CardFooter>
</Card>
)
}
Domain
Subdomains
Source
Frequently Asked Questions
What does ChartRadarDots() do?
ChartRadarDots() is a function in the ui codebase, defined in apps/v4/registry/new-york-v4/charts/chart-radar-dots.tsx.
Where is ChartRadarDots() defined?
ChartRadarDots() is defined in apps/v4/registry/new-york-v4/charts/chart-radar-dots.tsx at line 39.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free