From 0c9e7ed1833ca79a020a480b395ed20af85838a0 Mon Sep 17 00:00:00 2001 From: Emily Doherty Date: Fri, 12 Apr 2024 05:27:41 -0700 Subject: [PATCH] Change the timescale legend to be more readable instead of dense --- src/index.js | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/src/index.js b/src/index.js index ff49cbd..efd4cd9 100644 --- a/src/index.js +++ b/src/index.js @@ -86,6 +86,9 @@ function populateChart() { size: 18, } }, + time: { + unit: lookupTimeUnit(currentTimeSelection) + } }, y: { ticks: { @@ -100,6 +103,17 @@ function populateChart() { }); } +function lookupTimeUnit(query){ + const lookup = { + 'h': 'day', + 'd': 'week', + 'm': 'month', + 'y': 'month', + 'l': 'year' + } + return lookup[query.charAt(query.length - 1)] +} + async function callUpdateURL() { let resp = await fetch("https://data.wowtoken.app/token/current.json");