Use the permissionSettings
property to restrict the DataSource and Dataset edit option in Report Designer. For more details, refer to this PermissionSettings
property.
<bold-reportdesigner id="designer" [serviceUrl] = "serviceUrl" [permissionSettings]="permissionSettings">
</bold-reportdesigner>
export class AppComponent {
public permissionSettings:string;
constructor() {
// Initialize the Report Designer properties here.
this.permissionSettings='dataSet: ~ej.ReportDesigner.Permission.All,dataSource: ~ej.ReportDesigner.Permission.All';
}
}