Interface CfnTemplate.ScrollBarOptionsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTemplate.ScrollBarOptionsProperty.Jsii$Proxy
- Enclosing class:
CfnTemplate
@Stability(Stable)
public static interface CfnTemplate.ScrollBarOptionsProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.quicksight.*; ScrollBarOptionsProperty scrollBarOptionsProperty = ScrollBarOptionsProperty.builder() .visibility("visibility") .visibleRange(VisibleRangeOptionsProperty.builder() .percentRange(PercentVisibleRangeProperty.builder() .from(123) .to(123) .build()) .build()) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnTemplate.ScrollBarOptionsProperty
static final class
An implementation forCfnTemplate.ScrollBarOptionsProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getVisibility
The visibility of the data zoom scroll bar. -
getVisibleRange
The visibility range for the data zoom scroll bar. -
builder
-