diff --git a/src/routes/stocks/[tickerID]/profile/employees/+page.svelte b/src/routes/stocks/[tickerID]/profile/employees/+page.svelte
index 3d468a86..7ee418ec 100644
--- a/src/routes/stocks/[tickerID]/profile/employees/+page.svelte
+++ b/src/routes/stocks/[tickerID]/profile/employees/+page.svelte
@@ -126,29 +126,30 @@
opposite: true,
},
tooltip: {
+ shared: true,
useHTML: true,
- backgroundColor: "#fff",
+ backgroundColor: "rgba(0, 0, 0, 0.8)", // Semi-transparent black
+ borderColor: "rgba(255, 255, 255, 0.2)", // Slightly visible white border
+ borderWidth: 1,
style: {
- color: "black",
+ color: "#fff",
fontSize: "16px",
padding: "10px",
},
- borderRadius: 2,
- borderWidth: 1,
- borderColor: "#fff",
+ borderRadius: 4,
formatter: function () {
let value;
if (sortBy === "Growth") {
value = `${this.y >= 0 ? "+" : ""}${this.y.toFixed(2)}%`;
} else if (sortBy === "Change") {
- value = (this.y >= 0 ? "+" : "") + this.y.toLocaleString();
+ value = (this.y >= 0 ? "+" : "") + this.y.toLocaleString("en-US");
} else {
- value = this.y.toLocaleString();
+ value = this.y.toLocaleString("en-US");
}
return (
- `${this.x}
` +
- `${value}`
+ `${this.x}
` +
+ `Employees ${value}`
);
},
},