DashboardFiltersApplyMode
Home > @gooddata/sdk-model > DashboardFiltersApplyMode
DashboardFiltersApplyMode type
Values of Dashboard Filters Apply Mode setting. Used for organization and workspace. INDIVIDUAL mean that each filter has its own apply button. ALL_AT_ONCE mean that there is a single apply button for all dashboard filters.
Signature:
export type DashboardFiltersApplyMode = {
mode: "INDIVIDUAL";
} | {
mode: "ALL_AT_ONCE";
};