GenericObject RangeSelectHyperCubeValuesAsync T  Method (String, IEnumerable NxRangeSelectInfo , Boolean, Boolean, Func Response, T , String)Qlik Sense .NET SDK - API Reference

Make range selections in measures.

This method applies to hypercubes. For example, bar charts, tables and scatter plots.

Namespace: Qlik.Engine
Assembly: Qlik.Engine (in Qlik.Engine.dll) Version: 1.0.1.0 (1.0.1.0)
Syntax

public Task<T> RangeSelectHyperCubeValuesAsync<T>(
	string path,
	IEnumerable<NxRangeSelectInfo> ranges,
	bool orMode = false,
	bool deselectOnlyOneSelected = false,
	Func<Response, T> onResult,
	string userHandle = null
)

Parameters

path
Type: OnlineSystem String
Path to the definition of the object to be selected. For example, /qHyperCubeDef. This parameter is mandatory.
ranges
Type: OnlineSystem.Collections.Generic IEnumerable NxRangeSelectInfo 
Ranges of selection This parameter is mandatory.
orMode (Optional)
Type: OnlineSystem Boolean
Applies to hypercubes with multiple measures. If set to true, it means that at least one of the measures must be in the range of selections for the group of measures to be selected. If set to false, it means that all measures must be in the range of selections for the group of measures to be selected. This parameter is optional. The default value is false.
deselectOnlyOneSelected (Optional)
Type: OnlineSystem Boolean
Set this parameter to true to unselect the last single selected value. There must be only one selected value in the field. The default value is false.
onResult
Type: OnlineSystem Func Response, T 
Continuation function
userHandle (Optional)
Type: OnlineSystem String
Handle identifier
Type Parameters

T

Return Value

Type: OnlineTask T 

Implements

IGenericObject RangeSelectHyperCubeValuesAsync T (String, IEnumerable NxRangeSelectInfo , Boolean, Boolean, Func Response, T , String)
See Also