interface DefaultSliderControlOptionsProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.QuickSight.CfnTemplate.DefaultSliderControlOptionsProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnTemplate_DefaultSliderControlOptionsProperty |
![]() | software.amazon.awscdk.services.quicksight.CfnTemplate.DefaultSliderControlOptionsProperty |
![]() | aws_cdk.aws_quicksight.CfnTemplate.DefaultSliderControlOptionsProperty |
![]() | aws-cdk-lib » aws_quicksight » CfnTemplate » DefaultSliderControlOptionsProperty |
The default options that correspond to the Slider
filter control type.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_quicksight as quicksight } from 'aws-cdk-lib';
const defaultSliderControlOptionsProperty: quicksight.CfnTemplate.DefaultSliderControlOptionsProperty = {
maximumValue: 123,
minimumValue: 123,
stepSize: 123,
// the properties below are optional
displayOptions: {
infoIconLabelOptions: {
infoIconText: 'infoIconText',
visibility: 'visibility',
},
titleOptions: {
customLabel: 'customLabel',
fontConfiguration: {
fontColor: 'fontColor',
fontDecoration: 'fontDecoration',
fontSize: {
relative: 'relative',
},
fontStyle: 'fontStyle',
fontWeight: {
name: 'name',
},
},
visibility: 'visibility',
},
},
type: 'type',
};
Properties
Name | Type | Description |
---|---|---|
maximum | number | The larger value that is displayed at the right of the slider. |
minimum | number | The smaller value that is displayed at the left of the slider. |
step | number | The number of increments that the slider bar is divided into. |
display | IResolvable | Slider | The display options of a control. |
type? | string | The type of the DefaultSliderControlOptions . Choose one of the following options:. |
maximumValue
Type:
number
The larger value that is displayed at the right of the slider.
minimumValue
Type:
number
The smaller value that is displayed at the left of the slider.
stepSize
Type:
number
The number of increments that the slider bar is divided into.
displayOptions?
Type:
IResolvable
|
Slider
(optional)
The display options of a control.
type?
Type:
string
(optional)
The type of the DefaultSliderControlOptions
. Choose one of the following options:.
SINGLE_POINT
: Filter against(equals) a single data point.RANGE
: Filter data that is in a specified range.