ChartRevenue() — ui Function Reference
Architecture documentation for the ChartRevenue() function in chart-revenue.tsx from the ui codebase.
Entity Profile
Dependency Diagram
graph TD ffa4ab7a_fb9d_a5d6_0bec_179a05a5cad6["ChartRevenue()"] 223c24e3_0c66_3ed2_faf1_0c8a4cfdaa86["chart-revenue.tsx"] ffa4ab7a_fb9d_a5d6_0bec_179a05a5cad6 -->|defined in| 223c24e3_0c66_3ed2_faf1_0c8a4cfdaa86 style ffa4ab7a_fb9d_a5d6_0bec_179a05a5cad6 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
apps/v4/app/(examples)/dashboard-03/components/chart-revenue.tsx lines 47–110
export function ChartRevenue() {
return (
<Card>
<CardHeader>
<CardDescription>January - June 2024</CardDescription>
<CardTitle className="text-3xl font-bold tracking-tight">
$45,231.89
</CardTitle>
</CardHeader>
<CardContent>
<ChartContainer config={chartConfig} className="aspect-[3/1]">
<BarChart
accessibilityLayer
data={chartData}
margin={{
left: -16,
right: 0,
}}
>
<CartesianGrid vertical={false} />
<XAxis
dataKey="month"
tickLine={false}
tickMargin={10}
axisLine={false}
tickFormatter={(value) => value.slice(0, 3)}
/>
<YAxis
tickLine={false}
tickMargin={10}
axisLine={false}
tickFormatter={(value) => value.toLocaleString()}
domain={[0, "dataMax"]}
/>
<ChartTooltip
cursor={false}
content={<ChartTooltipContent hideIndicator />}
/>
<Bar
dataKey="desktop"
fill="var(--color-desktop)"
radius={[0, 0, 4, 4]}
stackId={1}
/>
<Bar
dataKey="mobile"
fill="var(--color-mobile)"
radius={[4, 4, 0, 0]}
stackId={1}
/>
</BarChart>
</ChartContainer>
</CardContent>
<CardFooter className="flex-col items-start gap-2 text-sm">
<div className="flex 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 leading-none">
Showing total visitors for the last 6 months
</div>
</CardFooter>
</Card>
)
}
Domain
Subdomains
Source
Frequently Asked Questions
What does ChartRevenue() do?
ChartRevenue() is a function in the ui codebase, defined in apps/v4/app/(examples)/dashboard-03/components/chart-revenue.tsx.
Where is ChartRevenue() defined?
ChartRevenue() is defined in apps/v4/app/(examples)/dashboard-03/components/chart-revenue.tsx at line 47.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free