From b17a5ecac6ebb60ab595056e51e4a5090bffd8ce Mon Sep 17 00:00:00 2001 From: Liam Date: Thu, 26 Oct 2023 18:02:12 +0100 Subject: [PATCH] more ticks (whatever they are) --- src/components/player/PlayerChart.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/player/PlayerChart.tsx b/src/components/player/PlayerChart.tsx index b7e97fb..d7206e0 100644 --- a/src/components/player/PlayerChart.tsx +++ b/src/components/player/PlayerChart.tsx @@ -38,7 +38,7 @@ export const options: any = { y: { ticks: { autoSkip: true, - maxTicksLimit: 4, + maxTicksLimit: 8, }, reverse: true, }, @@ -103,7 +103,7 @@ export default function PlayerChart({ labels, datasets: [ { - lineTension: 0.4, + lineTension: 0.5, data: history, label: "Rank", borderColor: "#3e95cd", @@ -114,7 +114,7 @@ export default function PlayerChart({ }; return ( -
+
);