Interface CfnAnalysis.AxisTickLabelOptionsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAnalysis.AxisTickLabelOptionsProperty.Jsii$Proxy
- Enclosing class:
CfnAnalysis
@Stability(Stable)
public static interface CfnAnalysis.AxisTickLabelOptionsProperty
extends software.amazon.jsii.JsiiSerializable
The tick label options of an axis.
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.*; AxisTickLabelOptionsProperty axisTickLabelOptionsProperty = AxisTickLabelOptionsProperty.builder() .labelOptions(LabelOptionsProperty.builder() .customLabel("customLabel") .fontConfiguration(FontConfigurationProperty.builder() .fontColor("fontColor") .fontDecoration("fontDecoration") .fontSize(FontSizeProperty.builder() .relative("relative") .build()) .fontStyle("fontStyle") .fontWeight(FontWeightProperty.builder() .name("name") .build()) .build()) .visibility("visibility") .build()) .rotationAngle(123) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnAnalysis.AxisTickLabelOptionsProperty
static final class
An implementation forCfnAnalysis.AxisTickLabelOptionsProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getLabelOptions
Determines whether or not the axis ticks are visible.- See Also:
-
getRotationAngle
The rotation angle of the axis tick labels.- See Also:
-
builder
-