website: snapshot

This commit is contained in:
nym21
2026-01-23 22:03:01 +01:00
parent f7bfe5ecaa
commit 9b706dfaee
49 changed files with 631818 additions and 1298 deletions

View File

@@ -56,8 +56,9 @@ export function createLegend() {
inputValue: "value",
title: "Click to toggle",
inputChecked: series.active.value,
onClick: () => {
series.setActive(input.checked);
onClick: (event) => {
event.preventDefault();
series.setActive(!series.active.value);
},
type: "checkbox",
});