filters JSON

The filters section defines the global filters added to a global filter panel widget, which is available in the dashboard designer.

Global Filters Example 

1"filters": [
2    {
3        "label": "Account.Type",
4        "fields": [
5            "Account.Type"
6        ],
7        "operator": "in",
8        "locked": false,
9        "dataset": {
10            "name": "opportunity"
11        },
12        "value": [
13            "Customer"
14        ]
15    },
16    {
17        "label": "ForecastCategory",
18        "fields": [
19            "ForecastCategory"
20        ],
21        "operator": "in",
22        "locked": true,
23        "dataset": {
24            "name": "opportunity"
25        },
26        "value": [
27            "BestCase"
28        ]
29    }
30],
  • filters Properties

    The filters key defines all global filters included in the dashboard. It contains a separate node, with configurable properties, for each global filter. Global filters apply to all layouts, but you can specify whether each widget applies the global filters.