Class PivotViewConditionalSetting
Allow options for setting the visibility of hyperlink based on specific condition. The options available here are as follows:
Measure
: Allows you to specify the value field caption to get visibility of hyperlink option for specific measure.
Condition
: Allows you to choose the operator type such as equals, greater than, less than, etc.
Value1
: Allows you to set the start value.
Value2
: Allows you to set the end value. This option will be used by default when the operator Between and NotBetween is chosen to apply.
Inheritance
Namespace: Syncfusion.Blazor.PivotView
Assembly: Syncfusion.Blazor.dll
Syntax
public class PivotViewConditionalSetting : OwningComponentBase
Constructors
PivotViewConditionalSetting()
Declaration
public PivotViewConditionalSetting()
Properties
Conditions
Allows you to choose the operator type such as equals, greater than, less than, etc. The available operators are as follows:
LessThan
: Allows you to get the cells that have a value that is less than the start value.
GreaterThan
: Allows you to get the cells that have a value that is greater than the start value.
LessThanOrEqualTo
: Allows you to get the cells that have a value that is lesser than or equal to the start value.
GreaterThanOrEqualTo
: Allows you to get the cells that have a value that is greater than or equal to the start value.
Equals
: Allows you to get the cells that have a value that matches with the start value.
NotEquals
: Allows you to get the cells that have a value that does not match with the start value.
Between
: Allows you to get the cells that have a value that between the start and end value.
NotBetween: Allows you to get the cells that have a value that is not between the start and end value.
Declaration
public Condition Conditions { get; set; }
Property Value
Type |
---|
Condition |
Label
Allows you to specify the row or column header to get visibility of hyperlink option for specifc row or column header.
Declaration
public string Label { get; set; }
Property Value
Type |
---|
System.String |
Measure
Allows you to specify the value field caption to get visibility of hyperlink option for specific measure.
Declaration
public string Measure { get; set; }
Property Value
Type |
---|
System.String |
Value1
Allows you to set the start value to get visibility of hyperlink option based on the condition applied. For example, if the start value is 500 and the condition Equals is used, the hyperlink should be enabled to the cells that hold the value of 500 alone.
Declaration
public double Value1 { get; set; }
Property Value
Type |
---|
System.Double |
Value2
Allows you to set the end value to get visibility of hyperlink option based on the condition applied. For example, if the start value is 500, the end value is 1500 and the condition Between is used, the hyperlink should be enabled to the cells that holds the value between 500 to 1500.
This option will be used by default when the operator Between and NotBetween is chosen to apply.
Declaration
public double Value2 { get; set; }
Property Value
Type |
---|
System.Double |
Methods
Dispose(Boolean)
Dispose unmanaged resources in the component.
Declaration
protected override void Dispose(bool disposing)
Parameters
Type | Name | Description |
---|---|---|
System.Boolean | disposing |
OnInitializedAsync()
Method invoked when the component is ready to start, having received its initial parameters from its parent in the render tree. Override this method if you will perform an asynchronous operation and want the component to refresh when that operation is completed.
Declaration
protected override Task OnInitializedAsync()
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task | A System.Threading.Tasks.Task representing any asynchronous operation. |
OnParametersSetAsync()
Method invoked when the component has received parameters from its parent in the render tree, and the incoming values have been assigned to properties.
Declaration
protected override Task OnParametersSetAsync()
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task | A System.Threading.Tasks.Task representing any asynchronous operation. |