Interface CfnDashboard.SingleAxisOptionsProperty

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

@Stability(Stable) public static interface CfnDashboard.SingleAxisOptionsProperty extends software.amazon.jsii.JsiiSerializable
The settings of a chart's single axis configuration.

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.*;
 SingleAxisOptionsProperty singleAxisOptionsProperty = SingleAxisOptionsProperty.builder()
         .yAxisOptions(YAxisOptionsProperty.builder()
                 .yAxis("yAxis")
                 .build())
         .build();
 

See Also: