DataViewLoader
Home > @gooddata/sdk-ui > DataViewLoader
DataViewLoader class
This API is provided as an alpha preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
DataViewLoader allows you to speficy, load and access data results with convenient series and slices API.
Signature:
export declare class DataViewLoader
Properties
Property |
Modifiers |
Type |
Description |
---|---|---|---|
(...filters: INullableFilter[]) => DataViewLoader |
(ALPHA) Filters to apply on server side. | ||
() => Promise<DataViewFacade> |
(ALPHA) Loads all the result data and wraps them in DataViewFacade. | ||
(dataWindow: DataViewWindow) => Promise<DataViewFacade> |
(ALPHA) Loads subset of the result data and wraps them in DataViewFacade. | ||
(...measuresAndScopingAttributes: IAttributeOrMeasure[]) => DataViewLoader |
(ALPHA) Data series will be built using the provided measures that are further scoped for elements of the specified attributes. | ||
(...attributes: IAttribute[]) => DataViewLoader |
(ALPHA) Slice all data series by elements of these attributes. | ||
(...sorts: ISortItem[]) => DataViewLoader |
(ALPHA) Sorting to apply on server side. | ||
(signal: AbortSignal) => DataViewLoader |
(ALPHA) Runs execution with the provided AbortSignal. | ||
(...totals: ITotal[]) => DataViewLoader |
(ALPHA) Include these totals among the data slices. |