Interface CfnTemplate.AxisTickLabelOptionsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTemplate.AxisTickLabelOptionsProperty.Jsii$Proxy
- Enclosing class:
CfnTemplate
@Stability(Stable)
public static interface CfnTemplate.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")
.fontFamily("fontFamily")
.fontSize(FontSizeProperty.builder()
.absolute("absolute")
.relative("relative")
.build())
.fontStyle("fontStyle")
.fontWeight(FontWeightProperty.builder()
.name("name")
.build())
.build())
.visibility("visibility")
.build())
.rotationAngle(123)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTemplate.AxisTickLabelOptionsPropertystatic final classAn implementation forCfnTemplate.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.Returns union: either
IResolvableorCfnTemplate.LabelOptionsProperty- See Also:
-
getRotationAngle
The rotation angle of the axis tick labels.- See Also:
-
builder
-