Interface CfnAnalysisPropsMixin.IDefaultSliderControlOptionsProperty
The default options that correspond to the Slider filter control type.
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.QuickSight
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public interface CfnAnalysisPropsMixin.IDefaultSliderControlOptionsProperty
Syntax (vb)
Public Interface CfnAnalysisPropsMixin.IDefaultSliderControlOptionsProperty
Remarks
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.CfnPropertyMixins.AWS.QuickSight;
var defaultSliderControlOptionsProperty = new DefaultSliderControlOptionsProperty {
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"
}
},
MaximumValue = 123,
MinimumValue = 123,
StepSize = 123,
Type = "type"
};
Synopsis
Properties
| DisplayOptions | The display options of a control. |
| 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. |
| StepSize | The number of increments that the slider bar is divided into. |
| Type | The type of the |
Properties
DisplayOptions
The display options of a control.
object? DisplayOptions { get; }
Property Value
Remarks
MaximumValue
The larger value that is displayed at the right of the slider.
double? MaximumValue { get; }
Property Value
Remarks
MinimumValue
The smaller value that is displayed at the left of the slider.
double? MinimumValue { get; }
Property Value
Remarks
StepSize
The number of increments that the slider bar is divided into.
double? StepSize { get; }
Property Value
Remarks
Type
The type of the DefaultSliderControlOptions . Choose one of the following options:.
string? Type { get; }