diff --git a/src/components/reports/backlog-report.tsx b/src/components/reports/backlog-report.tsx
index 307bdbc..6412ef2 100644
--- a/src/components/reports/backlog-report.tsx
+++ b/src/components/reports/backlog-report.tsx
@@ -31,6 +31,12 @@ const STATUS_LABELS: Record = {
RESOLVED: "Resolvidos",
}
+const queueBacklogChartConfig = {
+ total: {
+ label: "Chamados totais",
+ },
+}
+
export function BacklogReport() {
const [timeRange, setTimeRange] = useState("90d")
const [companyId, setCompanyId] = usePersistentCompanyFilter("all")
@@ -205,10 +211,10 @@ export function BacklogReport() {
Nenhuma fila com tickets abertos no momento.
) : (
-
+
({ name: q.name, total: q.total }))}
- margin={{ left: 12, right: 12, bottom: 28 }}
+ margin={{ top: 8, left: 20, right: 20, bottom: 56 }}
barCategoryGap={16}
>
@@ -216,13 +222,13 @@ export function BacklogReport() {
dataKey="name"
tickLine={false}
axisLine={false}
- tickMargin={14}
+ tickMargin={24}
interval={0}
angle={-30}
- height={68}
+ height={80}
/>
- } />
+ } />
)}