Pull the stacked value from the correct location

This commit is contained in:
Oliver-Akins 2025-05-19 01:57:10 -06:00
parent 20cc26cc4e
commit 6d82a2acf3

View file

@ -260,10 +260,10 @@ export class StatsViewer extends HandlebarsApplicationMixin(ApplicationV2) {
animation: false, animation: false,
scales: { scales: {
y: { y: {
stacked: table.config?.stacked ?? false, stacked: table.graph?.stacked ?? false,
}, },
x: { x: {
stacked: table.config?.stacked ?? false, stacked: table.graph?.stacked ?? false,
}, },
}, },
}, },