Apply a Filter with a multiple hardcoded dimension member values

In this example ‘Country’ is the dimension, France and the UK are the dimension members we want to filter on

Table_1.getDataSource().setDimensionFilter("Country",[‘France’,’UK’]);
Code language: JavaScript (javascript)
Scroll to Top