ReportConfigDataset interface
The definition of data present in the report.
Properties
aggregation | Dictionary of aggregation expression to use in the report. The key of each item in the dictionary is the alias for the aggregated column. Report can have up to 2 aggregation clauses. |
configuration | Has configuration information for the data in the report. The configuration will be ignored if aggregation and grouping are provided. |
filter | Has filter expression to use in the report. |
granularity | The granularity of rows in the report. |
grouping | Array of group by expression to use in the report. Report can have up to 2 group by clauses. |
sorting | Array of order by expression to use in the report. |
Property Details
aggregation
Dictionary of aggregation expression to use in the report. The key of each item in the dictionary is the alias for the aggregated column. Report can have up to 2 aggregation clauses.
aggregation?: {[propertyName: string]: ReportConfigAggregation}
Property Value
{[propertyName: string]: ReportConfigAggregation}
configuration
Has configuration information for the data in the report. The configuration will be ignored if aggregation and grouping are provided.
configuration?: ReportConfigDatasetConfiguration
Property Value
filter
Has filter expression to use in the report.
filter?: ReportConfigFilter
Property Value
granularity
The granularity of rows in the report.
granularity?: string
Property Value
string
grouping
Array of group by expression to use in the report. Report can have up to 2 group by clauses.
grouping?: ReportConfigGrouping[]
Property Value
sorting
Array of order by expression to use in the report.
sorting?: ReportConfigSorting[]
Property Value
Azure SDK for JavaScript