interface ScrollBarOptionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnDashboard.ScrollBarOptionsProperty |
Java | software.amazon.awscdk.services.quicksight.CfnDashboard.ScrollBarOptionsProperty |
Python | aws_cdk.aws_quicksight.CfnDashboard.ScrollBarOptionsProperty |
TypeScript | @aws-cdk/aws-quicksight » CfnDashboard » ScrollBarOptionsProperty |
The visual display options for a data zoom scroll bar.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as quicksight from '@aws-cdk/aws-quicksight';
const scrollBarOptionsProperty: quicksight.CfnDashboard.ScrollBarOptionsProperty = {
visibility: 'visibility',
visibleRange: {
percentRange: {
from: 123,
to: 123,
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| visibility? | string | The visibility of the data zoom scroll bar. |
| visible | IResolvable | Visible | The visibility range for the data zoom scroll bar. |
visibility?
Type:
string
(optional)
The visibility of the data zoom scroll bar.
visibleRange?
Type:
IResolvable | Visible
(optional)
The visibility range for the data zoom scroll bar.

.NET
Java
Python
TypeScript