Interface CfnDashboard.ScrollBarOptionsProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDashboard.ScrollBarOptionsProperty.Jsii$Proxy
Enclosing class:
CfnDashboard

@Stability(Stable) public static interface CfnDashboard.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();
 

See Also: