We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d5d31f commit ca63ecfCopy full SHA for ca63ecf
1 file changed
src/app/pivot-grid/pivot-layout/pivot-layout.component.ts
@@ -63,18 +63,21 @@ export class PivotGridLayoutComponent {
63
memberFunction: () => 'All Products',
64
memberName: 'AllProducts',
65
enabled: true,
66
+ horizontalSummary: true,
67
width: "150px",
68
childLevel: {
69
memberFunction: (data) => data.Product.Name,
70
memberName: 'ProductCategory',
- enabled: true
71
72
+ width: "150px",
73
+ enabled: true,
74
+ childLevel: {
75
+ memberName: 'City',
76
77
+ memberFunction: (data) => data.Seller.City,
78
+ enabled: true
79
+ }
80
}
- },
- {
- memberName: 'City',
- width: "150px",
- memberFunction: (data) => data.Seller.City,
81
82
],
83
values: [
0 commit comments