tweak: Further improvements to chart
This commit is contained in:
parent
a69284814c
commit
93ffc838ee
|
@ -2,6 +2,7 @@ import React from "react";
|
||||||
|
|
||||||
import { FrontendForecast } from "../platforms";
|
import { FrontendForecast } from "../platforms";
|
||||||
import * as V from "victory";
|
import * as V from "victory";
|
||||||
|
import { HistoryChartFlyout } from "./HistoryChartFlyout";
|
||||||
import {
|
import {
|
||||||
VictoryBar,
|
VictoryBar,
|
||||||
VictoryLabel,
|
VictoryLabel,
|
||||||
|
@ -20,7 +21,7 @@ interface Props {
|
||||||
history: number[];
|
history: number[];
|
||||||
}
|
}
|
||||||
|
|
||||||
const data = [
|
const data0 = [
|
||||||
{ date: 1, probability: 0.1 },
|
{ date: 1, probability: 0.1 },
|
||||||
{ date: 2, probability: 0.2 },
|
{ date: 2, probability: 0.2 },
|
||||||
{ date: 3, probability: 0.4 },
|
{ date: 3, probability: 0.4 },
|
||||||
|
@ -32,6 +33,12 @@ const data = [
|
||||||
{ date: 9, probability: 0.7 },
|
{ 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 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("-", "/");
|
||||||
|
@ -54,20 +61,36 @@ export const HistoryChart: React.FC<Props> = ({ question, history }) => {
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<VictoryGroup
|
<VictoryGroup
|
||||||
color="#c43a31"
|
color="darkblue"
|
||||||
data={dataAsXy}
|
data={dataAsXy}
|
||||||
labels={({ datum }) => `${datum.y * 100}%`}
|
labels={({ datum }) => `${datum.x}: ${Math.round(datum.y * 100)}%`}
|
||||||
labelComponent={
|
labelComponent={
|
||||||
<VictoryTooltip style={{ fontSize: 10, fill: "black" }} />
|
<VictoryTooltip
|
||||||
|
pointerLength={0}
|
||||||
|
dy={-12}
|
||||||
|
style={{
|
||||||
|
fontSize: 9,
|
||||||
|
fill: "black",
|
||||||
|
strokeWidth: 0.05,
|
||||||
|
}}
|
||||||
|
flyoutStyle={{
|
||||||
|
stroke: "black",
|
||||||
|
fill: "white",
|
||||||
|
}}
|
||||||
|
flyoutWidth={60}
|
||||||
|
cornerRadius={0}
|
||||||
|
flyoutPadding={7}
|
||||||
|
/>
|
||||||
}
|
}
|
||||||
>
|
>
|
||||||
<VictoryLine />
|
<VictoryLine />
|
||||||
<VictoryScatter size={({ active }) => (active ? 8 : 3)} />
|
<VictoryScatter size={({ active }) => (active ? 3.75 : 3)} />
|
||||||
</VictoryGroup>
|
</VictoryGroup>
|
||||||
<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
|
||||||
tickValues={data.map((datum) => datum.date)}
|
tickValues={data.map((datum) => datum.date)}
|
||||||
|
tickCount={10}
|
||||||
tickFormat={dataAsXy.map((datum) => datum.x)}
|
tickFormat={dataAsXy.map((datum) => datum.x)}
|
||||||
style={{
|
style={{
|
||||||
grid: { stroke: null, strokeWidth: 0.5 },
|
grid: { stroke: null, strokeWidth: 0.5 },
|
||||||
|
|
5
src/web/display/HistoryChartFlyout.tsx
Normal file
5
src/web/display/HistoryChartFlyout.tsx
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
import React from "react";
|
||||||
|
|
||||||
|
export const HistoryChartFlyout = ({ x, y, datum, dx, dy }) => {
|
||||||
|
return <div>{x}</div>;
|
||||||
|
};
|
Loading…
Reference in New Issue
Block a user