Is there a way to get the current filter value and assign it to a label. I have my script as below but couldn’t get the filter value
var baseViewService = this.getService("BaseViewService");
var myFilter= baseViewService.currentView.control.viewParameters.filter(function(item) {
return item.name === "ParameterName";
})[0];
Label1.labelText = ??