Posted 1 May 2026, 9:59 am EST - Updated 1 May 2026, 10:05 am EST
When user open report viewer, give the param value
it will show the report page and hide the param panel, can we keep the param panel show in the sidebar?
our sample code:
viewer = createViewer({
locale: options.locale,
element: ‘#’ + options.element,
reportService: {
url: ‘api/reporting’,
},
reportID: options.documentInfo.id,
animation: {
hoverTable: {
enabled: true,
backgroundColor: ‘LightGray’,
textColor: ‘DarkGray’
}
},
settings: {
zoomType: ‘FitPage’,
},
panelsLocation: ‘sidebar’,
parametersPanel: { location: ‘top’, always: ‘true’ },
theme: options.theme
});


