From 8291706f9c1e69652bc73274b6212d03e05c06d1 Mon Sep 17 00:00:00 2001 From: NunoSempere Date: Wed, 20 Apr 2022 00:31:44 -0400 Subject: [PATCH] fix: chart bug --- src/pages/charts/view/[id].tsx | 4 ++-- src/web/display/HistoryChart.tsx | 14 +++++++------- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/src/pages/charts/view/[id].tsx b/src/pages/charts/view/[id].tsx index c108f72..18fe3b5 100644 --- a/src/pages/charts/view/[id].tsx +++ b/src/pages/charts/view/[id].tsx @@ -56,12 +56,12 @@ async function fakeGetHistoryQuestionById(id) { timestamp: `2022-04-${`0${x + 1}`.slice(-2)}T13:09:13.000Z`, options: [ { - name: "X", + name: "Yes", type: "PROBABILITY", probability: 0.0351 + Math.abs(Math.sin(3 * x)) / 2, }, { - name: "Y", + name: "No", type: "PROBABILITY", probability: 0.9649 - Math.abs(Math.sin(3 * x)) / 2, }, diff --git a/src/web/display/HistoryChart.tsx b/src/web/display/HistoryChart.tsx index 0f2a6a9..a160607 100644 --- a/src/web/display/HistoryChart.tsx +++ b/src/web/display/HistoryChart.tsx @@ -62,21 +62,21 @@ const colors = ["dodgerblue", "crimson", "seagreen", "darkviolet", "turquoise"]; const getVictoryGroup = (data, i) => { return ( - (active ? 3.75 : 3)} //labels={() => null} //labelComponent={} /> - { - (active ? 3.75 : 3)} //labels={() => null} //labelComponent={} /> - // No idea how to disable labels - } + */} ); };