Skip to content

Commit 2d5d1dc

Browse files
authored
Merge pull request #10147 from IgniteUI/pivot-grid-master
Pivot grid draft - master
2 parents 3974655 + 2ea6621 commit 2d5d1dc

File tree

105 files changed

+16967
-240
lines changed

Some content is hidden

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

105 files changed

+16967
-240
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,16 @@ All notable changes for each version of this project will be documented in this
55
## 13.1.0
66

77
### New Features
8+
- Added `IgxPivotGrid` component(Preview)
9+
- The igxPivotGrid is a data presentation control for displaying data in a pivot table. It enables users to perform complex analysis on the supplied data. Main purpose is to transform and display a flat array of data into a complex grouped structure with aggregated values based on the main 3 dimensions: rows, columns and values, which the user may specify depending on his/her business needs. The whole pivot grid configuration is set through `IPivotConfiguration` interface.
10+
11+
```html
12+
<igx-pivot-grid [data]="origData" [pivotConfiguration]="pivotConfigHierarchy">
13+
</igx-pivot-grid>
14+
```
15+
16+
- For more information, check out the [README](https://github.com/IgniteUI/igniteui-angular/blob/master/projects/igniteui-angular/src/lib/grids/pivot-grid/README.md), [specification](https://github.com/IgniteUI/igniteui-angular/wiki/igxPivotGrid-Specification) and [official documentation](https://www.infragistics.com/products/ignite-ui-angular/angular/components/pivotgrid).
17+
818
- `igxTooltipTarget` directive now allows specifying a plain text tooltip without adding an additional DOM element decorated with the `igxTooltip` directive. This is achieved via the newly introduced `tooltip` string input.
919
```html
1020
<button igxTooltipTarget [tooltip]="'Infragistics Inc. HQ'">
@@ -99,6 +109,11 @@ All notable changes for each version of this project will be documented in this
99109
- Exposed new input `buttonText` which sets the text that is displayed inside the dropdown button in the toolbar.
100110
- `IgxCombo`
101111
- Added `groupSortingDirection` input, which allows you to set groups sorting order.
112+
- `igxChip`
113+
- Exposed drop directive related events for the chip when it's used as a drop target:
114+
- `dragLeave`
115+
- `dragDrop`
116+
- `dragOver`
102117
- `IgxGrid`, `IgxTreeGrid`, `IgxHierarchicalGrid`
103118
- Added new directives for re-templating header sorting indicators - `IgxSortHeaderIconDirective`, `IgxSortAscendingHeaderIconDirective` and `IgxSortDescendingHeaderIconDirective`.
104119
- `IgxGrid`

0 commit comments

Comments
 (0)