Anjali Mandowara
01/07/2025, 6:37 AMconst { baseURL, workspaceId, type, typeId, height = 700 } = args
if (type === 'dashboard') {
if (typeId === 'dashboard') {
`return `${baseURL}/dashboards/embedded/#/workspace/${workspaceId}/dashboard/*organization_finances*?hidefilters=programname&hidefilters=programid&setHeight=${height}&showNavigation=true&apiTokenAuthentication=true``
} else if (typeId === 'analyze') {
`return `${baseURL}/analyze/embedded/#/${workspaceId}/reportId/edit?hidefilters=programname&hidefilters=programid&setHeight=${height}&apiTokenAuthentication=true``
}
}
return ''
Here organization_finances is the dashboard where pointer will be (or it will be displayed) , all other dashbaord apart from it ( up & bottom) will be displayed. So, is there way to show only few specific dashboard in the iframe?Joseph Heun
01/07/2025, 7:51 AM