IGenericObjectGetHyperCubeDataAsyncT Method (String, IEnumerableNxPage, FuncResponse, T, AsyncHandle) |
Retrieves the values of a chart, a table, or a scatter plot. It is possible to retrieve specific pages of data.
This method does not apply to stacked tables.
Namespace: Qlik.EngineAssembly: Qlik.Engine (in Qlik.Engine.dll) Version: 1.1.0.0 (1.1.0.0)
Syntax Task<T> GetHyperCubeDataAsync<T>(
string path,
IEnumerable<NxPage> pages,
Func<Response, T> onResult,
AsyncHandle asyncHandle = null
)
Function GetHyperCubeDataAsync(Of T) (
path As String,
pages As IEnumerable(Of NxPage),
onResult As Func(Of Response, T),
Optional asyncHandle As AsyncHandle = Nothing
) As Task(Of T)
Parameters
- path
- Type: SystemString
Path to the definition of the object to be selected
For example, /qHyperCubeDef.
This parameter is mandatory. - pages
- Type: System.Collections.GenericIEnumerableNxPage
Array of pages to retrieve
This parameter is mandatory. - onResult
- Type: SystemFuncResponse, T
Continuation function - asyncHandle (Optional)
- Type: Qlik.EngineAsyncHandle
Handle to asyncronous method request
Type Parameters
- T
Return Value
Type:
TaskTSee Also