Skip to content

Commit b719494

Browse files
committed
heatmap y-axis ticks fix
1 parent 8630ede commit b719494

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/graphs/HeatMap.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ const HeatMapChart = ({
170170

171171
const axisLabel = d3
172172
.axisRight(yScale)
173-
.tickValues([...domain, (domain[1] + domain[0]) / 2])
173+
.tickValues([...domain])
174174
.tickSizeOuter(0);
175175

176176
const legendBar = svg.append('g').datum(expandedDomain).call(svgBar);

0 commit comments

Comments
 (0)