I am trying to use Report Viewer in Angular 7 using your online report services but getting this error,
"Error: ejReportViewer: methods/properties can be accessed only after plugin creation"
Here is how I tried to use it,
` id="reportViewer_Control" [reportServiceUrl]="serviceUrl" [reportPath]="reportPath">
`
and service url is
this.reportPath = 'company-sales';
this.serviceUrl = 'https://reports.syncfusion.com/demos/services/api/SamplesReportViewer';
and imported EJAngular2Module.forRoot() in app module.
Component is loaded as shown in above given snapshot but report is not loaded and it gives error "Error: ejReportViewer: methods/properties can be accessed only after plugin creation". Any help will be appreciated.