Class CfnAnalysis.FilterSliderControlProperty
A control to display a horizontal toggle bar.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnAnalysis.FilterSliderControlProperty : CfnAnalysis.IFilterSliderControlProperty
Syntax (vb)
Public Class CfnAnalysis.FilterSliderControlProperty Implements CfnAnalysis.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",
FontFamily = "fontFamily",
FontSize = new FontSizeProperty {
Absolute = "absolute",
Relative = "relative"
},
FontStyle = "fontStyle",
FontWeight = new FontWeightProperty {
Name = "name"
}
},
Visibility = "visibility"
}
},
Type = "type"
};
Synopsis
Constructors
FilterSliderControlProperty() | A control to display a horizontal toggle bar. |
Properties
DisplayOptions | The display options of a control. |
FilterControlId | The ID of the |
MaximumValue | The larger value that is displayed at the right of the slider. |
MinimumValue | The smaller value that is displayed at the left of the slider. |
SourceFilterId | The source filter ID of the |
StepSize | The number of increments that the slider bar is divided into. |
Title | The title of the |
Type | The type of the |
Constructors
FilterSliderControlProperty()
A control to display a horizontal toggle bar.
public FilterSliderControlProperty()
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",
FontFamily = "fontFamily",
FontSize = new FontSizeProperty {
Absolute = "absolute",
Relative = "relative"
},
FontStyle = "fontStyle",
FontWeight = new FontWeightProperty {
Name = "name"
}
},
Visibility = "visibility"
}
},
Type = "type"
};
Properties
DisplayOptions
The display options of a control.
public object? DisplayOptions { get; set; }
Property Value
Remarks
FilterControlId
The ID of the FilterSliderControl
.
public string FilterControlId { get; set; }
Property Value
Remarks
MaximumValue
The larger value that is displayed at the right of the slider.
public double MaximumValue { get; set; }
Property Value
Remarks
MinimumValue
The smaller value that is displayed at the left of the slider.
public double MinimumValue { get; set; }
Property Value
Remarks
SourceFilterId
The source filter ID of the FilterSliderControl
.
public string SourceFilterId { get; set; }
Property Value
Remarks
StepSize
The number of increments that the slider bar is divided into.
public double StepSize { get; set; }
Property Value
Remarks
Title
The title of the FilterSliderControl
.
public string Title { get; set; }
Property Value
Remarks
Type
The type of the FilterSliderControl
. Choose one of the following options:.
public string? Type { get; set; }