Skip to content

Commit 3c0b565

Browse files
Integrated latest changes at 01-04-2023 11:41:41 AM
1 parent 7bd4f85 commit 3c0b565

File tree

80 files changed

+16236
-1587
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

80 files changed

+16236
-1587
lines changed

ej2-angular-toc.html

+7
Original file line numberDiff line numberDiff line change
@@ -1587,6 +1587,7 @@
15871587
<li><a href="/ej2-angular/pdfviewer/how-to/import-export-annotation">Import and Export annotation as object</a></li>
15881588
<li><a href="/ej2-angular/pdfviewer/how-to/delete-annotation">Delete a specific annotation</a></li>
15891589
<li><a href="/ej2-angular/pdfviewer/how-to/open-thumbnail">Open Thumbnail pane programmatically</a></li>
1590+
<li><a href="/ej2-angular/pdfviewer/how-to/install-packages-required-for-lower-versions">Install packages required for versions below 12</a></li>
15901591
</ul>
15911592
</li>
15921593
<li><a href="https://ej2.syncfusion.com/angular/documentation/api/pdfviewer/">API Reference</a></li>
@@ -1772,6 +1773,12 @@
17721773
<li><a href="https://ej2.syncfusion.com/angular/documentation/api/range-slider/">API Reference</a></li>
17731774
</ul>
17741775
</li><li>
1776+
Rating
1777+
<ul>
1778+
<li><a href="/ej2-angular/rating/getting-started">Getting Started</a></li>
1779+
<li><a href="https://ej2.syncfusion.com/angular/documentation/api/rating/">API Reference</a></li>
1780+
</ul>
1781+
</li><li>
17751782
RichTextEditor
17761783
<ul>
17771784
<li><a href="/ej2-angular/rich-text-editor/getting-started">Getting Started</a></li>

ej2-angular/.spelling

+1-28
Original file line numberDiff line numberDiff line change
@@ -150,31 +150,4 @@ Major.Minor.Build.Revision
150150
lifecycle
151151
nuget
152152
v20.1.0.47
153-
nuget.org
154-
xlsm
155-
xlsb
156-
Sheet1!A:H
157-
Sheet2!A:H
158-
Sheet3!A:H
159-
Sheet1!1:50
160-
Sheet2!1:50
161-
Sheet3!1:50
162-
setRowsHeight
163-
setColumnsWidth
164-
A:H
165-
F:F
166-
A:F
167-
A:C
168-
G:I
169-
K:M
170-
Sheet1!
171-
Sheet2!
172-
Sheet3!
173-
['2:2']
174-
['1:100']
175-
['1:10', '15:25', '30:40']
176-
[Sheet1!1:50, 'Sheet2!1:50', 'Sheet3!1:50']
177-
['F:F']
178-
['A:F']
179-
['A:C', 'G:I', 'K:M']
180-
[Sheet1!A:H, 'Sheet2!A:H', 'Sheet3!A:H']
153+
nuget.org

ej2-angular/Release-notes/20.3.50.md

-17
This file was deleted.

ej2-angular/Release-notes/20.3.52.md

-17
This file was deleted.

ej2-angular/Release-notes/20.3.56.md

-17
This file was deleted.

ej2-angular/code-snippet/pivot-grid/getting-started-cs103/app/app.component.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { Pivot_Data } from './datasource.ts';
66

77
@Component({
88
selector: 'app-container',
9-
providers: [GroupingBarService, FieldListService, PivotActionCompleteEventArgs ],
9+
providers: [GroupingBarService, FieldListService],
1010
// specifies the template string for the pivot table component
1111
template: `<ejs-pivotview #pivotview id='PivotView' height='350' [dataSourceSettings]=dataSourceSettings showGroupingBar='true' showFieldList='true' (actionComplete)='actionComplete($event)' width=width></ejs-pivotview>`
1212
})
@@ -15,7 +15,7 @@ export class AppComponent implements OnInit {
1515
public dataSourceSettings: IDataOptions;
1616

1717
actionComplete(args: PivotActionCompleteEventArgs): void {
18-
if (args.actionName == 'Field aggregated') {
18+
if (args.actionName == 'Field filtered') {
1919
// Triggers when the filter action is completed.
2020
}
2121
}

ej2-angular/code-snippet/pivot-grid/getting-started-cs239/app/app.component.ts

+7-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ export class AppComponent implements OnInit {
2121

2222
this.dataSourceSettings = {
2323
dataSource: Pivot_Data,
24-
expandAll: false,
24+
expandAll: false,
25+
enableSorting: true,
2526
columns: [{ name: 'Year', caption: 'Production Year' }, { name: 'Quarter' }],
2627
values: [{ name: 'Sold', caption: 'Units Sold' }, { name: 'Amount', caption: 'Sold Amount' }],
2728
rows: [{ name: 'Country' }, { name: 'Products' }],
@@ -30,7 +31,11 @@ export class AppComponent implements OnInit {
3031
};
3132

3233
this.displayOption = { view: 'Chart' } as DisplayOPtion;
33-
this.chartSettings = { value: 'Amount', chartSeries: { type: 'Column', animation: { enable: false } }, enableMultipleAxis: true, showMemberSeries: true} as ChartSettings;
34+
this.chartSettings = {
35+
title: 'Sales Analysis', value: 'Amount', chartSeries: { type: 'Column' },
36+
enableMultipleAxis: true, showPointColorByMembers: true, multipleAxisMode: 'Stacked',
37+
primaryYAxis: {border: {width: '0'}}
38+
} as ChartSettings;
3439
}
3540
}
3641

ej2-angular/code-snippet/pivot-grid/getting-started-cs279/app/app.component.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { Pivot_Data } from './datasource.ts';
66

77
@Component({
88
selector: 'app-container',
9-
providers: [GroupingBarService, FieldListService, PivotActionCompleteEventArgs ],
9+
providers: [GroupingBarService, FieldListService],
1010
// specifies the template string for the pivot table component
1111
template: `<ejs-pivotview #pivotview id='PivotView' height='350' [dataSourceSettings]=dataSourceSettings showGroupingBar='true' showFieldList='true' (actionComplete)='actionComplete($event)' width=width></ejs-pivotview>`
1212
})
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
/* csslint ignore:start */
2+
#PivotViewFieldList {
3+
float: left;
4+
width: 58% !important;
5+
height: 100%;
6+
}
7+
8+
#PivotFieldList {
9+
float: right;
10+
width: 42%;
11+
height: 100%;
12+
}
13+
/* csslint ignore:end */
14+
15+
/* csslint ignore:start */
16+
17+
.e-pivotview .e-tool-expand::before {
18+
content: '\e702';
19+
}
20+
21+
/* csslint ignore:end */
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
2+
3+
import { Component, OnInit } from '@angular/core';
4+
import { IDataOptions, DisplayOption, PivotChartService } from '@syncfusion/ej2-angular-pivotview';
5+
import { ChartSettings } from '@syncfusion/ej2-pivotview/src/pivotview/model/chartsettings';
6+
import { Pivot_Data } from './datasource.ts';
7+
8+
@Component({
9+
selector: 'app-container',
10+
providers: [PivotChartService],
11+
// specifies the template string for the pivot table component
12+
template: `<ejs-pivotview #pivotview id='PivotView' height='350' [dataSourceSettings]=dataSourceSettings
13+
[chartSettings]='chartSettings' [displayOption]='displayOption'></ejs-pivotview>`
14+
})
15+
export class AppComponent implements OnInit {
16+
public dataSourceSettings: IDataOptions;
17+
public chartSettings: ChartSettings;
18+
public displayOption: DisplayOption;
19+
20+
ngOnInit(): void {
21+
22+
this.dataSourceSettings = {
23+
dataSource: Pivot_Data,
24+
expandAll: false,
25+
columns: [{ name: 'Year', caption: 'Production Year' }, { name: 'Quarter' }],
26+
values: [{ name: 'Sold', caption: 'Units Sold' }, { name: 'Amount', caption: 'Sold Amount' }],
27+
rows: [{ name: 'Country' }, { name: 'Products' }],
28+
formatSettings: [{ name: 'Amount', format: 'C0' }],
29+
filters: []
30+
};
31+
32+
this.displayOption = { view: 'Chart' } as DisplayOPtion;
33+
this.chartSettings = { enableMultipleAxis: true, multipleAxisMode : 'Combined', chartSeries: { type: 'Column' } } as ChartSettings;
34+
}
35+
}
36+
37+
38+
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { NgModule } from '@angular/core';
22
import { BrowserModule } from '@angular/platform-browser';
3-
import { SpreadsheetAllModule } from '@syncfusion/ej2-angular-spreadsheet';
3+
import { PivotViewAllModule, PivotFieldListAllModule } from '@syncfusion/ej2-angular-pivotview';
44
import { AppComponent } from './app.component';
55

66
/**
@@ -9,9 +9,10 @@ import { AppComponent } from './app.component';
99
@NgModule({
1010
imports: [
1111
BrowserModule,
12-
SpreadsheetAllModule
12+
PivotViewAllModule,
13+
PivotFieldListAllModule
1314
],
1415
declarations: [AppComponent],
1516
bootstrap: [AppComponent]
1617
})
17-
export class AppModule { }
18+
export class AppModule { }

0 commit comments

Comments
 (0)