HTML<dx-report-parameters-panel class="parametersPanel" [reportUrl]="reportUrl" height="100%" width="400px">
<dxrpp-request-options [invokeAction]="invokeAction" [host]="hostUrl"></dxrpp-request-options>
<dxrpp-callbacks (BeforeRender)="onBeforeRender($event)" (ParametersInitialized)="OnParametersInitialized($event)"></dxrpp-callbacks>
</dx-report-parameters-panel>
TypeScriptimport { ChangeDetectionStrategy, Component, ElementRef, Inject, ViewChild, ViewEncapsulation } from '@angular/core';
@Component({
changeDetection: ChangeDetectionStrategy.OnPush,
})