Skip to content

Commit e7908bc

Browse files
Updating the samples
1 parent 2a96212 commit e7908bc

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

src/app/change-document-width-and-height/change-document-width-and-height.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ <h4>Change document width and height</h4>
22
<div class="col-md-2"><button ej-button id='export'>Export</button></div>
33
<div class="col-md-8">
44
<ejs-pivotview #pivotview id='PivotView' height='350' [dataSourceSettings]=dataSourceSettings allowPdfExport='true'
5-
enableVirtualization='true' (beforeExport)='beforeExport($event)' (load)='load()' width=width></ejs-pivotview>
5+
(beforeExport)='beforeExport($event)' (load)='load()' width=width></ejs-pivotview>
66
</div>

src/app/change-document-width-and-height/change-document-width-and-height.component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
import { Component, OnInit, ViewChild } from '@angular/core';
2-
import { IDataOptions, PivotView, VirtualScrollService, PDFExportService, BeforeExportEventArgs, IDataSet } from '@syncfusion/ej2-angular-pivotview';
2+
import { IDataOptions, PivotView, PDFExportService, BeforeExportEventArgs, IDataSet } from '@syncfusion/ej2-angular-pivotview';
33
import { Button } from '@syncfusion/ej2-buttons';
44
import { pivot_Data } from '../data';
55

66
@Component({
77
selector: 'app-container',
8-
providers: [PDFExportService,VirtualScrollService],
8+
providers: [PDFExportService],
99
templateUrl: `./change-document-width-and-height.component.html`
1010
})
1111
export class ChangeDocumentWidthAndHeightComponent implements OnInit {

src/app/change-page-orientation/change-page-orientation.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ <h4>Change page orientation</h4>
22
<div class="col-md-2"><button ej-button id='export'>Export</button></div>
33
<div class="col-md-8">
44
<ejs-pivotview #pivotview id='PivotView' height='350' [dataSourceSettings]=dataSourceSettings allowPdfExport='true'
5-
enableVirtualization='true' width=width (load)='load()'></ejs-pivotview>
5+
width=width (load)='load()'></ejs-pivotview>
66
</div>

src/app/change-page-size/change-page-size.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ <h4>Change pageSize</h4>
22
<div class="col-md-2"><button ej-button id='export'>Export</button></div>
33
<div class="col-md-8">
44
<ejs-pivotview #pivotview id='PivotView' height='350' [dataSourceSettings]=dataSourceSettings allowPdfExport='true'
5-
enableVirtualization='true' width=width (load)='load()'></ejs-pivotview>
5+
width=width (load)='load()'></ejs-pivotview>
66
</div>

0 commit comments

Comments
 (0)