Merged PR 336581: [Quick Create]Add aggregateFunction to ColumnSchema
Add aggregateFunction to ColumnSchema Tech spec: https://microsoft.sharepoint.com/:w:/t/PowerBI/EUmfm6Yccy9OrewTu3NtB1oBt9gQ1u9YbPxjZBv8nEn_2Q?e=AYvUyR Related work items: #701218
This commit is contained in:
Родитель
0cf37b6c10
Коммит
b77c97ea22
|
@ -1179,6 +1179,18 @@ export interface IColumnSchema {
|
|||
name: string;
|
||||
displayName?: string;
|
||||
dataType: DataType;
|
||||
aggregateFunction?: AggregateFunction;
|
||||
}
|
||||
|
||||
export enum AggregateFunction {
|
||||
Default = 1,
|
||||
None,
|
||||
Sum,
|
||||
Min,
|
||||
Max,
|
||||
Count,
|
||||
Average,
|
||||
DistinctCount
|
||||
}
|
||||
|
||||
export const enum DataType {
|
||||
|
|
Загрузка…
Ссылка в новой задаче