Skip to content

Commit d28b09e

Browse files
committed
text labels
1 parent 954f65b commit d28b09e

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

src/components/DistributionReport.tsx

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,9 @@ export const DistributionReport = (
208208
return (
209209
<div key={column + column2}>
210210
<GroupBarChart
211-
yAxisLabel={column}
211+
yAxisLabel={t(
212+
'distribution.frequency'
213+
)}
212214
data={histogramData}
213215
title={`${column} vs ${column2}`}
214216
/>
@@ -325,9 +327,9 @@ export const DistributionReport = (
325327
className="flex flex-col"
326328
>
327329
<GroupBarChart
328-
yAxisLabel={
329-
'count'
330-
}
330+
yAxisLabel={t(
331+
'distribution.frequency'
332+
)}
331333
title={`${column} = ${item}`}
332334
data={categories2.map(
333335
item2 => ({

0 commit comments

Comments
 (0)