Home / Function/ ChartTooltipLabelCustom() — ui Function Reference

ChartTooltipLabelCustom() — ui Function Reference

Architecture documentation for the ChartTooltipLabelCustom() function in chart-tooltip-label-custom.tsx from the ui codebase.

Entity Profile

Dependency Diagram

graph TD
  cc3b13c7_15b5_ffb5_d324_27f447aec49c["ChartTooltipLabelCustom()"]
  13c2e1ea_91e1_5686_507c_e4b41fb81d7c["chart-tooltip-label-custom.tsx"]
  cc3b13c7_15b5_ffb5_d324_27f447aec49c -->|defined in| 13c2e1ea_91e1_5686_507c_e4b41fb81d7c
  style cc3b13c7_15b5_ffb5_d324_27f447aec49c fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

apps/v4/registry/new-york-v4/charts/chart-tooltip-label-custom.tsx lines 44–91

export function ChartTooltipLabelCustom() {
  return (
    <Card>
      <CardHeader>
        <CardTitle>Tooltip - Custom label</CardTitle>
        <CardDescription>
          Tooltip with custom label from chartConfig.
        </CardDescription>
      </CardHeader>
      <CardContent>
        <ChartContainer config={chartConfig}>
          <BarChart accessibilityLayer data={chartData}>
            <XAxis
              dataKey="date"
              tickLine={false}
              tickMargin={10}
              axisLine={false}
              tickFormatter={(value) => {
                return new Date(value).toLocaleDateString("en-US", {
                  weekday: "short",
                })
              }}
            />
            <Bar
              dataKey="running"
              stackId="a"
              fill="var(--color-running)"
              radius={[0, 0, 4, 4]}
            />
            <Bar
              dataKey="swimming"
              stackId="a"
              fill="var(--color-swimming)"
              radius={[4, 4, 0, 0]}
            />
            <ChartTooltip
              content={
                <ChartTooltipContent labelKey="activities" indicator="line" />
              }
              cursor={false}
              defaultIndex={1}
            />
          </BarChart>
        </ChartContainer>
      </CardContent>
    </Card>
  )
}

Subdomains

Frequently Asked Questions

What does ChartTooltipLabelCustom() do?
ChartTooltipLabelCustom() is a function in the ui codebase, defined in apps/v4/registry/new-york-v4/charts/chart-tooltip-label-custom.tsx.
Where is ChartTooltipLabelCustom() defined?
ChartTooltipLabelCustom() is defined in apps/v4/registry/new-york-v4/charts/chart-tooltip-label-custom.tsx at line 44.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free