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 - } + */} ); };