diff --git a/src/web/display/HistoryChart.tsx b/src/web/display/HistoryChart.tsx index 549cbd1..b81184e 100644 --- a/src/web/display/HistoryChart.tsx +++ b/src/web/display/HistoryChart.tsx @@ -2,6 +2,7 @@ import React from "react"; import { FrontendForecast } from "../platforms"; import * as V from "victory"; +import { HistoryChartFlyout } from "./HistoryChartFlyout"; import { VictoryBar, VictoryLabel, @@ -20,7 +21,7 @@ interface Props { history: number[]; } -const data = [ +const data0 = [ { date: 1, probability: 0.1 }, { date: 2, probability: 0.2 }, { date: 3, probability: 0.4 }, @@ -32,6 +33,12 @@ const data = [ { date: 9, probability: 0.7 }, ]; +let l = 5; +const data = Array.from(Array(l).keys()).map((x) => ({ + date: x, + probability: x / l, +})); + let getDate = (x) => { let date = new Date(x); return date.toISOString().slice(5, 10).replaceAll("-", "/"); @@ -54,20 +61,36 @@ export const HistoryChart: React.FC = ({ question, history }) => { }} > `${datum.y * 100}%`} + labels={({ datum }) => `${datum.x}: ${Math.round(datum.y * 100)}%`} labelComponent={ - + } > - (active ? 8 : 3)} /> + (active ? 3.75 : 3)} /> datum.date)} + tickCount={10} tickFormat={dataAsXy.map((datum) => datum.x)} style={{ grid: { stroke: null, strokeWidth: 0.5 }, diff --git a/src/web/display/HistoryChartFlyout.tsx b/src/web/display/HistoryChartFlyout.tsx new file mode 100644 index 0000000..0686f40 --- /dev/null +++ b/src/web/display/HistoryChartFlyout.tsx @@ -0,0 +1,5 @@ +import React from "react"; + +export const HistoryChartFlyout = ({ x, y, datum, dx, dy }) => { + return
{x}
; +};