diff --git a/src/web/display/HistoryChart.tsx b/src/web/display/HistoryChart.tsx index ab9943f..f0b3f9f 100644 --- a/src/web/display/HistoryChart.tsx +++ b/src/web/display/HistoryChart.tsx @@ -6,6 +6,7 @@ import { VictoryBar, VictoryLabel, VictoryTooltip, + VictoryLegend, VictoryLine, VictoryScatter, VictoryChart, @@ -34,6 +35,18 @@ const data2 = Array.from(Array(l).keys()).map((x) => ({ probability: 1 - Math.abs(Math.sin((5 * x) / l)), })); +const data3 = Array.from(Array(l).keys()).map((x) => ({ + date: x, + probability: 1 - Math.abs(Math.sin((5 * x + 20) / l)), +})); + +const buildDataset = (n, fn) => { + return Array.from(Array(n).keys()).map((x) => ({ + date: x, + probability: fn(x), + })); +}; + let getDate = (x) => { let date = new Date(x); return date.toISOString().slice(5, 10).replaceAll("-", "/"); @@ -45,14 +58,7 @@ let dataAsXy = (data) => y: datum.probability, })); -let colors = [ - "royalblue", - "crimson", - "darkgreen", - "dodgerblue", - "darkviolet", - "limegreen", -]; +let colors = ["dodgerblue", "crimson", "seagreen", "darkviolet", "turquoise"]; const getVictoryGroup = (data, i) => { return ( @@ -76,6 +82,18 @@ const getVictoryGroup = (data, i) => { }; export const HistoryChart: React.FC = ({ question, history }) => { + let height = 400; + let width = 500; + let dataSetsNames = ["Yes", "No", "Maybe", "Perhaps", "Possibly"]; + let dataSets = [ + buildDataset(50, (x) => 0.5), + buildDataset(50, (x) => Math.abs(Math.sin((5 * x) / 50) / 2)), + buildDataset(50, (x) => 1 - Math.abs(Math.sin((5 * x) / 50) / 2)), + buildDataset(50, (x) => Math.abs(Math.sin((3 * x + 25) / 50))), + buildDataset(50, (x) => 1 - Math.abs(Math.sin((3 * x + 25) / 50))), + ]; + let dataSetsLength = dataSets.length; + return (
= ({ question, history }) => { `${datum.x}: ${Math.round(datum.y * 100)}%`} @@ -124,9 +142,26 @@ export const HistoryChart: React.FC = ({ question, history }) => { y: [0, 1], }} > - {[data, data2] - .slice(0, 5) - .map((dataset, i) => getVictoryGroup(dataset, i))} + ({ + name: dataSetsNames[i], + symbol: { fill: colors[i] }, + })) + /*[ + { name: "One", symbol: { fill: "tomato", type: "star" } }, + { name: "Two", symbol: { fill: "orange" } }, + { name: "Three", symbol: { fill: "gold" } }, + ]*/ + } + /> + + {dataSets.slice(0, 5).map((dataset, i) => getVictoryGroup(dataset, i))}