react-code-dataset
/
chakra-ui
/apps
/compositions
/src
/examples
/charts
/bar-chart-legend-position.tsx
"use client" | |
import { Chart, useChart } from "@chakra-ui/charts" | |
import { | |
Bar, | |
BarChart, | |
CartesianGrid, | |
Legend, | |
Tooltip, | |
XAxis, | |
YAxis, | |
} from "recharts" | |
export const BarChartLegendPosition = () => { | |
const chart = useChart({ | |
data: [ | |
{ category: "Web Server", value: 200, maxValue: 450 }, | |
{ category: "Credit Card", value: 700, maxValue: 900 }, | |
{ category: "Payment", value: 439, maxValue: 500 }, | |
{ category: "API", value: 147, maxValue: 200 }, | |
{ category: "AddToCart", value: 84, maxValue: 100 }, | |
], | |
series: [ | |
{ name: "value", color: "blue.solid" }, | |
{ name: "maxValue", color: "green.solid" }, | |
], | |
}) | |
return ( | |
<Chart.Root chart={chart} maxH="sm"> | |
<BarChart data={chart.data}> | |
<CartesianGrid stroke={chart.color("border.muted")} vertical={false} /> | |
<XAxis | |
tickLine={false} | |
dataKey={chart.key("category")} | |
stroke={chart.color("border")} | |
/> | |
<YAxis tickLine={false} stroke={chart.color("border")} /> | |
<Tooltip | |
cursor={{ fill: chart.color("bg.muted") }} | |
animationDuration={100} | |
content={<Chart.Tooltip />} | |
/> | |
<Legend | |
layout="vertical" | |
align="right" | |
verticalAlign="top" | |
wrapperStyle={{ paddingLeft: 30 }} | |
content={<Chart.Legend orientation="vertical" />} | |
/> | |
{chart.series.map((item) => ( | |
<Bar | |
isAnimationActive={false} | |
key={item.name} | |
dataKey={chart.key(item.name)} | |
fill={chart.color(item.color)} | |
/> | |
))} | |
</BarChart> | |
</Chart.Root> | |
) | |
} | |