Interface CfnDashboard.IFilterSliderControlProperty
A control to display a horizontal toggle bar.
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IFilterSliderControlProperty
Syntax (vb)
Public Interface IFilterSliderControlProperty
Remarks
This is used to change a value by sliding the toggle.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.QuickSight;
var filterSliderControlProperty = new FilterSliderControlProperty {
FilterControlId = "filterControlId",
MaximumValue = 123,
MinimumValue = 123,
SourceFilterId = "sourceFilterId",
StepSize = 123,
Title = "title",
// the properties below are optional
DisplayOptions = new SliderControlDisplayOptionsProperty {
InfoIconLabelOptions = new SheetControlInfoIconLabelOptionsProperty {
InfoIconText = "infoIconText",
Visibility = "visibility"
},
TitleOptions = new LabelOptionsProperty {
CustomLabel = "customLabel",
FontConfiguration = new FontConfigurationProperty {
FontColor = "fontColor",
FontDecoration = "fontDecoration",
FontSize = new FontSizeProperty {
Absolute = "absolute",
Relative = "relative"
},
FontStyle = "fontStyle",
FontWeight = new FontWeightProperty {
Name = "name"
}
},
Visibility = "visibility"
}
},
Type = "type"
};
Synopsis
Properties
Display |
The display options of a control. |
Filter |
The ID of the |
Maximum |
The larger value that is displayed at the right of the slider. |
Minimum |
The smaller value that is displayed at the left of the slider. |
Source |
The source filter ID of the |
Step |
The number of increments that the slider bar is divided into. |
Title | The title of the |
Type | The type of the |
Properties
DisplayOptions
The display options of a control.
virtual object DisplayOptions { get; }
Property Value
System.
Remarks
FilterControlId
The ID of the FilterSliderControl
.
string FilterControlId { get; }
Property Value
System.
Remarks
MaximumValue
The larger value that is displayed at the right of the slider.
double MaximumValue { get; }
Property Value
System.
Remarks
MinimumValue
The smaller value that is displayed at the left of the slider.
double MinimumValue { get; }
Property Value
System.
Remarks
SourceFilterId
The source filter ID of the FilterSliderControl
.
string SourceFilterId { get; }
Property Value
System.
Remarks
StepSize
The number of increments that the slider bar is divided into.
double StepSize { get; }
Property Value
System.
Remarks
Title
The title of the FilterSliderControl
.
string Title { get; }
Property Value
System.
Remarks
Type
The type of the FilterSliderControl
. Choose one of the following options:.
virtual string Type { get; }
Property Value
System.