Add graphic aesthetics

This commit is contained in:
D. Berge
2021-09-11 12:38:12 +02:00
parent 3eaa2757b9
commit 30aa2c302e

View File

@@ -0,0 +1,74 @@
export const gunArrays = {
2: {
min: {
fillcolor: "rgba(200, 230, 201, 0.2)",
line: {color: "rgba(129, 199, 132, 0.3)", shape: "spline"},
showlegend: false,
name: "Array 1 (min.)",
hoverinfo: "skip"
},
avg: {
fillcolor: "rgba(200, 230, 201, 0.2)",
line: {color: "rgba(129, 199, 132, 0.9)", shape: "spline"},
name: "Array 1 (avg.)"
},
max: {
fillcolor: "rgba(200, 230, 201, 0.2)",
line: {color: "rgba(129, 199, 132, 0.4)", shape: "spline"},
showlegend: false,
name: "Array 1 (max.)",
hoverinfo: "skip"
}
},
1: {
min: {
fillcolor: "rgba(255, 205, 210, 0.2)",
line: {color: "rgba(229, 115, 115, 0.3)", shape: "spline"},
showlegend: false,
name: "Array 2 (min.)",
hoverinfo: "skip"
},
avg: {
fillcolor: "rgba(255, 205, 210, 0.2)",
line: {color: "rgba(229, 115, 115, 0.9)", shape: "spline"},
name: "Array 2 (avg.)"
},
max: {
fillcolor: "rgba(255, 205, 210, 0.2)",
line: {color: "rgba(229, 115, 115, 0.4)", shape: "spline"},
showlegend: false,
name: "Array 2 (max.)",
hoverinfo: "skip"
}
},
3: {
min: {
fillcolor: "",
line: {color: "", shape: "spline"},
showlegend: false,
name: "Array 3 (min.)",
hoverinfo: "skip"
},
avg: {
fillcolor: "",
line: {color: "", shape: "spline"},
name: "Array 3 (avg.)"
},
max: {
fillcolor: "",
line: {color: "", shape: "spline"},
showlegend: false,
name: "Array 3 (max.)",
hoverinfo: "skip"
}
}
};
export const gunArrayViolins = {
1: {
value: {line: {color: "rgba(129, 199, 132, 0.9)"}}
},
2: {
value: {line: {color: "rgba(229, 115, 115, 0.9)"}}
}
};