feat: add labels to chart
This commit is contained in:
parent
eee7dee608
commit
a4d4c42386
|
@ -6,6 +6,7 @@ import {
|
||||||
VictoryBar,
|
VictoryBar,
|
||||||
VictoryLabel,
|
VictoryLabel,
|
||||||
VictoryTooltip,
|
VictoryTooltip,
|
||||||
|
VictoryLegend,
|
||||||
VictoryLine,
|
VictoryLine,
|
||||||
VictoryScatter,
|
VictoryScatter,
|
||||||
VictoryChart,
|
VictoryChart,
|
||||||
|
@ -34,6 +35,18 @@ const data2 = Array.from(Array(l).keys()).map((x) => ({
|
||||||
probability: 1 - Math.abs(Math.sin((5 * x) / l)),
|
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 getDate = (x) => {
|
||||||
let date = new Date(x);
|
let date = new Date(x);
|
||||||
return date.toISOString().slice(5, 10).replaceAll("-", "/");
|
return date.toISOString().slice(5, 10).replaceAll("-", "/");
|
||||||
|
@ -45,14 +58,7 @@ let dataAsXy = (data) =>
|
||||||
y: datum.probability,
|
y: datum.probability,
|
||||||
}));
|
}));
|
||||||
|
|
||||||
let colors = [
|
let colors = ["dodgerblue", "crimson", "seagreen", "darkviolet", "turquoise"];
|
||||||
"royalblue",
|
|
||||||
"crimson",
|
|
||||||
"darkgreen",
|
|
||||||
"dodgerblue",
|
|
||||||
"darkviolet",
|
|
||||||
"limegreen",
|
|
||||||
];
|
|
||||||
const getVictoryGroup = (data, i) => {
|
const getVictoryGroup = (data, i) => {
|
||||||
return (
|
return (
|
||||||
<VictoryGroup color={colors[i] || "darkgray"} data={dataAsXy(data)}>
|
<VictoryGroup color={colors[i] || "darkgray"} data={dataAsXy(data)}>
|
||||||
|
@ -76,6 +82,18 @@ const getVictoryGroup = (data, i) => {
|
||||||
};
|
};
|
||||||
|
|
||||||
export const HistoryChart: React.FC<Props> = ({ question, history }) => {
|
export const HistoryChart: React.FC<Props> = ({ 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 (
|
return (
|
||||||
<div className="grid grid-rows-1 bg-white p-10">
|
<div className="grid grid-rows-1 bg-white p-10">
|
||||||
<a
|
<a
|
||||||
|
@ -89,10 +107,10 @@ export const HistoryChart: React.FC<Props> = ({ question, history }) => {
|
||||||
</a>
|
</a>
|
||||||
<VictoryChart
|
<VictoryChart
|
||||||
domainPadding={20}
|
domainPadding={20}
|
||||||
padding={{ top: 20, bottom: 50, left: 50, right: 50 }}
|
padding={{ top: 20, bottom: 50, left: 50, right: 100 }}
|
||||||
theme={VictoryTheme.material}
|
theme={VictoryTheme.material}
|
||||||
height={340}
|
height={height}
|
||||||
width={500}
|
width={width}
|
||||||
containerComponent={
|
containerComponent={
|
||||||
<VictoryVoronoiContainer
|
<VictoryVoronoiContainer
|
||||||
labels={({ datum }) => `${datum.x}: ${Math.round(datum.y * 100)}%`}
|
labels={({ datum }) => `${datum.x}: ${Math.round(datum.y * 100)}%`}
|
||||||
|
@ -124,9 +142,26 @@ export const HistoryChart: React.FC<Props> = ({ question, history }) => {
|
||||||
y: [0, 1],
|
y: [0, 1],
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
{[data, data2]
|
<VictoryLegend
|
||||||
.slice(0, 5)
|
x={width - 100}
|
||||||
.map((dataset, i) => getVictoryGroup(dataset, i))}
|
y={height / 2 - 18 - (dataSetsLength - 1) * 13}
|
||||||
|
orientation="vertical"
|
||||||
|
gutter={20}
|
||||||
|
style={{ border: { stroke: "black" }, title: { fontSize: 20 } }}
|
||||||
|
data={
|
||||||
|
Array.from(Array(dataSetsLength).keys()).map((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))}
|
||||||
<VictoryAxis
|
<VictoryAxis
|
||||||
// tickValues specifies both the number of ticks and where
|
// tickValues specifies both the number of ticks and where
|
||||||
// they are placed on the axis
|
// they are placed on the axis
|
||||||
|
|
Loading…
Reference in New Issue
Block a user