Moved to the left and darkened

This commit is contained in:
cyril59310
2026-01-02 21:02:26 +01:00
parent 4ba03a86c6
commit e409266e33
+12 -12
View File
@@ -163,7 +163,7 @@ export default {
// Enable the legend and display only the non-bar datasets (the lines)
display: true,
position: "top",
align: "end",
align: "start",
labels: {
color: this.$root.theme === "light" ? "rgba(12,12,18,1.0)" : "rgba(220,220,220,1.0)",
usePointStyle: true,
@@ -501,16 +501,6 @@ export default {
return {
datasets: [
{
// average ping chart
data: avgPingData,
fill: "origin",
tension: 0.2,
borderColor: "#5CDD8B",
backgroundColor: "#5CDD8B06",
yAxisID: "y",
label: this.$t("avgPing") || "Avg Ping",
},
{
// minimum ping chart
data: minPingData,
@@ -521,12 +511,22 @@ export default {
yAxisID: "y",
label: this.$t("minPing") || "Min Ping",
},
{
// average ping chart
data: avgPingData,
fill: "origin",
tension: 0.2,
borderColor: "#5CDD8B",
backgroundColor: "#5CDD8B06",
yAxisID: "y",
label: this.$t("avgPing") || "Avg Ping",
},
{
// maximum ping chart
data: maxPingData,
fill: "origin",
tension: 0.2,
borderColor: "#175c32",
borderColor: "#124526",
backgroundColor: "#1E7A4214",
yAxisID: "y",
label: this.$t("maxPing") || "Max Ping",