1
0
mirror of https://github.com/toast-ts/Daggerbot-TS.git synced 2024-09-29 12:30:58 -04:00

Fix improper graph label

This commit is contained in:
toast-ts 2023-01-22 10:14:38 -08:00 committed by GitHub
parent 226171f914
commit 44b36dd7b4

View File

@ -118,7 +118,7 @@ export default {
// 30m mark // 30m mark
ctx.setLineDash([8, 16]); ctx.setLineDash([8, 16]);
ctx.beginPath(); ctx.beginPath();
const lastMonthStart = graphOrigin[0] + (nodeWidth * (data.length - 60)); const lastMonthStart = graphOrigin[0] + (nodeWidth * (data.length - 30));
ctx.lineTo(lastMonthStart, graphOrigin[1]); ctx.lineTo(lastMonthStart, graphOrigin[1]);
ctx.lineTo(lastMonthStart, graphOrigin[1] + graphSize[1]); ctx.lineTo(lastMonthStart, graphOrigin[1] + graphSize[1]);
ctx.stroke(); ctx.stroke();