Interface CfnTemplate.KPISparklineOptionsProperty

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

@Stability(Stable) public static interface CfnTemplate.KPISparklineOptionsProperty extends software.amazon.jsii.JsiiSerializable
The options that determine the visibility, color, type, and tooltip visibility of the sparkline of a KPI visual.

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.*;
 KPISparklineOptionsProperty kPISparklineOptionsProperty = KPISparklineOptionsProperty.builder()
         .type("type")
         // the properties below are optional
         .color("color")
         .tooltipVisibility("tooltipVisibility")
         .visibility("visibility")
         .build();
 

See Also: