diff --git a/web/configSchema.go b/web/configSchema.go index 66e57195..d2c839e9 100644 --- a/web/configSchema.go +++ b/web/configSchema.go @@ -177,6 +177,11 @@ const configSchema = `{ "description": "Initial thickness of rendered plotlines. Applies to metric plot, job compare plot and roofline.", "type": "integer" }, + "smoothing-window": { + "description": "Initial display smoothing window in data points, applied after downsampling. 0 disables smoothing. Display-only: reported statistics and footprints are unaffected.", + "type": "integer", + "minimum": 0 + }, "color-scheme": { "description": "Initial colorScheme to be used for metric plots.", "type": "array", diff --git a/web/frontend/src/config/user/PlotRenderOptions.svelte b/web/frontend/src/config/user/PlotRenderOptions.svelte index b8b96ae9..22ca761c 100644 --- a/web/frontend/src/config/user/PlotRenderOptions.svelte +++ b/web/frontend/src/config/user/PlotRenderOptions.svelte @@ -311,4 +311,55 @@ + + +