MediaWiki:Common.js
Appearance
Note: After publishing, you may have to bypass your browser's cache to see the changes.
- Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
- Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
- Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.
document.addEventListener('DOMContentLoaded', function () {
const ctx1 =
document.getElementById("maxPlayerChart");
const init1 = async () => {
const data = (
await (
await fetch(
"https://goldenage.keii.dev/api/servers/1/statistics/max-player-count",
)
).json()
)["data"];
new Chart(ctx1, {
type: "line",
data: {
labels: data.map((row) =>
new Date(row.Date).toDateString(),
),
datasets: [
{
label: "Max Player Count",
data: data.map(
(row) => row.MaxPlayerCount,
),
borderWidth: 1,
},
],
},
options: {
scales: {
y: {
beginAtZero: true,
},
},
},
});
};
init1();
});