fix: chart bug
This commit is contained in:
parent
d21e7c0edb
commit
8291706f9c
|
@ -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,
|
||||
},
|
||||
|
|
|
@ -62,21 +62,21 @@ const colors = ["dodgerblue", "crimson", "seagreen", "darkviolet", "turquoise"];
|
|||
const getVictoryGroup = (data, i) => {
|
||||
return (
|
||||
<VictoryGroup color={colors[i] || "darkgray"} data={dataAsXy(data)}>
|
||||
<VictoryLine
|
||||
name={`line${i}`}
|
||||
<VictoryScatter
|
||||
//style={{ labels: { display: "none" } }}
|
||||
size={({ active }) => (active ? 3.75 : 3)}
|
||||
//labels={() => null}
|
||||
//labelComponent={<span></span>}
|
||||
/>
|
||||
{
|
||||
<VictoryScatter
|
||||
|
||||
{/* Doesn't work well with tooltips
|
||||
<VictoryLine
|
||||
name={`line${i}`}
|
||||
//style={{ labels: { display: "none" } }}
|
||||
size={({ active }) => (active ? 3.75 : 3)}
|
||||
//labels={() => null}
|
||||
//labelComponent={<span></span>}
|
||||
/>
|
||||
// No idea how to disable labels
|
||||
}
|
||||
*/}
|
||||
</VictoryGroup>
|
||||
);
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue
Block a user