Skip to content

Commit

Permalink
Reduce precision on votes-by-week graph
Browse files Browse the repository at this point in the history
  • Loading branch information
GreenAsJade committed Nov 27, 2024
1 parent 08c5578 commit 9f80bb6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/views/User/VoteActivityGraph.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -111,8 +111,8 @@ const VoteActivityGraph = ({ vote_data }: VoteActivityGraphProps) => {
colors={({ id }) => line_colors[id as keyof typeof line_colors]}
enableSlices="x"
axisBottom={{
format: "%d %b %g",
tickValues: "every 2 weeks",
format: "%b",
tickValues: "every month",
}}
xFormat="time:%Y-%m-%d"
xScale={{
Expand Down

0 comments on commit 9f80bb6

Please sign in to comment.