GetHyperCubeDataAsync Method
Overloads
| GetHyperCubeDataAsync(String, IEnumerable<NxPage>) | 
             Retrieves the calculated data for a chart, a table, or a scatter plot. It is possible to retrieve specific pages of data. A data set is returned.  | 
        
      
    |
| GetHyperCubeDataAsync(AsyncHandle, String, IEnumerable<NxPage>) | 
             Retrieves the calculated data for a chart, a table, or a scatter plot. It is possible to retrieve specific pages of data. A data set is returned.  | 
        
      
    |
| GetHyperCubeDataAsync<T>(AsyncHandle, Func<Response, T>, String, IEnumerable<NxPage>) | 
             Retrieves the calculated data for a chart, a table, or a scatter plot. It is possible to retrieve specific pages of data. A data set is returned.  | 
        
      
    
GetHyperCubeDataAsync(String, IEnumerable<NxPage>)
Retrieves the calculated data for a chart, a table, or a scatter plot. It is possible to retrieve specific pages of data.
A data set is returned.
Declaration
      public Task<IEnumerable<NxDataPage>> GetHyperCubeDataAsync([QixName("qPath")] string path, [QixName("qPages")] IEnumerable<NxPage> pages)
    
  Parameters
| Type | Name | Description | 
|---|---|---|
| System.String | path | 
           Path to the definition of the object to be selected.
For example,   | 
      
| System.Collections.Generic.IEnumerable<NxPage> | pages | 
           Array of pages to retrieve.  | 
      
Returns
| Type | Description | 
|---|---|
| System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<NxDataPage>> | 
Implements
Remarks
This method works for a hypercube in DATA_MODE_STRAIGHT.
GetHyperCubeDataAsync(AsyncHandle, String, IEnumerable<NxPage>)
Retrieves the calculated data for a chart, a table, or a scatter plot. It is possible to retrieve specific pages of data.
A data set is returned.
Declaration
      public Task<IEnumerable<NxDataPage>> GetHyperCubeDataAsync(AsyncHandle asyncHandle, [QixName("qPath")] string path, [QixName("qPages")] IEnumerable<NxPage> pages)
    
  Parameters
| Type | Name | Description | 
|---|---|---|
| AsyncHandle | asyncHandle | 
           Handle to asynchronous method request  | 
      
| System.String | path | 
           Path to the definition of the object to be selected.
For example,   | 
      
| System.Collections.Generic.IEnumerable<NxPage> | pages | 
           Array of pages to retrieve.  | 
      
Returns
| Type | Description | 
|---|---|
| System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<NxDataPage>> | 
Implements
Remarks
This method works for a hypercube in DATA_MODE_STRAIGHT.
GetHyperCubeDataAsync<T>(AsyncHandle, Func<Response, T>, String, IEnumerable<NxPage>)
Retrieves the calculated data for a chart, a table, or a scatter plot. It is possible to retrieve specific pages of data.
A data set is returned.
Declaration
      public Task<T> GetHyperCubeDataAsync<T>(AsyncHandle asyncHandle, Func<Response, T> onResult, [QixName("qPath")] string path, [QixName("qPages")] IEnumerable<NxPage> pages)
    
  Parameters
| Type | Name | Description | 
|---|---|---|
| AsyncHandle | asyncHandle | 
           Handle to asynchronous method request  | 
      
| System.Func<Response, T> | onResult | 
           Continuation function  | 
      
| System.String | path | 
           Path to the definition of the object to be selected.
For example,   | 
      
| System.Collections.Generic.IEnumerable<NxPage> | pages | 
           Array of pages to retrieve.  | 
      
Returns
| Type | Description | 
|---|---|
| System.Threading.Tasks.Task<T> | 
Type Parameters
| Name | Description | 
|---|---|
| T | 
Implements
Remarks
This method works for a hypercube in DATA_MODE_STRAIGHT.