Skip to content

Commit

Permalink
πŸ”§ fix: 마우슀 μœ„μΉ˜μ— λ”°λ₯Έ 점선 μœ„μΉ˜ μˆ˜μ • #123
Browse files Browse the repository at this point in the history
  • Loading branch information
dannysir committed Nov 21, 2024
1 parent b651564 commit ac2c1a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion FE/src/utils/chart/drawMouseGrid.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export const drawMouseGrid = (
lowerChartCtx.beginPath();
lowerChartCtx.setLineDash([10, 10]);
lowerChartCtx.moveTo(mousePosition.x, 0);
lowerChartCtx.lineTo(mousePosition.x, lowerChartHeight + padding.bottom);
lowerChartCtx.lineTo(mousePosition.x, lowerChartHeight + padding.top);

lowerChartCtx.strokeStyle = '#6E8091';
lowerChartCtx.lineWidth = 1;
Expand Down

0 comments on commit ac2c1a4

Please sign in to comment.