Types
Where the choices come from
Aselect or multi_select gets its options one of two ways.
Static options are a fixed list you author, right for a small stable set. Sourced options come
from a data source at refresh time, right when the list is large or data-driven.
Relative dates
Date parameters accept relative expressions instead of a fixed date, resolved in UTC at every refresh. This is how a dashboard says “the last 90 days” and still means it next month.
Offsets take a unit of
d, w, mo or y, days if omitted. A trailing /unit rounds down to the start
of that unit, and weeks start Monday.
today and now mean the same thing. Both resolve to a date carrying no time of day, so there is no
anchor for “this hour”.
Relative expressions work on date and date_range only. A datetime default takes a literal ISO
datetime, and integer and decimal take a plain number.
Defaults are the published baseline
This is the part worth reading twice. A parameter’s default is its only persisted state. Scheduled refreshes render every widget against the defaults, and every reader lands on them when they open the dashboard. When somebody reading a dashboard changes a filter, that change is never written back. The dashboard keeps publishing its defaults, other readers are unaffected, and nobody can alter what a dashboard says by looking at it. What a filter change does do is go into the URL. Applying filters puts the values in the address bar, so you can bookmark a filtered view or send it to a colleague, and opening that link re-runs the dashboard at those values. It runs as whoever opened it, on their own allowance, so a shared drilldown is a question rather than a copy of your answer. Anonymous share links carry no filter values. A link viewer always gets the published baseline. Changing a default is the other thing entirely. It re-baselines the dashboard, so the next refresh publishes at the new value and every reader lands there. That is an edit, not a view.Ordering
Parameters can be given an explicit order in the filters panel. Without one they sort alphabetically by label, which inverts natural sequences, so an unorderedStart and End pair lists End first. Author
related parameters in reading order, coarse before fine and start before end.